/* ═══════════════════════════════════════════════════════════════
   LifeSci LLC — Production CSS
   Warm cream + dark teal + vibrant green
   v2.0.0
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   1. CSS VARIABLES
   ══════════════════════════════════════════════════════════════ */
:root {
    /* Brand Colors */
    --bg-primary: #FFF6EF;
    --bg-white: #FFFFFF;
    --bg-cream: #FFF0E3;
    --bg-section: #F7EDE4;
    --teal: #014B3F;
    --teal-light: #026B59;
    --teal-dark: #013A31;
    --green: #02CA81;
    --green-light: #01E08F;
    --green-dim: rgba(2, 202, 129, 0.12);
    --green-gradient: linear-gradient(135deg, #02CA81 0%, #01A86B 100%);
    --orange: #FF5E1A;
    --orange-dim: rgba(255, 94, 26, 0.1);
    --gold: #C8963E;
    --pink: #D64B8A;
    --pink-light: rgba(214, 75, 138, 0.1);
    --pink-gradient: linear-gradient(135deg, #D64B8A, #E8739E);
    --gold-dim: rgba(200, 150, 62, 0.1);

    /* Text */
    --text-dark: #1A1A1A;
    --text-body: #4A4A4A;
    --text-muted: #8A8A8A;
    --text-light: #FFFFFF;

    /* Borders & Shadows */
    --border: #E8DDD4;
    --border-hover: #D4C4B5;
    --shadow-sm: 0 1px 3px rgba(1, 75, 63, 0.06);
    --shadow-md: 0 4px 16px rgba(1, 75, 63, 0.08);
    --shadow-lg: 0 8px 32px rgba(1, 75, 63, 0.10);
    --shadow-xl: 0 16px 48px rgba(1, 75, 63, 0.14);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05);

    /* Layout */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-pill: 100px;
    --container: 1200px;
    --container-narrow: 800px;
    --header-height: 72px;
    --announcement-height: 40px;

    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    --font-body: 'DM Sans', 'Inter', sans-serif;

    /* Misc */
    --sale-red: #D94F4F;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ══════════════════════════════════════════════════════════════
   2. RESET & GLOBAL STYLES
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--teal);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

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

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

::selection {
    background: var(--green);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   3. ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════════ */
.announcement-bar {
    background: var(--teal);
    color: var(--text-light);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1001;
}

.announcement-bar a {
    color: var(--green);
    text-decoration: underline;
    font-weight: 700;
}

.announcement-bar a:hover {
    color: var(--green-light);
}

.announcement-bar svg {
    vertical-align: middle;
    margin-right: 6px;
}

/* ══════════════════════════════════════════════════════════════
   4. HEADER & NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo & Brand */
.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.site-logo-full {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu li a {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.01em;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--teal);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    width: 60%;
}

/* Cart Icon */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--teal);
    transition: all var(--transition);
    margin-left: 12px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-cart:hover {
    background: var(--bg-cream);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    background: var(--green);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════════════════
   5. BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.btn-primary {
    background: var(--green-gradient);
    color: var(--text-light);
    border-color: transparent;
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(2, 202, 129, 0.35);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--bg-cream);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.78rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.92rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   6. SECTION SHARED STYLES
   ══════════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--green);
    background: var(--green-dim);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: 44px;
}

/* ══════════════════════════════════════════════════════════════
   7. HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    padding: 100px 0 88px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 75, 63, 0.92) 0%, rgba(2, 107, 89, 0.85) 50%, rgba(1, 75, 63, 0.75) 100%);
}

.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(2, 202, 129, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--green);
    background: rgba(2, 202, 129, 0.15);
    border: 1px solid rgba(2, 202, 129, 0.25);
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--green-gradient);
    border-color: transparent;
    color: #fff;
    font-weight: 800;
}

.hero .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(2, 202, 129, 0.35);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   8. PRODUCT CARDS
   ══════════════════════════════════════════════════════════════ */
.home-products {
    padding: 92px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--sale-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.product-card-info {
    padding: 16px 20px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 14px;
}

.product-card-price del {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

.product-card-price ins {
    text-decoration: none;
    color: var(--sale-red);
}

/* Card Buttons Row */
.product-card-buttons {
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
}

.product-card-buttons .btn-view-more {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--teal);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.product-card-buttons .btn-view-more:hover {
    border-color: var(--teal);
    background: var(--bg-cream);
}

.product-card-buttons .btn-add-to-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--green-gradient);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.product-card-buttons .btn-add-to-cart:hover {
    box-shadow: 0 4px 16px rgba(2, 202, 129, 0.3);
    filter: brightness(1.06);
}

.product-card-buttons .btn-add-to-cart.added {
    background: var(--teal);
}

.product-card-buttons .btn-add-to-cart.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   9. FEATURES / WHY CHOOSE US
   ══════════════════════════════════════════════════════════════ */
.home-features {
    padding: 92px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--green);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--green-dim);
    color: var(--teal);
    margin-bottom: 22px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   10. MISSION STATEMENT
   ══════════════════════════════════════════════════════════════ */
.home-mission {
    padding: 80px 0;
    background: var(--teal);
    position: relative;
    overflow: hidden;
}

.home-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(2, 202, 129, 0.08) 0%, transparent 70%);
}

.mission-content {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.mission-content .section-tag {
    color: var(--green);
    background: rgba(2, 202, 129, 0.15);
}

.mission-content .section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.mission-content .section-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   11. DISCLAIMER
   ══════════════════════════════════════════════════════════════ */
.home-disclaimer {
    padding: 0 0 72px;
    background: var(--bg-primary);
}

.disclaimer-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.disclaimer-icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.disclaimer-card p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.disclaimer-card strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   12. SHOP PAGE
   ══════════════════════════════════════════════════════════════ */
.shop-wrap {
    padding: 48px 0 80px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
}

.shop-sidebar {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.shop-sidebar .widget {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.shop-sidebar .widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.shop-sidebar .widget-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.shop-sidebar ul {
    list-style: none;
}

.shop-sidebar ul li a {
    display: block;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-body);
    transition: color var(--transition);
}

.shop-sidebar ul li a:hover {
    color: var(--green);
}

.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.shop-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
}

.woocommerce-result-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.woocommerce-ordering select {
    width: auto;
}

/* ══════════════════════════════════════════════════════════════
   13. SINGLE PRODUCT
   ══════════════════════════════════════════════════════════════ */
.single-product-wrap {
    padding: 20px 0 80px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-image {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 16px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.product-detail-image img {
    width: 100%;
    object-fit: contain;
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 16px;
    margin-top: 8px;
}

.product-detail-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.product-detail-price del {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
}

.product-detail-price ins {
    text-decoration: none;
    color: var(--sale-red);
}

.product-detail-description {
    margin-bottom: 24px;
    line-height: 1.8;
}

.product-sku {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-cream);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 24px;
}

/* Add to Cart on single product */
.product-detail-info .cart {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.product-detail-info .quantity .qty {
    width: 70px;
    padding: 12px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 1rem;
    text-align: center;
}

.product-detail-info .single_add_to_cart_button {
    flex: 1;
    background: var(--green-gradient);
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.product-detail-info .single_add_to_cart_button:hover {
    box-shadow: 0 4px 20px rgba(2, 202, 129, 0.35);
    filter: brightness(1.05);
}

/* Product Tabs */
.product-tabs {
    margin-top: 48px;
}

.product-tabs .tabs-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
    list-style: none;
}

.product-tabs .tabs-nav li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
}

.product-tabs .tabs-nav li.active a,
.product-tabs .tabs-nav li a:hover {
    color: var(--teal);
    border-bottom-color: var(--green);
}

.woocommerce-tabs .tabs {
    list-style: none;
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.woocommerce-tabs .tabs li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
}

.woocommerce-tabs .tabs li.active a {
    color: var(--teal);
    border-bottom-color: var(--green);
}

/* ══════════════════════════════════════════════════════════════
   14. SIDE CART PANEL
   ══════════════════════════════════════════════════════════════ */
.side-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.side-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.1);
}

.side-cart.active {
    transform: translateX(0);
}

.side-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.side-cart-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--teal);
}

.side-cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-cream);
    color: var(--text-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.side-cart-close:hover {
    background: var(--border);
    color: var(--teal);
}

/* Free Shipping Progress Bar */
.shipping-progress {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.shipping-progress-text {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-bottom: 8px;
    font-weight: 600;
}

.shipping-progress-text span {
    color: var(--green);
    font-weight: 700;
}

.shipping-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-section);
    border-radius: 4px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: var(--green-gradient);
    border-radius: 4px;
    transition: width 0.5s ease;
    min-width: 0;
    max-width: 100%;
}

.shipping-progress.achieved .shipping-progress-text {
    color: var(--green);
}

.shipping-progress.achieved .shipping-progress-fill {
    width: 100% !important;
}

/* Cart Items */
.side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.side-cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.side-cart-item:last-child {
    border-bottom: none;
}

.side-cart-item-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-cream);
}

.side-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.side-cart-item-details {
    flex: 1;
    min-width: 0;
}

.side-cart-item-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-cart-item-price {
    font-size: 0.82rem;
    color: var(--text-body);
    font-weight: 600;
    margin-bottom: 8px;
}

.side-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-white);
    color: var(--text-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition);
}

.side-cart-item-qty button:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.side-cart-item-qty span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 20px;
    text-align: center;
}

.side-cart-item-remove {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: color var(--transition);
    margin-top: 4px;
}

.side-cart-item-remove:hover {
    color: var(--sale-red);
}

/* Cart Footer */
.side-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--bg-primary);
}

.side-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.side-cart-total-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
}

.side-cart-total-amount {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--teal);
}

.side-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-cart-buttons .btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: var(--green-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.side-cart-buttons .btn-checkout:hover {
    box-shadow: 0 4px 20px rgba(2, 202, 129, 0.3);
    filter: brightness(1.05);
}

.side-cart-buttons .btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.side-cart-buttons .btn-continue:hover {
    border-color: var(--teal);
    background: var(--bg-cream);
}

/* Empty Cart State */
.side-cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.side-cart-empty svg {
    color: var(--border);
    margin-bottom: 20px;
}

.side-cart-empty p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.side-cart-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--green-gradient);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.side-cart-empty a:hover {
    box-shadow: 0 4px 16px rgba(2, 202, 129, 0.3);
}

/* ══════════════════════════════════════════════════════════════
   15. FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--teal);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.footer-brand-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.footer-about {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu li,
.footer-menu li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-menu li a:hover {
    color: var(--green);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--green);
}

/* Footer Disclaimer */
.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-credits a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-credits a:hover {
    color: var(--green-light);
}

/* ══════════════════════════════════════════════════════════════
   16. CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-wrap {
    padding: 48px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

.contact-info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--teal);
    margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 0.85rem;
    color: var(--text-body);
}

/* Contact Form 7 */
.wpcf7-form p {
    margin-bottom: 16px;
}

.wpcf7-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    display: block;
    margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════════════
   17. GENERIC PAGES
   ══════════════════════════════════════════════════════════════ */
.page-wrap {
    padding: 60px 0 80px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 32px;
}

.page-content {
    font-size: 0.95rem;
    line-height: 1.8;
}

.page-content h2,
.page-content h3 {
    font-family: var(--font-heading);
    color: var(--teal);
    margin: 32px 0 16px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content a {
    color: var(--green);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--teal);
}

/* ══════════════════════════════════════════════════════════════
   18. WOOCOMMERCE OVERRIDES
   ══════════════════════════════════════════════════════════════ */

/* Tables */
.woocommerce table.shop_table {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-collapse: collapse;
    width: 100%;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
    text-align: left;
}

.woocommerce table.shop_table th {
    color: var(--teal);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Forms */
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 600;
}

.woocommerce form .input-text,
.woocommerce form select,
.woocommerce form textarea,
.woocommerce-page form .input-text,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea {
    background: var(--bg-white) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text-dark) !important;
    padding: 12px 16px !important;
    font-size: 0.9rem;
    font-family: var(--font-body);
    width: 100%;
    transition: border-color var(--transition);
}

.woocommerce form .input-text:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: var(--green) !important;
    outline: none;
    box-shadow: 0 0 0 3px var(--green-dim);
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
    background: var(--teal) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border-radius: var(--radius-sm) !important;
    cursor: pointer;
    transition: all var(--transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: var(--teal-light) !important;
    box-shadow: var(--shadow-md);
}

/* Product card actions on shop page */
.product-card-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.product-card-actions .btn-view-more,
.product-card-actions .btn-add-to-cart,
.product-card-actions .btn-out-of-stock {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    border: none;
    line-height: 1.2;
}

.product-card-actions .btn-view-more {
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal);
}

.product-card-actions .btn-view-more:hover {
    background: var(--teal);
    color: #fff;
}

.product-card-actions .btn-add-to-cart {
    background: var(--gradient-brand);
    color: #fff;
}

.product-card-actions .btn-add-to-cart:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 202, 129, 0.25);
}

.product-card-actions .btn-add-to-cart.added {
    background: var(--green) !important;
}

.product-card-actions .btn-out-of-stock {
    background: var(--bg-light);
    color: var(--text-muted);
    cursor: not-allowed;
}

.product-card-actions .button,
.product-card-actions a.button,
.product-card-actions .add_to_cart_button {
    display: block;
    width: 100%;
    background: var(--green-gradient) !important;
    color: #fff !important;
    border: none;
    padding: 12px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-align: center;
    border-radius: var(--radius-sm) !important;
    cursor: pointer;
    transition: all var(--transition);
}

.product-card-actions .button:hover,
.product-card-actions a.button:hover {
    box-shadow: 0 4px 16px rgba(2, 202, 129, 0.3);
    filter: brightness(1.05);
}

/* My Account */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--bg-cream);
    color: var(--teal);
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    background: var(--bg-white) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-body) !important;
    border-radius: var(--radius);
    padding: 16px 20px;
    border-left: 4px solid var(--green) !important;
}

.woocommerce-error {
    background: rgba(217, 79, 79, 0.06) !important;
    border: 1px solid rgba(217, 79, 79, 0.2) !important;
    color: var(--sale-red) !important;
    border-radius: var(--radius);
    border-left: 4px solid var(--sale-red) !important;
}

/* Price */
.woocommerce .price del {
    opacity: 0.5;
}

.woocommerce .star-rating {
    color: var(--gold);
}

mark, ins {
    background: transparent;
    text-decoration: none;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.woocommerce-breadcrumb a {
    color: var(--green);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

/* ══════════════════════════════════════════════════════════════
   19. GALLERY / LIGHTBOX
   ══════════════════════════════════════════════════════════════ */
.gallery,
.wp-block-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.gallery-item,
.wp-block-image {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 40px;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

/* ══════════════════════════════════════════════════════════════
   20. ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Staggered animation for grids */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════════
   21. RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-detail-image {
        position: static;
    }

    .shop-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

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

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    /* Mobile Nav */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px 24px;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 2px;
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 16px;
        text-align: center;
        font-size: 0.9rem;
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-cart {
        margin: 12px auto 0;
    }

    /* Hero */
    .hero {
        padding: 64px 0 56px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 28px;
    }

    .hero-stat-num {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Grids */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Sections */
    .section-title {
        font-size: 1.7rem;
    }

    .home-products,
    .home-features {
        padding: 56px 0;
    }

    .home-mission {
        padding: 56px 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Shop */
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-header {
        flex-direction: column;
        text-align: center;
    }

    /* Disclaimer */
    .disclaimer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Side Cart */
    .side-cart {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .product-card-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .brand-text {
        display: none;
    }

    .announcement-bar {
        font-size: 0.72rem;
        padding: 8px 16px;
    }
}

/* ══════════════════════════════════════════════════════════════
   22. UTILITY & MISC
   ══════════════════════════════════════════════════════════════ */

/* Admin Bar fix */
body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Body scroll lock when side cart is open */
body.side-cart-open {
    overflow: hidden;
}

/* Loading spinner for AJAX */
.lifesci-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lifesci-spin 0.6s linear infinite;
}

@keyframes lifesci-spin {
    to { transform: rotate(360deg); }
}


/* ══════════════════════════════════════════════════════════════
   PAGE HERO (shared across policy/info pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--teal) 0%, #026B59 50%, #018060 100%);
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(2,202,129,0.12) 0%, transparent 70%);
}
.page-hero .section-tag {
    position: relative;
    z-index: 1;
}
.page-hero-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.page-hero-desc {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto;
}
.page-hero-sm { padding: 56px 0 44px; }
.page-hero-sm .page-hero-title { font-size: 2.2rem; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-hero { 
    background: linear-gradient(135deg, var(--teal) 0%, #026B59 50%, #018060 100%);
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(2,202,129,0.12) 0%, transparent 70%);
}
.contact-hero .section-tag { position: relative; z-index: 1; }
.contact-hero-title {
    position: relative; z-index: 1;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.contact-hero-desc {
    position: relative; z-index: 1;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto;
}

.contact-section { padding: 64px 0 80px; }

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}
.contact-form-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 8px;
}
.contact-form-subheading {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-form .form-row {
    margin-bottom: 20px;
}
.contact-form .form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 6px;
}
.contact-form .form-row .required { color: var(--sale-red); }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px !important;
    background: var(--bg-primary) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--green) !important;
    outline: none;
    box-shadow: 0 0 0 3px var(--green-dim);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.captcha-row label { 
    font-weight: 700 !important;
    color: var(--teal) !important;
}
.captcha-row input[type="number"] { max-width: 160px; }

.contact-submit-btn {
    width: 100%;
    padding: 16px 32px !important;
    font-size: 0.9rem !important;
    margin-top: 8px;
}

/* Status messages */
.contact-form-status {
    padding: 0;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact-form-status:empty { display: none; }
.status-success {
    display: block !important;
    background: rgba(2,202,129,0.1);
    border: 1px solid rgba(2,202,129,0.3);
    color: var(--teal);
    padding: 14px 20px;
}
.status-error {
    display: block !important;
    background: rgba(217,79,79,0.06);
    border: 1px solid rgba(217,79,79,0.2);
    color: var(--sale-red);
    padding: 14px 20px;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 24px;
}
.contact-info-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-dim);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-info-value {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}
.contact-info-link {
    color: var(--teal) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.contact-info-link:hover { color: var(--green) !important; }
.contact-info-muted {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Contact Disclaimer */
.contact-disclaimer-card {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.contact-disclaimer-card svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}
.contact-disclaimer-card p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   PURITY & QUALITY PAGE
   ══════════════════════════════════════════════════════════════ */
.purity-section { padding: 64px 0 80px; }

.purity-intro {
    max-width: 800px;
    margin: 0 auto 56px;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-body);
}
.purity-intro strong { color: var(--teal); }

.purity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}
.purity-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all 0.3s ease;
}
.purity-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.purity-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--green-dim);
    color: var(--teal);
    margin-bottom: 20px;
}
.purity-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 12px;
}
.purity-card-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.purity-commitment {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 44px;
    text-align: center;
}
.purity-commitment-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 16px;
}
.purity-commitment p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 12px;
}
.purity-commitment p:last-child { margin-bottom: 0; }
.purity-commitment a {
    color: var(--green) !important;
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════
   POLICY PAGES (Shipping, Returns)
   ══════════════════════════════════════════════════════════════ */
.policy-section { padding: 64px 0 80px; }

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}
.policy-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin-bottom: 24px;
}
.policy-card:last-child { margin-bottom: 0; }
.policy-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
}
.policy-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 12px;
}
.policy-card p:last-child { margin-bottom: 0; }
.policy-card strong { color: var(--teal); }
.policy-card a { color: var(--green) !important; text-decoration: underline; }
.policy-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}
.policy-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 4px;
}
.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* Shipping Rates */
.shipping-rates { margin-top: 8px; }
.shipping-rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--bg-primary);
    transition: border-color 0.2s ease;
}
.shipping-rate-row:hover { border-color: var(--border-hover); }
.shipping-rate-row:last-child { margin-bottom: 0; }
.shipping-rate-free { 
    background: rgba(2,202,129,0.06);
    border-color: rgba(2,202,129,0.2);
}
.shipping-rate-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.shipping-rate-info svg {
    flex-shrink: 0;
    color: var(--teal);
}
.shipping-rate-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--teal);
}
.shipping-rate-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.shipping-rate-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal);
    white-space: nowrap;
}
.shipping-free-label { color: var(--green) !important; }

/* ══════════════════════════════════════════════════════════════
   SINGLE PRODUCT — Enhanced
   ══════════════════════════════════════════════════════════════ */
.product-breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.product-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.product-breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb-current { color: var(--teal); font-weight: 600; }

.product-detail {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
}
.product-detail-gallery { position: relative; }
.product-detail-image {
    position: relative;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 32px;
}
.product-detail-image img {
    width: 100%;
    object-fit: contain;
    max-height: 500px;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.product-thumb {
    width: 72px;
    height: 72px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-cream);
    padding: 4px;
    transition: border-color 0.2s ease;
}
.product-thumb:hover,
.product-thumb.active { border-color: var(--green); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-detail-short-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}
.product-stock-status { margin-bottom: 24px; }
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
}
.stock-badge.in-stock {
    background: rgba(2,202,129,0.1);
    color: var(--teal);
    border: 1px solid rgba(2,202,129,0.3);
}
.stock-badge.out-of-stock {
    background: rgba(217,79,79,0.08);
    color: var(--sale-red);
    border: 1px solid rgba(217,79,79,0.2);
}

.product-detail-meta-list {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.product-meta-row {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.product-meta-label {
    font-weight: 600;
    color: var(--text-muted);
}
.product-meta-value { color: var(--text-body); }
.product-meta-value a { color: var(--green); text-decoration: underline; }

/* Product Tabs */
.product-tabs {
    margin-top: 56px;
}
.product-tabs-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
}
.product-tab-btn {
    background: none;
    border: none;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
}
.product-tab-btn:hover { color: var(--teal); }
.product-tab-btn.active {
    color: var(--teal);
    border-bottom-color: var(--green);
}
.product-tab-panel {
    display: none;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 32px;
}
.product-tab-panel.active { display: block; }
.product-tab-body {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-body);
}
.product-tab-body p { margin-bottom: 12px; }
.product-tab-body h2, .product-tab-body h3 {
    font-family: var(--font-heading);
    color: var(--teal);
    margin: 20px 0 12px;
}

.product-attributes-table {
    width: 100%;
    border-collapse: collapse;
}
.product-attributes-table th,
.product-attributes-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    text-align: left;
}
.product-attributes-table th {
    font-weight: 600;
    color: var(--teal);
    width: 35%;
    background: var(--bg-primary);
}
.product-attributes-table td { color: var(--text-body); }

/* Product Disclaimer */
.product-disclaimer {
    margin-top: 48px;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.product-disclaimer svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}
.product-disclaimer p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.product-disclaimer strong { color: var(--text-dark); }

/* Related Products */
.related-products {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.related-products-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════════
   SHOP PAGE — Enhanced
   ══════════════════════════════════════════════════════════════ */
.products-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.shop-cat-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.2s ease;
    text-decoration: none;
}
.shop-cat-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.shop-cat-btn.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.shop-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.shop-controls .woocommerce-result-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}
.shop-controls .woocommerce-ordering select {
    width: auto;
    min-width: 180px;
    padding: 10px 16px !important;
    font-size: 0.82rem;
}

/* Product Card Dual Actions */
.product-card-actions-dual-UNUSED {
    display: flex;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.btn-view-more {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.btn-view-more:hover {
    border-color: var(--teal);
    background: var(--bg-cream);
}
.btn-add-to-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--teal) 0%, #018060 100%) !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    cursor: pointer;
}
.btn-add-to-cart:hover {
    background: linear-gradient(135deg, #018060 0%, var(--green) 100%) !important;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.btn-out-of-stock {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: not-allowed;
}

/* No Products */
.no-products-wrap {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}
.no-products-wrap svg { margin: 0 auto 20px; color: var(--border-hover); }
.no-products-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--teal);
    margin-bottom: 12px;
}
.no-products-wrap p {
    max-width: 420px;
    margin: 0 auto 24px;
    font-size: 0.92rem;
}

/* product-card-info flex fix for action buttons at bottom */
.product-card-info {
    display: flex;
    flex-direction: column;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — New templates
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .purity-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
    .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .page-hero { padding: 48px 0 36px; }
    .page-hero-title { font-size: 2rem; }
    .contact-hero { padding: 48px 0 36px; }
    .contact-hero-title { font-size: 2rem; }
    .contact-form-wrap { padding: 28px; }
    .contact-info-card { padding: 28px; }
    .policy-card { padding: 24px 28px; }
    .shipping-rate-row { flex-direction: column; gap: 12px; text-align: center; }
    .shipping-rate-info { flex-direction: column; gap: 8px; }
    .products-grid-4 { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .shop-categories { justify-content: center; }
    .product-tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .product-tab-btn { white-space: nowrap; padding: 12px 18px; font-size: 0.82rem; }
    .purity-commitment { padding: 28px; }
}



/* ── Green & Pink Accent Combination ──────────────────────────── */

/* Gradient combining both brand colors — used for premium highlights */
:root {
    --gradient-brand: linear-gradient(135deg, var(--green), var(--pink));
}

/* Primary CTA buttons — green to pink gradient */
.btn-primary,
.btn-add-to-cart,
.ajax-add-to-cart,
button[type="submit"].btn-primary {
    background: var(--gradient-brand) !important;
    border: none;
}

.btn-primary:hover,
.btn-add-to-cart:hover,
.ajax-add-to-cart:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 202, 129, 0.25);
}

/* Hero section CTA */
.hero-actions .btn-primary {
    background: var(--gradient-brand) !important;
    padding: 16px 36px;
    font-size: 1rem;
}

/* Announcement bar — green to pink gradient */
.announcement-bar {
    background: var(--gradient-brand) !important;
}

/* Free shipping progress bar */
.shipping-bar-fill {
    background: var(--gradient-brand) !important;
}

/* Section headings — solid dark teal for readability */
.section-title {
    color: var(--teal);
}

/* Hero title — white on dark hero bg */
.hero-title {
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    background: none;
}

/* Feature card top border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card { position: relative; overflow: hidden; }
.feature-card:hover::before { opacity: 1; }

/* Footer — no top border */

/* Cart count badge */
.cart-count {
    background: var(--gradient-brand) !important;
}

/* Product card image overlay on hover */
.product-card:hover .product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 202, 129, 0.05), rgba(214, 75, 138, 0.05));
    pointer-events: none;
}

/* Checkout / form submit buttons */
.woocommerce .button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.side-cart-checkout {
    background: var(--gradient-brand) !important;
    border: none !important;
}

/* Active nav indicator */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--teal);
    font-weight: 700;
}
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    background: var(--gradient-brand) !important;
    opacity: 1 !important;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: var(--gradient-brand);
    border-radius: 4px;
}

/* Selection highlight */
::selection {
    background: rgba(2, 202, 129, 0.2);
    color: var(--text-dark);
}


/* ── Side Cart Button Gradient ────────────────────────────────── */
.side-cart-checkout,
.side-cart-footer .btn-primary,
#side-cart .btn-primary,
.side-cart a[href*="checkout"] {
    background: var(--gradient-brand) !important;
    border: none !important;
    color: #fff !important;
}

/* ── Mobile Responsive Fixes ──────────────────────────────────── */
@media (max-width: 768px) {
    /* Logo sizing */
    .site-logo-full {
        height: 56px;
    }

    /* Header layout */
    .header-inner {
        padding: 8px 16px;
    }

    /* Mobile nav overlay */
    .main-nav.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFFFFF;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .main-nav.active .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .main-nav.active .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .main-nav.active .nav-menu a {
        display: block;
        padding: 14px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .main-nav.active .nav-menu a:hover {
        background: var(--cream);
    }

    .main-nav.active .nav-cart {
        margin-top: 20px;
    }

    /* Hero */
    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Product grid — 2 columns on mobile */
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card {
        padding: 0;
    }

    .product-card-info {
        padding: 12px;
    }

    .product-card-actions {
        flex-direction: column;
        gap: 6px;
    }

    .product-card-actions .btn-view-more,
    .product-card-actions .btn-add-to-cart,
    .product-card-actions .btn-out-of-stock {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Side cart — full width on mobile */
    .side-cart,
    #side-cart {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Footer — single column */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    /* Section padding */
    .section-padding,
    section {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Announcement bar */
    .announcement-bar {
        font-size: 0.72rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    /* Single column products on very small screens */
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }
}


/* ── Mobile Fixes (consolidated) ──────────────────────────────── */

/* Products: always 2 cols on mobile */
@media (max-width: 768px) {
    .products-grid,
    .products-grid-4,
    .woocommerce ul.products,
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Single product image — no extra space */
    .single-product-wrap {
        padding: 12px 0 40px;
    }

    .product-detail-image {
        padding: 8px;
    }

    /* Side cart — full screen on mobile with scrollable content */
    .side-cart,
    #side-cart {
        width: 100% !important;
        max-width: 100% !important;
        height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .side-cart-header {
        flex-shrink: 0;
        padding: 16px 20px;
    }

    .side-cart-items {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }

    .side-cart-footer {
        flex-shrink: 0;
        padding: 16px 20px;
        position: sticky;
        bottom: 0;
        background: #fff;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
        z-index: 10;
    }

    .side-cart-buttons {
        gap: 8px;
    }

    .side-cart-buttons .btn-checkout,
    .side-cart-buttons .btn-continue {
        padding: 14px !important;
        font-size: 0.85rem !important;
    }

    /* Prevent body scroll when side cart is open */
    body.side-cart-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }

    /* Shipping bar on mobile */
    .shipping-bar {
        margin: 0 20px;
    }

    /* Side cart empty state */
    .side-cart-empty {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    /* Keep 2 cols even on small phones */
    .products-grid,
    .products-grid-4,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-card-actions .btn-view-more,
    .product-card-actions .btn-add-to-cart {
        padding: 10px 12px;
        font-size: 0.72rem;
    }
}
