/*
Theme Name: Nutrelixa
Theme URI: https://nutrelixa.com
Author: Nutrelixa
Description: A clean, professional one-product WooCommerce store for Essential Oil Applicator Massage Comb.
Version: 10.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nutrelixa
Tags: e-commerce, woocommerce, one-column, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
	--text: #1a1a1a;
	--text-light: #666;
	--bg: #ffffff;
	--bg-light: #f8f7f5;
	--accent: #b8976a;
	--accent-dark: #9e7e55;
	--border: #e8e5e0;
	--radius: 12px;
	--radius-sm: 8px;
	--shadow: 0 2px 12px rgba(0,0,0,0.06);
	--shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
	--font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Playfair Display', Georgia, serif;
	--maxw: 1200px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-y: auto !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Container */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.1rem; }

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.nxl-announce {
	background: var(--accent);
	color: #fff;
	text-align: center;
	padding: 8px 0;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

/* ==========================================================================
   Header
   ========================================================================== */
.nxl-header {
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.nxl-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 24px;
}
.nxl-logo a, .nxl-logo-text {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text);
}
.nxl-logo img { height: 40px; width: auto; }
.nxl-nav { display: flex; gap: 28px; justify-content: center; align-items: center; list-style: none; margin: 0; padding: 0; }
.nxl-nav-list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nxl-nav a {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-light);
	transition: color 0.2s;
}
.nxl-nav a:hover { color: var(--accent); }
.nxl-actions { display: flex; align-items: center; gap: 16px; }
.nxl-cart-link {
	position: relative;
	display: flex;
	align-items: center;
}
.nxl-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--accent);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nxl-burger { display: none; }

/* Mobile Nav */
.nxl-mobile-nav {
	position: fixed;
	top: 0;
	left: -100%;
	width: 280px;
	height: 100vh;
	background: var(--bg);
	z-index: 2000;
	transition: left 0.3s ease;
	box-shadow: var(--shadow-lg);
	overflow-y: auto;
}
.nxl-mobile-nav.is-open { left: 0; }
.nxl-mobile-nav-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--border);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
}
.nxl-mobile-nav-list { padding: 16px 24px; }
.nxl-mobile-nav-list li { margin-bottom: 12px; }
.nxl-mobile-nav-list a { font-size: 0.95rem; font-weight: 500; }
.nxl-scrim {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.4);
	z-index: 1999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.nxl-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.nxl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s;
	cursor: pointer;
	text-align: center;
	border: none;
}
.nxl-btn-primary {
	background: linear-gradient(135deg, #c4a55a 0%, #b8976a 100%);
	color: #fff;
}
.nxl-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.nxl-btn-ghost {
	background: transparent;
	border: 2px solid var(--border);
	color: var(--text);
}
.nxl-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.nxl-btn-lg { padding: 16px 36px; font-size: 1rem; }
.nxl-eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent);
	margin-bottom: 12px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.nxl-hero {
	padding: 60px 0 80px;
	background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}
.nxl-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.nxl-hero-title { margin-bottom: 16px; color: var(--text); }
.nxl-hero-sub {
	font-size: 1.05rem;
	color: var(--text-light);
	margin-bottom: 28px;
	max-width: 480px;
	line-height: 1.7;
}
.nxl-hero-cta { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.nxl-hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.nxl-hero-trust li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	color: var(--text-light);
}
.nxl-hero-trust svg { color: var(--accent); flex-shrink: 0; }
.nxl-hero-visual { display: flex; justify-content: center; align-items: center; }
.nxl-hero-product-img img { max-height: 400px; width: auto; border-radius: var(--radius); }
.nxl-hero-placeholder {
	width: 200px; height: 200px; background: var(--bg-light); border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */
.nxl-product-section { padding: 60px 0; }
.nxl-product-card {
	display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
	background: var(--bg-light); border-radius: var(--radius); overflow: hidden;
}
.nxl-product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.nxl-product-card-info { padding: 40px; }
.nxl-product-card-info h2 { margin-bottom: 12px; }
.nxl-product-card-price { font-size: 1.3rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.nxl-product-card-desc { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }

.nxl-benefits { padding: 80px 0; background: var(--bg); }
.nxl-section-head { text-align: center; margin-bottom: 48px; }
.nxl-section-head h2 { margin-bottom: 8px; }
.nxl-section-head p { color: var(--text-light); max-width: 500px; margin: 0 auto; }
.nxl-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.nxl-benefit-card {
	padding: 32px 24px; border: 1px solid var(--border); border-radius: var(--radius);
	text-align: center; transition: box-shadow 0.2s, transform 0.2s;
}
.nxl-benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.nxl-benefit-icon { margin-bottom: 16px; }
.nxl-benefit-card h3 { margin-bottom: 8px; font-size: 1rem; }
.nxl-benefit-card p { font-size: 0.88rem; color: var(--text-light); }

.nxl-how { padding: 80px 0; background: var(--bg-light); }
.nxl-how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.nxl-how-step { text-align: center; padding: 32px 24px; }
.nxl-how-num {
	display: inline-block; font-family: var(--font-display); font-size: 2rem;
	font-weight: 700; color: var(--accent); margin-bottom: 12px; opacity: 0.5;
}
.nxl-how-step h3 { margin-bottom: 8px; }
.nxl-how-step p { font-size: 0.9rem; color: var(--text-light); }

.nxl-faq { padding: 80px 0; }
.nxl-faq-list { max-width: 700px; margin: 0 auto; }
.nxl-faq-item {
	border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
}
.nxl-faq-item summary {
	padding: 16px 20px; font-weight: 600; cursor: pointer;
	display: flex; justify-content: space-between; align-items: center;
}
.nxl-faq-item summary::after {
	content: '+'; font-size: 1.2rem; color: var(--accent); transition: transform 0.2s;
}
.nxl-faq-item[open] summary::after { transform: rotate(45deg); }
.nxl-faq-item p { padding: 0 20px 16px; color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

.nxl-final-cta { padding: 80px 0; text-align: center; background: var(--bg-light); }
.nxl-final-cta h2 { margin-bottom: 12px; }
.nxl-final-cta p { color: var(--text-light); margin-bottom: 28px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.nxl-footer { background: #1a1a1a; color: #ccc; padding: 60px 0 24px; }
.nxl-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.nxl-footer-logo {
	font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
	color: #fff; display: block; margin-bottom: 12px;
}
.nxl-footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.nxl-footer-col h4 {
	color: #fff; font-size: 0.88rem; font-weight: 600; margin-bottom: 16px;
	text-transform: uppercase; letter-spacing: 0.05em;
}
.nxl-footer-links li { margin-bottom: 8px; }
.nxl-footer-links a { font-size: 0.85rem; color: #999; transition: color 0.2s; }
.nxl-footer-links a:hover { color: var(--accent); }
.nxl-footer-bottom {
	border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.82rem; color: #666;
}

/* Hide default WordPress sidebar widgets */
.widget-area,
.widget,
#secondary,
aside.widget-area,
aside { display: none !important; }

/* ==========================================================================
   WooCommerce — Product Page Layout
   ========================================================================== */
.woocommerce {
	padding: 0 0 40px;
	max-width: var(--maxw);
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Product grid — 2-column layout */
.nxl-product-grid {
	margin: 0;
	padding: 32px 0;
	width: 100%;
	background: transparent !important;
}
.nxl-product-grid-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

/* Product Gallery — ONLY images, ZERO background, ZERO extra space */
.nxl-product-gallery,
.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper,
figure.woocommerce-product-gallery__wrapper,
.nxl-gallery-track,
.nxl-gallery-slide,
.woocommerce-product-gallery__image,
.woocommerce div.product .woocommerce-product-gallery {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}
.woocommerce-product-gallery__image {
	border: none !important;
	box-shadow: none !important;
}
.woocommerce-product-gallery__wrapper {
	margin: 0;
	padding: 0;
}
.woocommerce-product-gallery__wrapper > *:empty,
.woocommerce-product-gallery__wrapper > div[style*="display: none"],
.woocommerce-product-gallery__wrapper > div[style*="height: 0"] {
	display: none !important;
}
/* Hide ANY child of the gallery that isn't our track or dots */
.woocommerce-product-gallery > *:not(.nxl-gallery-track):not(.nxl-gallery-dots):not(.woocommerce-product-gallery__wrapper):not(figure) {
	display: none !important;
	height: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* Hide ANY child of the gallery container that isn't the gallery */
.nxl-product-gallery > *:not(.woocommerce-product-gallery) {
	display: none !important;
	height: 0 !important;
	max-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce-product-gallery__image {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.woocommerce-product-gallery__image {
	background: transparent !important;
}
.woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	background: transparent !important;
}

/* Image Carousel — one image at a time, swipe to change */
.nxl-gallery-track {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;	
	overscroll-behavior-x: contain;
	touch-action: pan-x pan-y pinch-zoom;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: 0;
}
.nxl-gallery-track::-webkit-scrollbar { display: none; }
.nxl-gallery-slide {
	flex: 0 0 100%;
	min-width: 0;
	scroll-snap-align: start;
	position: relative;
}
.nxl-gallery-slide {
	background: transparent !important;
}
.nxl-gallery-slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	background: transparent !important;
	-webkit-user-drag: none;
	user-select: none;
}
.nxl-gallery-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: 12px 0 4px;
}
.nxl-gallery-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--border);
	transition: background 0.2s, transform 0.2s;
	border: none;
	cursor: pointer;
	padding: 0;
}
.nxl-gallery-dot.active {
	background: var(--accent);
	transform: scale(1.3);
}

/* Product Summary */
.nxl-product-summary {
	padding: 0;
}
.summary.entry-summary {
	padding: 0;
}
.woocommerce div.product .product_title {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 8px;
	color: var(--text);
}

/* ==========================================================================
   WooCommerce — HIDE DUPLICATE PRICE + FORM ELEMENTS
   ========================================================================== */

/* HIDE WooCommerce native price */
.woocommerce div.product .summary .price:not([class*="nxl-"]),
.woocommerce div.product .summary p.price:not([class*="nxl-"]),
.woocommerce div.product p.price {
	display: none !important;
}

/* SHOW our custom elements — ALWAYS visible */
.nxl-inline-atc,
.nxl-inline-atc-btn,
.nxl-inline-atc-price,
.nxl-fixed-buyitbar,
.nxl-fixed-buyitbar.is-visible,
.nxl-var-buttons-wrap,
.nxl-var-section,
.nxl-var-options,
.nxl-var-btn,
.nxl-var-label {
	display: flex !important;
}
.nxl-var-section {
	display: block !important;
}
.nxl-var-label {
	display: block !important;
}

/* SHOW only the variation price that appears after selecting an option */
.woocommerce div.product .variations_form .single_variation_wrap .woocommerce-variation {
	display: block !important;
}
.woocommerce div.product .woocommerce-variation-display-single .price {
	display: block !important;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--accent);
	margin: 12px 0;
}

/* HIDE native WooCommerce variation selects — custom buttons replace them */
.woocommerce div.product form.cart .variations {
	display: none !important;
}

/* HIDE native Add to Cart button and quantity — our JS creates custom ones */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .quantity,
.woocommerce div.product form.cart input.qty,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	display: none !important;
}

/* DO NOT hide form.cart itself — JS needs it for variation data and AJAX */
.woocommerce div.product form.cart {
	margin-bottom: 0 !important;
	padding: 0 !important;
	height: auto !important;
	overflow: visible !important;
}

/* Hide single_variation_wrap */
.woocommerce div.product .single_variation_wrap {
	display: none !important;
}
.woocommerce div.product .woocommerce-variation {
	display: none !important;
}

/* Hide WooCommerce notices on product pages */
.woocommerce .woocommerce-notices-wrapper {
	display: none !important;
}
.woocommerce-notices-wrapper:empty {
	display: none !important;
}

/* Hide stock information */
.woocommerce div.product .stock,
.woocommerce div.product .in-stock,
.woocommerce div.product .out-of-stock,
.woocommerce div.product p.stock {
	display: none !important;
}

/* Hide product category */
.woocommerce div.product .posted_in,
.woocommerce div.product .tagged_as,
.woocommerce div.product .product_meta {
	display: none !important;
}

/* ======================================================================
   Hide ALL video elements — gallery, product page, anywhere in product area
   This catches: self-hosted videos, YouTube embeds, Vimeo, WooCommerce product videos
   ======================================================================== */
.woocommerce-product-gallery video,
.woocommerce-product-gallery iframe,
.woocommerce-product-gallery .wp-video,
.woocommerce-product-gallery .wp-block-video,
.woocommerce-product-gallery [data-video-type],
.woocommerce-product-gallery [data-video-id],
.woocommerce-product-gallery a[href$=".mp4"],
.woocommerce-product-gallery a[href$=".webm"],
.woocommerce-product-gallery a[href$=".mov"],
.woocommerce-product-gallery a[href*="youtube"],
.woocommerce-product-gallery a[href*="vimeo"],
.woocommerce-product-gallery a[href*="video"],
.woocommerce div.product video,
.woocommerce div.product iframe:not(.wc-tab-iframe),
.woocommerce div.product .wp-video,
.woocommerce div.product .wp-block-video,
.woocommerce div.product [data-video-type],
.woocommerce div.product [data-video-id],
.woocommerce div.product a[href$=".mp4"],
.woocommerce div.product a[href$=".webm"],
.woocommerce div.product a[href$=".mov"],
.woocommerce div.product a[href*="youtube.com/embed"],
.woocommerce div.product a[href*="player.vimeo.com"],
.nxl-product-gallery video,
.nxl-product-gallery iframe,
.nxl-product-gallery .wp-video,
.nxl-product-gallery .wp-block-video,
.nxl-product-gallery [data-video-type],
.nxl-product-gallery a[href*=".mp4"],
.nxl-product-gallery a[href*=".webm"] {
	display: none !important;
	height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
	visibility: hidden !important;
}

/* Hide any element in gallery area that isn't our carousel track or dots */
.woocommerce-product-gallery > div:not(.nxl-gallery-track):not(.nxl-gallery-dots):not(.woocommerce-product-gallery__wrapper) {
	display: none !important;
}
.woocommerce-product-gallery > *:not(.nxl-gallery-track):not(.nxl-gallery-dots):not(.woocommerce-product-gallery__wrapper):not(figure) {
	display: none !important;
	height: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
}

/* Hide any extra content below gallery inside the product gallery container */
.nxl-product-gallery > *:not(.woocommerce-product-gallery) {
	display: none !important;
	height: 0 !important;
	max-height: 0 !important;
}

/* Hide WooCommerce product video tabs and video containers */
.woocommerce-product-gallery__images + div,
.woocommerce-product-gallery__images + figure,
.woocommerce div.product .woocommerce-product-gallery__trigger ~ *:not(.woocommerce-product-gallery__wrapper):not(.nxl-gallery-track):not(.nxl-gallery-dots) {
	display: none !important;
}

/* Hide gallery thumbnails — our carousel replaces them */
.woocommerce-product-gallery .flex-control-thumbs,
.woocommerce-product-gallery .woocommerce-product-gallery__thumbnails,
ol.flex-control-nav,
.flex-control-nav,
.woocommerce-product-gallery .flex-slides img {
	display: none !important;
}

/* Hide zoom icon */
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	display: none !important;
}

/* Hide WooCommerce's flex-viewport wrapper — our carousel replaces it */
.woocommerce-product-gallery .flex-viewport {
	height: auto !important;
	overflow: visible !important;
}

/* Prevent image drag interference with swipe */
.nxl-gallery-track img,
.woocommerce-product-gallery img {
	-webkit-user-drag: none;
	user-select: none;
	-webkit-touch-callout: none;
}

/* ==========================================================================
   WooCommerce — Variation Buttons (Side by Side)
   ========================================================================== */
.nxl-var-buttons-wrap {
	margin-bottom: 20px;
}
.nxl-var-section {
	margin-bottom: 16px;
}
.nxl-var-label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}
.nxl-var-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.nxl-var-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	text-align: center;
	min-width: 0;
	flex: 1 1 auto;
}
.nxl-var-btn:hover {
	border-color: var(--accent);
}
.nxl-var-btn.active {
	border-color: var(--accent);
	background: rgba(184, 151, 106, 0.08);
	color: var(--accent-dark);
}
.nxl-var-btn-swatch {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid var(--border);
	flex-shrink: 0;
}
.nxl-var-btn-price {
	font-weight: 700;
	color: var(--accent);
	font-size: 0.85rem;
}

/* Hide Additional Information tab */
.woocommerce div.product .woocommerce-tabs ul.tabs li.additional_information_tab,
.woocommerce div.product .woocommerce-tabs #tab-additional_information {
	display: none !important;
}

/* ==========================================================================
   WooCommerce — Product Tabs (Description, Reviews)
   ========================================================================== */
.woocommerce div.product .woocommerce-tabs {
	clear: both;
	margin: 40px auto 0;
	padding: 0 24px;
	max-width: var(--maxw);
	width: 100%;
	display: block !important;
	visibility: visible !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0 !important;
	margin: 0 0 24px !important;
	list-style: none !important;
	display: flex !important;
	border-bottom: 2px solid var(--border) !important;
	float: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: none !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	display: inline-block !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 14px 24px !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	color: var(--text-light) !important;
	border-bottom: 2px solid transparent !important;
	margin-bottom: -2px !important;
	display: inline-block !important;
	text-decoration: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--accent) !important;
	border-bottom-color: var(--accent) !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
	padding: 24px 0 !important;
	border: none !important;
	margin: 0 !important;
	box-shadow: none !important;
	background: none !important;
	display: block !important;
	visibility: visible !important;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-family: var(--font-display);
	margin-bottom: 16px;
}

/* Reviews styling */
.woocommerce #reviews {
	margin-top: 24px !important;
	display: block !important;
	visibility: visible !important;
}
.woocommerce #reviews #comments {
	margin-bottom: 24px;
}
.woocommerce #reviews .commentlist {
	padding: 0;
}
.woocommerce #reviews .commentlist li {
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
}
.woocommerce #reviews .commentlist .star-rating {
	color: var(--accent);
}
.woocommerce #reviews #review_form #respond {
	padding: 0;
	border: none;
	margin: 0;
	background: none;
}

/* ==========================================================================
   WooCommerce — Cart & Checkout
   ========================================================================== */
.woocommerce table.shop_table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.woocommerce .cart_totals h2 { font-family: var(--font-display); }
.woocommerce .cart .button { margin-top: 8px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
	font-size: 0.9rem; width: 100%;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.15);
}

/* Shop archive */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.woocommerce ul.products li.product { width: 100%; margin: 0; padding: 0; }
.woocommerce ul.products li.product img { border-radius: var(--radius); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); }
.woocommerce ul.products li.product .price { color: var(--accent); font-weight: 700; }
.woocommerce ul.products li.product .button { margin-top: 12px; }

/* ==========================================================================
   Inline Add to Cart Button — after variation options
   ========================================================================== */
.nxl-inline-atc {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding-bottom: 8px;
}
.nxl-inline-atc-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	background: linear-gradient(135deg, #c4a55a 0%, #b8976a 100%);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.15s;
	text-transform: uppercase;
}
.nxl-inline-atc-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}
.nxl-inline-atc-price {
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--accent);
	white-space: nowrap;
}

/* Hide buy-it-now wrapper */
.nxl-buyitnow-wrap { display: none !important; }

/* ==========================================================================
   Fixed Add to Cart Bar — ALL SCREEN SIZES
   ========================================================================== */
body.nxl-has-fixed-bar .woocommerce div.product,
body.nxl-has-fixed-bar .woocommerce-page div.product,
body.nxl-has-fixed-bar .nxl-product-grid {
	padding-bottom: 100px !important;
}
body.nxl-has-fixed-bar .nxl-product-grid-inner {
	padding-bottom: 0;
}
body.nxl-has-fixed-bar .woocommerce div.product .woocommerce-tabs {
	padding-bottom: 100px;
}
.nxl-fixed-buyitbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #fff;
	border-top: 1px solid var(--border);
	box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
	padding: 0;
	display: none;
}
.nxl-fixed-buyitbar.is-visible {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}
.nxl-fixed-buyitbar-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	max-width: var(--maxw);
	margin: 0 auto;
}
.nxl-fixed-buyitbar-info {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}
.nxl-fixed-buyitbar-img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}
.nxl-fixed-buyitbar-text { min-width: 0; }
.nxl-fixed-buyitbar-title {
	display: block;
	font-weight: 600;
	font-size: 0.82rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nxl-fixed-buyitbar-price {
	display: block;
	font-weight: 700;
	color: var(--accent);
	font-size: 0.88rem;
	white-space: nowrap;
}
.nxl-fixed-buyitbar-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #c4a55a 0%, #b8976a 100%);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.2s;
	flex-shrink: 0;
}
.nxl-fixed-buyitbar-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Product page must remain vertically scrollable while the gallery supports horizontal swipes. */
html, body {
	overflow-x: hidden !important;
	overflow-y: auto !important;
	height: auto !important;
	min-height: 100%;
}
.woocommerce-page,
.woocommerce-page #main,
.woocommerce-page .site-main,
.nxl-product-grid,
.nxl-product-grid-inner {
	max-width: 100%;
}
.nxl-product-gallery,
.woocommerce-product-gallery,
.nxl-gallery-track {
	touch-action: pan-x pan-y pinch-zoom;
}
.nxl-gallery-track {
	overscroll-behavior-y: auto;
}

/* ==========================================================================
   Responsive — Desktop
   ========================================================================== */
@media (min-width: 769px) {
	.nxl-fixed-buyitbar-inner { padding: 12px 24px; }
	.nxl-fixed-buyitbar-img { width: 48px; height: 48px; }
	.nxl-fixed-buyitbar-title { font-size: 0.9rem; }
	.nxl-fixed-buyitbar-price { font-size: 1rem; }
	.nxl-fixed-buyitbar-btn { padding: 14px 32px; font-size: 0.9rem; }
}

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */
@media (max-width: 1024px) {
	.nxl-benefits-grid { grid-template-columns: repeat(2, 1fr); }
	.nxl-footer-grid { grid-template-columns: 1fr 1fr; }
	.nxl-product-grid-inner { gap: 32px; }
}

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */
@media (max-width: 768px) {
	/* Nav */
	.nxl-burger { display: flex; }
	.nxl-nav { display: none; }

	/* Container */
	.container { padding: 0 16px; }

	/* Header */
	.nxl-header { padding: 12px 0; }

	/* Inline ATC button */
	.nxl-inline-atc {
		flex-direction: column;
		gap: 8px;
	}
	.nxl-inline-atc-btn {
		width: 100%;
		padding: 14px 24px;
		font-size: 0.95rem;
	}

	/* Hero */
	.nxl-hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
	.nxl-hero-sub { margin: 0 auto 28px; }
	.nxl-hero-cta { justify-content: center; }
	.nxl-hero-trust { justify-content: center; }
	.nxl-hero-product-img img { max-height: 280px; }

	/* Homepage */
	.nxl-product-card { grid-template-columns: 1fr; }
	.nxl-benefits-grid { grid-template-columns: 1fr; }
	.nxl-how-steps { grid-template-columns: 1fr; }
	.nxl-footer-grid { grid-template-columns: 1fr; gap: 24px; }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }

	/* Product Page — single column */
	.nxl-product-grid { padding: 0; }
	.nxl-product-grid-inner {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.nxl-product-gallery {
		border-radius: 0;
		max-height: none;
	}
	.woocommerce-product-gallery {
		max-height: none;
	}
	.woocommerce-product-gallery__image {
		max-height: none;
	}
	.woocommerce-product-gallery__image img {
		max-height: none;
	}
	.nxl-product-summary {
		padding: 16px;
	}
	.woocommerce div.product .product_title {
		font-size: 1.4rem;
	}

	/* Variation buttons */
	.nxl-var-options { gap: 6px; }
	.nxl-var-btn {
		padding: 8px 12px;
		font-size: 0.82rem;
	}

	/* Tabs — full width on mobile */
	.woocommerce div.product .woocommerce-tabs {
		padding: 0 16px;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs {
		gap: 0;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		padding: 12px 16px !important;
		font-size: 0.85rem !important;
	}
}

@media (max-width: 480px) {
	.nxl-hero { padding: 40px 0 60px; }
	.nxl-hero-title { font-size: clamp(1.6rem, 6vw, 2rem); }
	.woocommerce ul.products { grid-template-columns: 1fr; }
	.nxl-product-summary { padding: 12px; }
	.nxl-var-btn {
		padding: 8px 10px;
		font-size: 0.78rem;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		padding: 10px 12px !important;
		font-size: 0.8rem !important;
	}
}

/* ========================================================================
   Custom Thank You Page — direct bonus iframe
   ======================================================================== */
body.woocommerce-order-received .container > h1 {
	display: none !important;
}

.nxl-thankyou-page {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow: visible;
}

.nxl-bonus-page-wrap {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow: visible;
	background: #fff;
}

.nxl-bonus-page-iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100dvh;
	min-height: 700px;
	border: 0;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}

@supports not (height: 100dvh) {
	.nxl-bonus-page-iframe { height: 100vh; }
}

@media (max-width: 768px) {
	.nxl-bonus-page-iframe {
		width: 100vw;
		max-width: 100vw;
		height: 100dvh;
		min-height: 650px;
	}
}



/* Final: sticky Add to Cart must remain visible during the entire Product Page scroll. */
body.nxl-has-fixed-bar .nxl-fixed-buyitbar {
	display: block !important;
	visibility: visible !important;
	op: auto !important;
	transform: none !important;
}
@media (max-width: 768px) {
	body.nxl-has-fixed-bar .nxl-fixed-buyitbar {
	position: fixed !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	z-index: 2147483647 !important;
	} 
	.nxl-fixed-buyitbar-inner {
		width: 100%;
		box-sizing: border-box;
	}
	.nxl-fixed-buyitbar-btn {
		min-height: 46px;
	}
}
