/* =======================================================
   LIMITLESS ENERGY POWDER — MAIN STYLESHEET
   =======================================================
   Table of Contents:
   1.  CSS Reset & Base
   2.  Utility Classes
   3.  Buttons
   4.  Announcement Bar
   5.  Header / Navigation
   6.  Mobile Menu
   7.  Mini Cart Drawer
   8.  Hero Section
   9.  Trust Strip
   10. Product Section (WooCommerce)
   11. Ingredients Section
   12. Benefits Section
   13. How To Use Section
   14. Gallery / Showcase
   15. Testimonials
   16. FAQ
   17. CTA Section
   18. Footer
   19. Back to Top
   20. WooCommerce Styles
   21. Animations (AOS-like)
   22. Responsive — Tablet (≤1024px)
   23. Responsive — Mobile (≤768px)
   24. Responsive — Small (≤480px)
   ======================================================= */

/* -------------------------------------------------------
   1. CSS RESET & BASE
   ------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-black);
}

/* -------------------------------------------------------
   2. UTILITY CLASSES
   ------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-padding { padding: var(--space-24) 0; }
.bg-light        { background: var(--color-light-bg); }
.bg-dark         { background: var(--color-dark); }
.mt-4            { margin-top: var(--space-4); }
.text-center     { text-align: center; }

.section-label {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
    text-align: center;
}
.section-label.light { color: var(--color-primary-light); }

.section-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-4);
    line-height: 1.15;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-muted);
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-12);
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #c8c760 50%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-white {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5dc 50%, #dddc8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    justify-content: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-black);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(221,220,140,.45);
}
.btn-primary:hover {
    background: #c8c760;
    border-color: #c8c760;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(221,220,140,.55);
    color: var(--color-black);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-text);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
    background: var(--color-secondary);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-sm  { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
.btn-lg  { padding: var(--space-4) var(--space-8); font-size: var(--text-lg); }
.btn-xl  { padding: var(--space-5) var(--space-10); font-size: var(--text-xl); }
.btn-block { width: 100%; display: flex; }

/* -------------------------------------------------------
   4. ANNOUNCEMENT BAR
   ------------------------------------------------------- */
.announcement-bar {
    background: var(--color-primary);
    color: var(--color-black);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    position: relative;
    z-index: 1000;
}
.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    text-align: center;
}
.announcement-bar p { flex: 1; }
.ann-icon { font-size: 1rem; }
.ann-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    line-height: 1;
    color: rgba(0,0,0,.6);
    padding: 4px 8px;
    border-radius: 4px;
}
.ann-close:hover { color: var(--color-black); background: rgba(0,0,0,.12); }

/* -------------------------------------------------------
   5. HEADER / NAVIGATION
   ------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    height: 72px;
}

.site-logo img { height: 52px; width: auto; }
.site-logo:focus-visible { outline: 2px solid var(--color-primary); border-radius: 4px; }

/* Desktop Nav */
.site-nav .nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}
.nav-list li a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-2) 0;
    position: relative;
}
.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
    border-radius: 2px;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a { color: var(--color-primary); }
.nav-list li a:hover::after,
.nav-list li.current-menu-item a::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Cart Button */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    color: var(--color-text);
    transition: all var(--transition);
}
.cart-btn:hover { background: var(--color-primary-light); color: var(--color-primary); }

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--color-primary);
    color: var(--color-black);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.cart-count:empty,
.cart-count[data-count="0"] { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------
   6. MOBILE MENU
   ------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 90vw;
    height: 100%;
    background: white;
    z-index: 1101; /* above mini-cart (1100) and header (999) */
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

/* Dark overlay behind the slide-in panel (separate element, not inside menu) */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1100; /* between overlay (1100) and menu panel (1101) */
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    align-self: flex-end;
    font-size: 1.75rem;
    color: var(--color-muted);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: var(--space-4) var(--space-4) 0;
    transition: all var(--transition);
    flex-shrink: 0;
}
.mobile-menu-close:hover { background: var(--color-light-bg); color: var(--color-text); }

.mobile-menu-inner {
    padding: var(--space-4) var(--space-6) var(--space-8);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.mobile-nav-list li a {
    display: block;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
}
.mobile-nav-list li a:hover { color: var(--color-primary); }

/* -------------------------------------------------------
   7. MINI CART DRAWER
   ------------------------------------------------------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100vw;
    height: 100%;
    background: white;
    z-index: 1100;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.mini-cart-drawer.open { transform: translateX(0); }

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}
.mini-cart-header h3 { font-size: var(--text-xl); }
.mini-cart-close {
    font-size: 1.5rem;
    color: var(--color-muted);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.mini-cart-close:hover { background: var(--color-light-bg); color: var(--color-text); }

.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-6);
}

/* -------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: calc(100vh - 112px);
    display: flex;
    align-items: center;
    overflow: hidden;
    /* background-image set via inline style in PHP (gradient + parallax photo) */
    background-color: #1e1c05;
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat, no-repeat;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(221,220,140,.35) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(221,220,140,.2) 0%, transparent 70%);
    bottom: -50px; left: -50px;
}
.shape-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,245,220,.55) 0%, transparent 70%);
    top: 40%; left: 30%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
    position: relative;
    z-index: 1;
}

.hero-content { display: flex; flex-direction: column; gap: var(--space-6); }

.hero-badge .badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}
.badge-green {
    background: rgba(221,220,140,.18);
    color: var(--color-primary-light);
    border: 1px solid rgba(221,220,140,.35);
}
.badge-outline {
    background: transparent;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    font-size: var(--text-xs);
}
.badge-stock {
    background: #f0f0d0;
    color: #6a6a20;
    border: 1px solid #d5d580;
    font-size: var(--text-xs);
}
.badge.pulse {
    animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .75; }
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 2rem);
    /* font-weight: 900; */
    line-height: 1.1;
    color: #ffffff;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-5) var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: fit-content;
}
.stat-item { text-align: center; }
.stat-item strong {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.stat-item span {
    font-size: var(--text-xs);
    color: var(--color-muted);
    font-weight: 500;
    white-space: nowrap;
}
.stat-divider { width: 1px; height: 40px; background: var(--color-border); }

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.82);
    font-weight: 500;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-bg {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    z-index: 0;
}
.hero-image-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221,220,140,.2) 0%, transparent 70%);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}
.hero-product-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}
.badge-top-left { top: 10%; left: -5%; }
.badge-bottom-right { bottom: 10%; right: -5%; animation-delay: 2s; }
.floating-badge .fb-icon { font-size: 1.5rem; }
.floating-badge strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--color-black); }
.floating-badge small { font-size: var(--text-xs); color: var(--color-muted); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-muted);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    z-index: 1;
}
.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* -------------------------------------------------------
   9. TRUST STRIP
   ------------------------------------------------------- */
.trust-strip {
    background: var(--color-black);
    padding: var(--space-8) 0;
    overflow: hidden;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--space-6);
    flex-wrap: wrap;
}
.trust-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: white;
}
.tf-icon {
    font-size: 2rem;
    line-height: 1;
}
.trust-feature strong { display: block; font-size: var(--text-base); font-weight: 600; }
.trust-feature small  { display: block; font-size: var(--text-xs); color: rgba(255,255,255,.6); }

/* -------------------------------------------------------
   10. PRODUCT SECTION
   ------------------------------------------------------- */
.product-section {
    padding: var(--space-24) 0;
    background: white;
}
.product-section .section-title,
.product-section .section-subtitle {
    margin-bottom: var(--space-6);
}
.product-section .section-subtitle { margin-bottom: var(--space-12); }

.wc-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
    margin-top: var(--space-8);
}

/* Gallery */
.product-gallery { display: flex; flex-direction: column; gap: var(--space-4); }
.gallery-main-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-light-bg);
    aspect-ratio: 1;
}
.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-main-wrap:hover .gallery-main-img { transform: scale(1.03); }

.gallery-thumbs {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}
.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition);
    opacity: 0.7;
}
.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--color-primary);
    opacity: 1;
}

/* Product Details */
.product-details { display: flex; flex-direction: column; gap: var(--space-5); }
.product-badges-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.product-title {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 800;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.stars { color: #f59e0b; font-size: var(--text-xl); letter-spacing: 2px; }
.rating-count { font-size: var(--text-sm); color: var(--color-muted); }

.product-price .price,
.product-price {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary-dark);
}
.product-price del { color: var(--color-muted); font-size: var(--text-xl); }
.product-price ins { text-decoration: none; }

.product-short-desc {
    color: var(--color-muted);
    line-height: 1.7;
    border-left: 3px solid var(--color-primary);
    padding-left: var(--space-4);
}

.quick-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}
.qb-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 500;
    background: var(--color-primary-xlight);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    color: var(--color-text);
}

/* WooCommerce Add to Cart */
.wc-add-to-cart-wrap .quantity { margin-right: var(--space-3); }
.wc-add-to-cart-wrap input[type="number"] {
    width: 70px;
    height: 52px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    transition: border-color var(--transition);
}
.wc-add-to-cart-wrap input[type="number"]:focus {
    outline: none;
    border-color: var(--color-primary);
}
.wc-add-to-cart-wrap .single_add_to_cart_button,
.wc-add-to-cart-wrap button.button {
    background: var(--color-primary);
    color: var(--color-black);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-green);
    white-space: nowrap;
    letter-spacing: .01em;
}
.wc-add-to-cart-wrap .single_add_to_cart_button:hover,
.wc-add-to-cart-wrap button.button:hover {
    background: #c8c760;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(221,220,140,.5);
}
.wc-add-to-cart-wrap form.cart {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* Product Trust Row */
.product-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}
.ptr-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-muted);
    font-weight: 500;
}

/* -------------------------------------------------------
   11. BUNDLE OPTIONS — Section wrapper
   ------------------------------------------------------- */

/* Bundle section — fills the right column of wc-product-layout */
.bundle-section {
    width: 100%;
}
.bundle-section-title {
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--color-black);
    margin: 0 0 var(--space-3);
    letter-spacing: -.01em;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ── Option cards ───────────────────────────────────── */
.bundle-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.bundle-option {
    position: relative;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    /* left padding reserves space for the radio dot (16px dot + 8px gap each side) */
    padding: var(--space-3) var(--space-4) var(--space-3) calc(var(--space-4) + 26px);
    cursor: pointer;
    background: #fff;
    transition: border-color .18s, box-shadow .18s, background .18s;
}
.bundle-option:hover  { border-color: var(--color-primary); }
.bundle-option.active {
    border-color: var(--color-primary-dark);
    background: rgba(221,220,140,.07);
    box-shadow: 0 0 0 3px rgba(221,220,140,.22);
}

/* Radio dot — left side */
.bundle-option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: var(--space-3);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: #fff;
    transition: border-color .18s, background .18s, box-shadow .18s;
}
.bundle-option.active::before {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    box-shadow: inset 0 0 0 3px #fff;
}

/* Badge strip — sits above the inner row */
.bo-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 1px 8px;
    border-radius: 20px;
    margin-bottom: 4px;
}
.bo-popular .bo-badge { background: var(--color-primary); color: var(--color-black); }
.bo-best    .bo-badge { background: #f97316; color: #fff; }

/* Inner row: left info | right price */
.bo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}
.bo-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.bo-bottles { font-size: var(--text-base); font-weight: 800; color: var(--color-black); line-height: 1.2; }
.bo-supply  { font-size: var(--text-xs);   color: var(--color-muted); }
.bo-tag     { font-size: .72rem;           color: var(--color-text); opacity: .72; }

.bo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    flex-shrink: 0;
}
.bo-regular    { font-size: .75rem; color: var(--color-muted); text-decoration: line-through; }
.bo-price      { font-size: var(--text-lg); font-weight: 800; color: var(--color-primary-dark); line-height: 1.2; }
.bo-savings    { font-size: .68rem; font-weight: 700; color: #16a34a; background: #dcfce7; padding: 1px 6px; border-radius: 20px; }
.bo-per-bottle { font-size: .68rem; color: var(--color-muted); font-weight: 600; }
.bo-shipping        { font-size: .68rem; color: var(--color-muted); }
.bo-shipping.bo-free { font-weight: 700; color: #16a34a; }

/* ── Order Summary + CTA ────────────────────────────── */
.bundle-cta {
    margin-top: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.bcta-summary { display: flex; flex-direction: column; gap: var(--space-1); }

.bcta-price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.bcta-label      { font-size: var(--text-xs); font-weight: 700; color: var(--color-muted); text-transform: uppercase; letter-spacing: .05em; }
.bcta-total      { font-size: var(--text-2xl); font-weight: 800; color: var(--color-primary-dark); line-height: 1; }
.bcta-per-bottle { font-size: var(--text-xs); color: var(--color-muted); }

.bcta-meta-row { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; margin-top: 2px; }
.bcta-savings {
    font-size: var(--text-xs);
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 1px 8px;
    border-radius: 20px;
}
.bcta-savings.bcta-hidden { display: none; }
.bcta-ship      { font-size: var(--text-xs); color: var(--color-muted); }
.bcta-ship.bcta-ship-free { font-weight: 700; color: #16a34a; }

/* Order Now button */
.bcta-form { width: 100%; }
.bcta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
    padding: .75rem 1.5rem;
    font-size: var(--text-base);
    font-weight: 800;
    border-radius: 8px;
}
.bcta-trust {
    text-align: center;
    font-size: .72rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.4;
}

/* ── Product Info Below (the 2-column gallery+bundle grid) ── */
.product-info-below {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    margin-top: var(--space-10);
    padding-top: var(--space-12);
    border-top: 1px solid var(--color-border);
    align-items: start;
}
.pib-left  { display: flex; flex-direction: column; gap: var(--space-4); }
.pib-right { display: flex; flex-direction: column; gap: var(--space-6); }
/* On single product page the WC summary outputs block elements — tighten spacing */
.pib-left .woocommerce-product-details__short-description { margin: 0; }
.pib-left h1.product_title { font-size: var(--text-2xl); margin: 0; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
    .product-info-below {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}
@media (max-width: 520px) {
    .bo-inner    { flex-wrap: wrap; gap: var(--space-2); }
    .bo-right    { align-items: flex-start; }
    .bundle-cta  { padding: var(--space-3); }
    .bcta-btn    { padding: .65rem 1rem; }
}

/* -------------------------------------------------------
   12. INGREDIENTS SECTION
   ------------------------------------------------------- */
.ingredients-section {
    position: relative;
    /* background-image set via inline style in PHP (gradient overlay + parallax photo) */
    background-color: #1e1c05;
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
}
.ingredients-section .section-label {
    color: var(--color-primary-light);
}
.ingredients-section .section-title,
.ingredients-section .section-subtitle {
    color: white;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.ingredient-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-slow);
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}
.ingredient-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.ing-icon-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--color-primary-light);
}
.ing-icon-img { width: 100%; height: 100%; object-fit: cover; }

.ing-content { flex: 1; }
.ing-title { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-1); }
.ing-tagline {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ing-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}
.ing-benefits li {
    display: flex;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.5;
    align-items: flex-start;
}
.ing-benefits li svg { flex-shrink: 0; margin-top: 3px; }

.ing-nutrients {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}
.ing-nutrients span {
    background: var(--color-primary-xlight);
    color: var(--color-primary-dark);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(221,220,140,.35);
}

/* Nutrients Banner */
.nutrients-banner {
    background: linear-gradient(135deg, #8a8930 0%, #6a6a20 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-12);
    text-align: center;
    color: white;
}
.nb-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-5);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.nutrients-pills { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.nutrient-pill {
    background: rgba(255,255,255,.2);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
    transition: background var(--transition);
}
.nutrient-pill:hover { background: rgba(255,255,255,.35); }

/* -------------------------------------------------------
   12. BENEFITS SECTION
   ------------------------------------------------------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.benefit-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-slow);
}
.benefit-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
    background: var(--color-primary-xlight);
    transform: translateY(-4px);
}
.bc-icon { font-size: 2.5rem; margin-bottom: var(--space-3); line-height: 1; }
.bc-title {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--color-black);
}
.bc-desc { font-size: var(--text-sm); color: var(--color-muted); line-height: 1.6; }

/* -------------------------------------------------------
   13. HOW TO USE SECTION
   ------------------------------------------------------- */
.htu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.htu-steps { display: flex; flex-direction: column; gap: var(--space-6); }

.htu-step {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}
.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-black);
    font-size: var(--text-xl);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    box-shadow: 0 4px 12px rgba(221,220,140,.45);
}
.step-content h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
}
.step-content p { color: var(--color-muted); line-height: 1.7; }

.htu-image-wrap { position: relative; }
.htu-image-wrap img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.htu-callout {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    max-width: 90%;
    white-space: nowrap;
    min-width: 0;
}
.htu-callout-icon { font-size: 1.5rem; flex-shrink: 0; }
.htu-callout strong { display: block; font-size: var(--text-sm); font-weight: 700; margin-bottom: 2px; }
.htu-callout p { font-size: var(--text-xs); color: var(--color-muted); line-height: 1.5; white-space: normal; }

.disclaimer {
    margin-top: var(--space-16);
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    background: var(--color-primary-xlight);
    border: 1px solid rgba(221,220,140,.3);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.6;
}
.disclaimer svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }

/* -------------------------------------------------------
   14. GALLERY / SHOWCASE
   ------------------------------------------------------- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.showcase-item:hover img { transform: scale(1.08); }

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-4);
    opacity: 0;
    transition: opacity var(--transition);
}
.showcase-item:hover .showcase-overlay { opacity: 1; }
.showcase-overlay span { color: white; font-size: var(--text-sm); font-weight: 600; }

/* -------------------------------------------------------
   15. TESTIMONIALS
   ------------------------------------------------------- */
.testimonials-section .section-title,
.testimonials-section .section-subtitle { color: white; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.testimonial-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.testimonial-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-4px);
}

.tc-stars { color: #f59e0b; font-size: var(--text-xl); letter-spacing: 3px; }
.tc-text { color: rgba(255,255,255,.85); line-height: 1.7; font-size: var(--text-base); flex: 1; }
.tc-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-black);
    font-size: var(--text-base);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tc-author strong { display: block; color: white; font-size: var(--text-sm); }
.tc-author span   { color: rgba(255,255,255,.5); font-size: var(--text-xs); }
.tc-verified { font-size: var(--text-xs); color: var(--color-primary); font-weight: 600; }

/* Overall Rating */
.overall-rating {
    text-align: center;
    padding: var(--space-8) 0;
    border-top: 1px solid rgba(255,255,255,.1);
}
.or-score {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: var(--space-2);
}
.or-stars { color: #f59e0b; font-size: var(--text-3xl); letter-spacing: 4px; margin-bottom: var(--space-2); }
.or-label { color: rgba(255,255,255,.6); font-size: var(--text-base); }

/* -------------------------------------------------------
   16. FAQ SECTION
   ------------------------------------------------------- */
.faq-container { max-width: 800px; }

.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-primary); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: color var(--transition);
    background: white;
}
.faq-item.open .faq-question { color: var(--color-primary); }
.faq-question:hover { color: var(--color-primary); }

.faq-icon svg {
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--color-muted);
}
.faq-item.open .faq-icon svg { transform: rotate(180deg); color: var(--color-primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--color-muted);
    line-height: 1.7;
    font-size: var(--text-base);
}

/* -------------------------------------------------------
   17. CTA SECTION
   ------------------------------------------------------- */
.cta-section {
    position: relative;
    /* background-image set via inline style in PHP (gradient overlay + parallax lotus photo) */
    background-color: #6a6a20;
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat, no-repeat;
    padding: var(--space-24) 0;
    overflow: hidden;
    text-align: center;
}
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,.06) 0%, transparent 50%);
    pointer-events: none;
}
.cta-container { position: relative; z-index: 1; }

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.3);
    margin-bottom: var(--space-6);
    letter-spacing: .05em;
}
.cta-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}
.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,.85);
    margin-bottom: var(--space-8);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-price-display {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-6);
}
.cta-price-display .price { color: white; }

.cta-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-6);
    flex-wrap: wrap;
}
.cta-guarantees span {
    color: rgba(255,255,255,.85);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* -------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------- */
.footer-wave { line-height: 0; }
.footer-wave svg { display: block; width: 100%; }

.site-footer { background: var(--color-dark); }

.footer-main { padding: var(--space-16) 0 var(--space-12); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-12);
}

.footer-brand .footer-logo { margin-bottom: var(--space-4); }
.footer-brand .footer-logo img { height: 50px; filter: brightness(0) invert(1); }
.footer-tagline {
    color: rgba(255,255,255,.6);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}
.footer-badges .badge-outline {
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.7);
    font-size: var(--text-xs);
    padding: 3px 10px;
}

.footer-social { display: flex; gap: var(--space-3); }
.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}
.social-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    background: rgba(221,220,140,.18);
}

.footer-heading {
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-5);
}
.footer-links ul,
.footer-contact .contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.footer-links ul li a {
    color: rgba(255,255,255,.6);
    font-size: var(--text-sm);
    transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--color-primary); }

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: rgba(255,255,255,.6);
    font-size: var(--text-sm);
    line-height: 1.5;
}
.contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.contact-list li a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.contact-list li a:hover { color: var(--color-primary); }

/* Newsletter */
.footer-newsletter p:first-of-type {
    color: rgba(255,255,255,.6);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-2);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
}
.newsletter-form input {
    flex: 1;
    padding: var(--space-3) var(--space-5);
    background: rgba(255,255,255,.08);
    border: none;
    color: white;
    font-size: var(--text-sm);
    outline: none;
    min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { background: rgba(255,255,255,.12); }
.newsletter-form .btn {
    border-radius: 0;
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    flex-shrink: 0;
}
.newsletter-note { font-size: var(--text-xs); color: rgba(255,255,255,.35); }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: var(--space-6) 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: var(--text-sm); }
.footer-bottom strong { color: rgba(255,255,255,.65); }

.footer-legal-list {
    display: flex;
    gap: var(--space-6);
}
.footer-legal-list li a {
    color: rgba(255,255,255,.45);
    font-size: var(--text-sm);
    transition: color var(--transition);
}
.footer-legal-list li a:hover { color: var(--color-primary); }

/* -------------------------------------------------------
   19. BACK TO TOP
   ------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.back-to-top:hover {
    background: var(--color-secondary);
    color: var(--color-text);
    transform: translateY(-4px);
}

/* -------------------------------------------------------
   20. WOOCOMMERCE STYLES
   ------------------------------------------------------- */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
}
.woocommerce-message { background: #f0f0d0; color: #6a6a20; border: 1px solid #d5d580; }
.woocommerce-error   { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }
.woocommerce-info    { background: #dbeafe; color: #2563eb; border: 1px solid #93c5fd; }

/* WooCommerce Cart Table */
.woocommerce-cart-form table { width: 100%; border-collapse: collapse; }
.woocommerce-cart-form th,
.woocommerce-cart-form td {
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}
.woocommerce-cart-form th { font-weight: 600; font-size: var(--text-sm); color: var(--color-muted); }

/* Checkout */
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce-checkout .woocommerce-input-wrapper textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition);
}
.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.woocommerce #payment #place_order,
.woocommerce-checkout .woocommerce-form-login .woocommerce-button {
    background: var(--color-primary) !important;
    color: var(--color-black) !important;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-green);
    transition: all var(--transition);
    cursor: pointer;
    font-size: var(--text-base);
}
.woocommerce #payment #place_order:hover { background: #c8c760 !important; }

/* -------------------------------------------------------
   20b. PARALLAX CTA STRIP (mid-page)
   ------------------------------------------------------- */
.parallax-cta-strip {
    position: relative;
    padding: var(--space-20) 0;
    /* background-image set via inline style in PHP (gradient overlay + parallax photo) */
    background-color: #2a2808;
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
    text-align: center;
}

.parallax-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.pcta-eyebrow {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.pcta-heading {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: var(--space-4);
}

.pcta-sub {
    font-size: var(--text-lg);
    color: rgba(255,255,255,.82);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -------------------------------------------------------
   21. ANIMATIONS (AOS-LIKE)
   ------------------------------------------------------- */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.85); }

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* -------------------------------------------------------
   22. RESPONSIVE — TABLET (≤1024px)
   ------------------------------------------------------- */
@media (max-width: 1024px) {
    .site-nav { display: none; }
    .header-cta { display: none; }
    .hamburger { display: flex; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-10);
    }
    .hero-content { align-items: center; }
    .hero-subtitle { max-width: 100%; }
    .hero-stats { align-self: center; }
    .hero-trust { justify-content: center; }
    .hero-cta-group { justify-content: center; }
    .floating-badge.badge-top-left  { top: 5%; left: 0; }
    .floating-badge.badge-bottom-right { bottom: 5%; right: 0; }

    .wc-product-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .ingredients-grid { grid-template-columns: 1fr; }

    .benefits-grid { grid-template-columns: repeat(3, 1fr); }

    .htu-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    .htu-callout { position: static; transform: none; margin-top: var(--space-4); }

    .testimonials-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
    .footer-brand { grid-column: 1 / -1; }
}

/* -------------------------------------------------------
   23. RESPONSIVE — MOBILE (≤768px)
   ------------------------------------------------------- */
@media (max-width: 768px) {
    :root { --space-24: 4rem; }

    .section-padding { padding: var(--space-16) 0; }

    .announcement-bar p { font-size: var(--text-xs); }

    /* Disable parallax on mobile (iOS incompatibility) */
    .hero-section,
    .cta-section,
    .parallax-cta-strip,
    .ingredients-section {
        background-attachment: scroll, scroll;
    }

    .hero-section { min-height: auto; padding: var(--space-12) 0 var(--space-16); }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-4);
        width: 100%;
    }
    .stat-divider { display: none; }

    .trust-strip-inner { justify-content: center; gap: var(--space-5); }
    .trust-feature { flex: 0 0 calc(50% - var(--space-3)); }

    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }

    .showcase-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .footer-brand { grid-column: auto; }

    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal-list { flex-wrap: wrap; justify-content: center; gap: var(--space-4); }

    .back-to-top { bottom: var(--space-5); right: var(--space-5); width: 42px; height: 42px; }

    .cta-guarantees { flex-direction: column; gap: var(--space-3); }

    .htu-image-wrap { margin-bottom: var(--space-8); }

    .quick-benefits { grid-template-columns: repeat(2, 1fr); }

    /* Product gallery — cap height so it doesn't dominate the screen */
    .gallery-main-wrap { aspect-ratio: auto; max-height: 320px; }
    .gallery-main-img  { height: 320px; object-fit: contain; }
    .gallery-thumb     { width: 64px; height: 64px; }
}

/* -------------------------------------------------------
   24. RESPONSIVE — SMALL (≤480px)
   ------------------------------------------------------- */
@media (max-width: 480px) {
    .container { padding: 0 var(--space-4); }

    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .hero-cta-group .btn { justify-content: center; }

    .hero-stats { flex-direction: column; gap: var(--space-3); }
    .stat-divider { display: none; }

    .benefits-grid { grid-template-columns: 1fr; }

    .showcase-grid { grid-template-columns: 1fr; }

    .trust-strip-inner { flex-direction: column; align-items: flex-start; }
    .trust-feature { flex: 1; }

    .ingredient-card { flex-direction: column; }
    .ing-icon-wrap { width: 100%; height: 160px; }

    .ann-close { display: none; }

    .nutrients-banner { padding: var(--space-6); }

    /* Product gallery on very small screens */
    .gallery-main-wrap { max-height: 240px; }
    .gallery-main-img  { height: 240px; }
    .gallery-thumb     { width: 52px; height: 52px; }
    .gallery-thumbs    { gap: var(--space-2); }
}

/* -------------------------------------------------------
   PRINT STYLES
   ------------------------------------------------------- */
@media print {
    .announcement-bar,
    .site-header,
    .hero-bg-shapes,
    .scroll-indicator,
    .back-to-top,
    .hamburger,
    .mobile-overlay,
    .mobile-menu,
    .cart-overlay,
    .mini-cart-drawer { display: none !important; }
    body { font-size: 12pt; }
    a { text-decoration: underline; }
}
