/* ============================================================
   LANKAPURA WEDA MADURA - Premium Ayurvedic E-Commerce
   Dr. Tharanga Wickramasooriya

   Pure CSS - Mobile-first responsive design
   Shopify Dawn/Debut quality standard
   ============================================================ */

/* ----------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
    --primary: #1B5E20;
    --primary-dark: #0D3B13;
    --primary-light: #2E7D32;
    --primary-ultra-light: #E8F5E9;
    --accent: #C6A84B;
    --accent-dark: #A8872A;
    --accent-light: #DCCB8B;
    --gold: #C6A84B;
    --gold-light: #E8D48B;
    --gold-dark: #9A7B2D;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 25%, #C6A84B 50%, #E8D48B 75%, #D4AF37 100%);
    --gold-text: linear-gradient(135deg, #D4AF37, #F5E6A3, #C6A84B);
    --bg: #FAF8F4;
    --bg-alt: #F2EDE4;
    --bg-cream: #FFF9F0;
    --text: #1a1a2e;
    --text-light: #5a6270;
    --white: #ffffff;
    --border: #e0dbd2;
    --border-gold: rgba(198,168,75,0.3);
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
    --shadow-emboss: 0 2px 8px rgba(0,0,0,.10), 0 1px 0 rgba(255,255,255,.8) inset, 0 -1px 0 rgba(0,0,0,.05) inset;
    --shadow-emboss-lg: 0 8px 32px rgba(0,0,0,.12), 0 2px 0 rgba(255,255,255,.7) inset, 0 -2px 0 rgba(0,0,0,.06) inset;
    --shadow-gold: 0 4px 20px rgba(198,168,75,0.15);
    --radius: 10px;
    --radius-lg: 18px;
    --ease: cubic-bezier(.4,0,.2,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --danger: #dc2626;
    --danger-light: #fef2f2;
    --success: #16a34a;
    --success-light: #f0fdf4;
    --info: #2563eb;
    --info-light: #eff6ff;
}

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

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

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

body.nav-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

h1 { font-size: clamp(1.875rem, 4vw + 0.5rem, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw + 0.25rem, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

::selection {
    background: var(--primary-ultra-light);
    color: var(--primary-dark);
}

/* ----------------------------------------------------------
   2. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 2.5rem;
    }
}

.text-center { text-align: center; }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-light); }

/* ----------------------------------------------------------
   3. NAVBAR
   ---------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.3s var(--ease);
}

.logo:hover {
    opacity: 0.88;
}

.logo-img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s var(--ease);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .logo-img {
        height: 50px;
        width: 50px;
    }
}

.logo-brand {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: var(--white);
    transition: color 0.3s var(--ease);
}

@media (min-width: 768px) {
    .logo-brand {
        font-size: 1.4rem;
    }
}

.navbar.scrolled .logo-brand {
    color: var(--text);
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Menu - Mobile (default hidden) */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 1000;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    border-bottom: 1px solid var(--border);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 0;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.nav-menu li a.active {
    font-weight: 600;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: auto;
    transition: transform 0.3s var(--ease);
}

.dropdown {
    display: none;
    padding-left: 1rem;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
    display: block;
}

.dropdown li {
    border-bottom: none;
}

.dropdown li a {
    padding: 0.625rem 0;
    font-size: 0.925rem;
    font-weight: 400;
    color: var(--text-light);
}

.dropdown li a:hover {
    color: var(--primary);
}

/* Cart link in nav */
.nav-cart a,
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* Desktop Nav (1024px+) */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
        box-shadow: none;
        overflow: visible;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu li a {
        padding: 0.5rem 0.75rem;
        color: var(--white);
        font-size: 0.9rem;
        border-radius: var(--radius);
        position: relative;
    }

    .navbar.scrolled .nav-menu li a {
        color: var(--text);
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        padding-left: 0.75rem;
        color: var(--accent-light);
    }

    .navbar.scrolled .nav-menu li a:hover,
    .navbar.scrolled .nav-menu li a.active {
        color: var(--primary);
        background: var(--primary-ultra-light);
    }

    /* Desktop Dropdown */
    .has-dropdown > a::after {
        margin-left: 0.375rem;
        width: 5px;
        height: 5px;
    }

    .dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 220px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--ease);
        z-index: 1001;
    }

    .has-dropdown:hover .dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown li a {
        display: block;
        padding: 0.625rem 1.25rem;
        color: var(--text);
        font-size: 0.9rem;
    }

    .dropdown li a:hover {
        background: var(--primary-ultra-light);
        color: var(--primary);
        padding-left: 1.5rem;
    }

    .cart-badge {
        top: -4px;
        right: -8px;
    }
}

@media (min-width: 1280px) {
    .nav-menu li a {
        padding: 0.5rem 1rem;
        font-size: 0.925rem;
    }
}

/* ----------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.925rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
    min-height: 44px;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 169, 81, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1.125rem;
    font-size: 0.85rem;
    min-height: 36px;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

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

.btn.disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

/* ----------------------------------------------------------
   5. HERO SLIDESHOW — Modern Cinematic
   ---------------------------------------------------------- */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #080c08;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* Individual Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1.2s var(--ease), visibility 1.2s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background with Ken Burns zoom */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.slide.active .slide-bg {
    animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* Cinematic gradient overlay — heavier on left for text readability */
.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.65) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 50%, transparent 80%);
    z-index: 1;
}

/* Content — left-aligned modern layout */
.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    min-height: 600px;
    padding: 7rem 1.5rem 8rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .slide-content { padding: 7rem 3rem 8rem; }
}

@media (min-width: 1200px) {
    .slide-content { padding: 7rem 0 8rem; }
}

/* Gold accent label */
.slide-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.75rem;
}

.slide-label span {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

@media (min-width: 768px) {
    .slide-label { font-size: 0.78rem; }
    .slide-label span { width: 48px; }
}

/* Heading */
.slide-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 5.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
    .slide-content h1 { margin-bottom: 1.5rem; }
}

/* Subtitle */
.slide-content p {
    color: rgba(255,255,255,0.72);
    font-size: clamp(0.875rem, 1.15vw, 1.1rem);
    max-width: 480px;
    margin-bottom: 2.25rem;
    line-height: 1.8;
    font-weight: 300;
}

/* CTA Buttons */
.slide-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 480px) {
    .slide-actions { flex-direction: row; gap: 1rem; }
}

.btn-slide-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--gold-gradient);
    color: #1a1a2e;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
}

.btn-slide-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(198,168,75,0.4);
}

.btn-slide-primary i {
    font-size: 0.85rem;
    transition: transform 0.4s var(--ease);
}

.btn-slide-primary:hover i {
    transform: translateX(5px);
}

.btn-slide-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.btn-slide-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198,168,75,0.06);
}

/* ---- Bottom Navigation Bar ---- */
.slide-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.25));
}

@media (min-width: 768px) {
    .slide-bottom-nav { padding: 2rem 3rem; gap: 2rem; }
}

@media (min-width: 1200px) {
    .slide-bottom-nav { padding: 2.5rem calc((100% - 1200px) / 2); }
}

/* Slide counter — 01 / 04 */
.slide-counter {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.counter-current {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.counter-total {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.counter-total::before {
    content: ' / ';
}

/* Progress bar */
.slide-progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

/* Navigation arrows — square, minimal */
.slide-arrows {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.slide-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.slide-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198,168,75,0.08);
}

@media (min-width: 768px) {
    .slide-arrow { width: 46px; height: 46px; font-size: 0.8rem; }
}

/* Vertical decorative text */
.slide-vertical-text {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    z-index: 10;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.2);
    display: none;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .slide-vertical-text { display: block; right: 2.5rem; }
}

/* Text reveal animations — staggered */
.slide.active .slide-label {
    animation: slideReveal 0.8s 0.15s both;
}

.slide.active h1 {
    animation: slideReveal 0.9s 0.35s both;
}

.slide.active p {
    animation: slideReveal 0.8s 0.55s both;
}

.slide.active .slide-actions {
    animation: slideReveal 0.8s 0.75s both;
}

@keyframes slideReveal {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero fallback (no slides in DB) */
.hero-fallback {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.hero-fallback .slide-overlay { z-index: 1; }
.hero-fallback .slide-content { z-index: 2; }

/* ----------------------------------------------------------
   6. SECTIONS
   ---------------------------------------------------------- */
.section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3.5rem;
    }
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.625rem;
}

/* ----------------------------------------------------------
   7. ABOUT PREVIEW (index.php)
   ---------------------------------------------------------- */
.about-preview {
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        gap: 5rem;
    }
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-feature:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ----------------------------------------------------------
   8. ABOUT PAGE (about.php)
   ---------------------------------------------------------- */
.about-story {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .about-story {
        padding: 5rem 0;
    }
}

.about-content {
    max-width: 720px;
}

.about-content h2 {
    margin-bottom: 1.25rem;
}

.about-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Mission / Vision */
.mission-vision {
    background: var(--bg-alt);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mv-card h3 {
    margin-bottom: 0.75rem;
}

/* Why Choose */
.choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.choose-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.choose-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.choose-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    color: var(--primary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.choose-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.choose-item p {
    font-size: 0.9rem;
}

/* ----------------------------------------------------------
   9. TREATMENT CARDS
   ---------------------------------------------------------- */
.treatments-section {
    background: var(--bg);
}

.treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .treatments-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.treatment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.treatment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.treatment-card:hover .treatment-icon {
    background: var(--primary);
    color: var(--white);
}

.treatment-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.treatment-card p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: gap 0.3s var(--ease);
}

.card-link:hover {
    gap: 0.625rem;
    color: var(--primary-dark);
}

/* Treatment Detail */
.treatment-detail {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .treatment-detail {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }
}

.treatment-main,
.treatment-content {
    min-width: 0;
}

.treatment-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.treatment-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.treatment-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.treatment-sidebar {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .treatment-sidebar {
        margin-top: 0;
    }
}

.treatment-cta {
    margin-top: 2rem;
}

.cta-box {
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.cta-box h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.cta-box p {
    margin-bottom: 1rem;
}

.related-section {
    padding: 3rem 0;
    background: var(--bg-alt);
    margin-top: 3rem;
}

/* ----------------------------------------------------------
   10. PRODUCT CARDS
   ---------------------------------------------------------- */
.products-section {
    background: var(--bg);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--bg-alt);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.product-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.product-info h3 a {
    color: var(--text);
    transition: color 0.3s var(--ease);
}

.product-info h3 a:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
}

.price-current {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-info .btn {
    margin-top: auto;
}

/* Product Placeholders */
.product-placeholder,
.product-placeholder-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 3rem;
}

.product-placeholder {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
}

.product-placeholder-lg {
    height: 400px;
    border-radius: var(--radius-lg);
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }
}

.product-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s var(--ease);
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-price-lg {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-short-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-meta {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.925rem;
}

.meta-label {
    font-weight: 600;
    color: var(--text);
    min-width: 100px;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.product-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.product-description h3 {
    margin-bottom: 1rem;
}

.product-excerpt {
    color: var(--text-light);
    line-height: 1.8;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-bar .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 9999px;
    min-height: 36px;
}

/* ----------------------------------------------------------
   11. STATS COUNTER
   ---------------------------------------------------------- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 3rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

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

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-light);
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.375rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ----------------------------------------------------------
   12. CTA SECTION
   ---------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3b11 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .cta-contact {
        flex-direction: row;
        justify-content: center;
        gap: 2.5rem;
    }
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
}

.cta-item i {
    color: var(--accent-light);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.cta-item span {
    color: rgba(255, 255, 255, 0.9);
}

/* ----------------------------------------------------------
   13. HERBAL GARDEN / PLANTS
   ---------------------------------------------------------- */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 480px) {
    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .plants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .plants-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .plants-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.plant-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

.plant-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.plant-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    transition: background 0.3s var(--ease);
}

.plant-card:hover .plant-overlay {
    background: linear-gradient(to top, rgba(27, 94, 32, 0.8) 0%, rgba(27, 94, 32, 0.2) 60%);
}

.plant-overlay h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.plant-botanical {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 0.8rem;
}

/* Plant Placeholders */
.plant-placeholder,
.plant-placeholder-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 2.5rem;
    border-radius: var(--radius-lg);
}

.plant-placeholder {
    aspect-ratio: 3 / 4;
}

.plant-placeholder-lg {
    height: 400px;
}

/* Plant Detail */
.plant-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .plant-detail {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }
}

.plant-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.plant-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.plant-detail-info {
    display: flex;
    flex-direction: column;
}

.plant-botanical-name {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.plant-short-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.plant-back {
    margin-bottom: 1.5rem;
}

/* ----------------------------------------------------------
   14. BLOG
   ---------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-type {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 9999px;
    z-index: 2;
}

.blog-type.news {
    background: var(--accent);
    color: var(--white);
}

.blog-type.blog {
    background: var(--primary);
    color: var(--white);
}

.blog-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
    flex-wrap: wrap;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text);
    transition: color 0.3s var(--ease);
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
    margin-top: 0.75rem;
    transition: gap 0.3s var(--ease);
}

.read-more:hover {
    gap: 0.625rem;
    color: var(--primary-dark);
}

/* Blog Placeholder */
.blog-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 2.5rem;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
}

/* Badge Type */
.badge-type {
    display: inline-block;
    padding: 0.2rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 9999px;
}

.badge-type.news {
    background: var(--accent);
    color: var(--white);
}

.badge-type.blog {
    background: var(--primary);
    color: var(--white);
}

/* Blog/Post Detail */
.post-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .post-detail {
        padding: 3rem 0;
    }
}

.post-header {
    margin-bottom: 1.5rem;
}

.post-header h1 {
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.post-date,
.post-type {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.post-content {
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--text);
}

.post-content h2,
.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.25rem;
    color: var(--text);
}

.post-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

.post-content ol li {
    list-style: decimal;
}

.post-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

.post-footer {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* ----------------------------------------------------------
   15. CONTACT
   ---------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
    }
}

.contact-form-wrap,
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .contact-form-wrap,
    .contact-form-card {
        padding: 2.5rem;
    }
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.sidebar-contact {
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

/* ----------------------------------------------------------
   16. FORMS
   ---------------------------------------------------------- */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-error {
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: 0.375rem;
}

.required::after {
    content: ' *';
    color: var(--danger);
}

/* ----------------------------------------------------------
   17. ALERTS & FLASH MESSAGES
   ---------------------------------------------------------- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
    line-height: 1.5;
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.alert-error {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.flash-message {
    position: fixed;
    top: 5rem;
    right: 1rem;
    left: 1rem;
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem 2.5rem 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.925rem;
    box-shadow: var(--shadow-md);
    z-index: 9999;
    animation: flashSlideIn 0.4s var(--ease);
}

@keyframes flashSlideIn {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flash-success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.flash-error {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.flash-info {
    background: var(--info-light);
    color: var(--info);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.flash-close {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.6;
    font-size: 1.125rem;
    border-radius: 50%;
    transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.flash-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.06);
}

/* ----------------------------------------------------------
   18. CART
   ---------------------------------------------------------- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr 360px;
        gap: 3rem;
        padding: 3rem 0;
    }
}

.cart-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Desktop Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: var(--bg-alt);
    padding: 0.875rem 1.25rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cart-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-alt);
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info {
    min-width: 0;
}

.cart-product-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.cart-price {
    color: var(--text-light);
    font-size: 0.925rem;
}

.cart-qty {
    text-align: center;
}

.cart-qty input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    background: var(--white);
}

.cart-qty input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.cart-total {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 1rem;
}

.cart-remove {
    text-align: center;
}

.btn-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
    font-size: 0.875rem;
}

.btn-remove:hover {
    background: var(--danger-light);
    color: var(--danger);
}

/* Mobile Cart - Stacked Layout */
@media (max-width: 767px) {
    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        padding: 1.25rem;
        border-bottom: 1px solid var(--border);
        position: relative;
    }

    .cart-table tr:last-child {
        border-bottom: none;
    }

    .cart-table td {
        padding: 0.25rem 0;
        border-bottom: none;
        text-align: left;
    }

    .cart-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--text-light);
        margin-bottom: 0.25rem;
    }

    .cart-product {
        margin-bottom: 0.5rem;
    }

    .cart-remove {
        text-align: right;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
    }
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid var(--border);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    align-self: flex-start;
    position: sticky;
    top: 6rem;
}

.cart-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0;
    margin-top: 0.75rem;
    border-top: 2px solid var(--border);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.cart-summary .btn {
    margin-top: 1.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--text-light);
    opacity: 0.3;
    margin-bottom: 1.25rem;
    display: block;
}

.empty-state h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ----------------------------------------------------------
   19. CHECKOUT
   ---------------------------------------------------------- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 3rem;
        padding: 3rem 0;
    }
}

.checkout-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .checkout-form {
        padding: 2.5rem;
    }
}

.checkout-form h2,
.checkout-form h3 {
    margin-bottom: 1.5rem;
}

.checkout-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    align-self: flex-start;
    position: sticky;
    top: 6rem;
}

.checkout-summary h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.summary-items {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
}

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

.summary-item-info {
    flex: 1;
    min-width: 0;
}

.summary-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.125rem;
}

.summary-item-qty {
    font-size: 0.8rem;
    color: var(--text-light);
}

.summary-item-price {
    font-weight: 600;
    font-size: 0.925rem;
    color: var(--text);
    white-space: nowrap;
}

.summary-totals {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}

.checkout-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--primary-ultra-light);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--primary-dark);
    line-height: 1.6;
}

/* Order Confirmation */
.order-confirmation {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 640px;
    margin: 0 auto;
}

.confirmation-icon {
    margin-bottom: 1.5rem;
}

.confirmation-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-light);
    color: var(--success);
    font-size: 2rem;
}

.order-confirmation h2 {
    margin-bottom: 1rem;
}

.order-details-box {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin: 1.5rem 0;
    text-align: left;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* ----------------------------------------------------------
   20. ACHIEVEMENTS
   ---------------------------------------------------------- */
.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.achievement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.achievement-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    font-size: 0.9rem;
}

/* ----------------------------------------------------------
   21. PAGE HEADER / BREADCRUMB
   ---------------------------------------------------------- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 7rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s var(--ease);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: var(--accent-light);
}

/* ----------------------------------------------------------
   22. SIDEBAR
   ---------------------------------------------------------- */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    color: var(--text-light);
    font-size: 0.925rem;
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.sidebar-nav li a:hover {
    background: var(--primary-ultra-light);
    color: var(--primary);
    padding-left: 1rem;
}

.sidebar-nav li a.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary-ultra-light);
    border-radius: var(--radius);
    margin-top: 1rem;
}

.sidebar-phone i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ----------------------------------------------------------
   23. FOOTER
   ---------------------------------------------------------- */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0a2e0d 100%);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: relative;
    margin-top: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-light);
    padding-left: 0.375rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list li i {
    color: var(--accent-light);
    margin-top: 0.25rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------------------------
   24. BACK TO TOP
   ---------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ----------------------------------------------------------
   25. PAGINATION
   ---------------------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    text-decoration: none;
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-ultra-light);
}

.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

/* ----------------------------------------------------------
   26. CONTENT BODY (generic)
   ---------------------------------------------------------- */
.content-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    line-height: 1.8;
}

.content-body h2,
.content-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body p {
    margin-bottom: 1.25rem;
}

.content-body ul,
.content-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
    list-style: disc;
    line-height: 1.7;
}

.content-body ol li {
    list-style: decimal;
}

.content-body img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

/* ----------------------------------------------------------
   27. ANIMATIONS & KEYFRAMES
   ---------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Intersection Observer triggered classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }

/* ----------------------------------------------------------
   28. HERO SLIDESHOW VARIANT STYLES
   ---------------------------------------------------------- */
.slide-content .section-label {
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

/* ----------------------------------------------------------
   29. WHY CHOOSE SECTION (about.php)
   ---------------------------------------------------------- */
.why-choose {
    background: var(--bg);
}

/* ----------------------------------------------------------
   30. MISC RESPONSIVE HELPERS
   ---------------------------------------------------------- */

/* Nav overlay for mobile */
@media (max-width: 767px) {
    .nav-menu::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--ease);
        z-index: -1;
    }

    /* Show overlay when menu active */
    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* Responsive images for hero on small screens */
@media (max-width: 480px) {
    .slide-content {
        padding: 5rem 0 2rem;
    }

    .slide-content h1 {
        font-size: 1.75rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slide-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .slide-prev {
        left: 0.5rem;
    }

    .slide-next {
        right: 0.5rem;
    }
}

/* ----------------------------------------------------------
   31. PRODUCT DETAIL - ADDITIONAL RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 480px) {
    .product-price-lg {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
}

/* ----------------------------------------------------------
   32. CHECKOUT - ADDITIONAL RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 767px) {
    .checkout-form,
    .checkout-summary {
        padding: 1.5rem;
    }

    .order-confirmation {
        padding: 2rem 1rem;
    }
}

/* ----------------------------------------------------------
   33. UTILITIES
   ---------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----------------------------------------------------------
   34. LOADING SKELETON / PLACEHOLDER ANIMATION
   ---------------------------------------------------------- */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-alt) 25%,
        #ede9e1 37%,
        var(--bg-alt) 63%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius);
}

/* ----------------------------------------------------------
   35. SCROLLBAR STYLING
   ---------------------------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #c4c4c4 var(--bg-alt);
}

/* ----------------------------------------------------------
   36. RESPONSIVE GRID ADJUSTMENTS - SMALL SCREENS
   ---------------------------------------------------------- */
@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .treatments-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }

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

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

/* ----------------------------------------------------------
   37. BETWEEN BREAKPOINTS FINE-TUNING
   ---------------------------------------------------------- */
@media (min-width: 480px) and (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ----------------------------------------------------------
   38. TREATMENT SIDEBAR CARDS
   ---------------------------------------------------------- */
.treatment-sidebar .sidebar-card {
    margin-bottom: 1.5rem;
}

.treatment-sidebar .sidebar-card:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   39. HERO SECTION TEXT SHADOW FOR READABILITY
   ---------------------------------------------------------- */
.slide-content h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-content p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------------------------
   40. CARD HOVER BORDER ACCENT
   ---------------------------------------------------------- */
.treatment-card,
.product-card,
.blog-card,
.achievement-card,
.plant-card {
    border: 1px solid transparent;
}

.treatment-card:hover {
    border-color: var(--primary-ultra-light);
}

.product-card:hover {
    border-color: var(--primary-ultra-light);
}

.blog-card:hover {
    border-color: var(--primary-ultra-light);
}

.achievement-card:hover {
    border-color: var(--accent-light);
}

/* ----------------------------------------------------------
   41. STICKY NAV TRANSITION POLISH
   ---------------------------------------------------------- */
.navbar.scrolled .logo-name {
    color: var(--text);
}

.navbar.scrolled .logo-tagline {
    color: var(--text-light);
}

.navbar.scrolled .logo-icon {
    box-shadow: var(--shadow);
}

/* ----------------------------------------------------------
   42. FORM CHECKBOX & RADIO (if used)
   ---------------------------------------------------------- */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ----------------------------------------------------------
   43. LINK STYLES WITHIN CONTENT
   ---------------------------------------------------------- */
.post-content a,
.content-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s var(--ease);
}

.post-content a:hover,
.content-body a:hover {
    color: var(--primary-dark);
}

/* ----------------------------------------------------------
   44. TABLE GENERIC STYLES
   ---------------------------------------------------------- */
.content-body table,
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-body th,
.post-content th {
    background: var(--bg-alt);
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.content-body td,
.post-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.925rem;
}

/* ----------------------------------------------------------
   45. IMAGE ASPECT RATIO CONTAINERS
   ---------------------------------------------------------- */
.product-image::after {
    content: '';
    display: block;
}

/* ----------------------------------------------------------
   46. QUANTITY SELECTOR (cart / product pages)
   ---------------------------------------------------------- */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-selector button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--text);
    font-size: 1rem;
    transition: background 0.2s var(--ease);
}

.qty-selector button:hover {
    background: var(--primary-ultra-light);
    color: var(--primary);
}

.qty-selector input {
    width: 48px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 600;
    background: var(--white);
}

/* ----------------------------------------------------------
   47. SECTION ALTERNATING BACKGROUNDS
   ---------------------------------------------------------- */
.section:nth-child(even) {
    background: var(--bg-alt);
}

.section.stats-section,
.section.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* ----------------------------------------------------------
   48. FOCUS TRAP FOR MOBILE NAV (accessibility)
   ---------------------------------------------------------- */
.nav-menu:focus-within {
    outline: none;
}

/* ----------------------------------------------------------
   49. SMOOTH IMAGE LOADING
   ---------------------------------------------------------- */
img {
    opacity: 1;
    transition: opacity 0.3s var(--ease);
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* ----------------------------------------------------------
   50. REDUCED MOTION PREFERENCES
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .slide {
        transition: none;
    }

    .product-card:hover,
    .blog-card:hover,
    .treatment-card:hover,
    .achievement-card:hover {
        transform: none;
    }
}

/* ----------------------------------------------------------
   51. DARK OVERLAY UTILITY
   ---------------------------------------------------------- */
.overlay-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ----------------------------------------------------------
   52. PRODUCT CARD - BUY BUTTON VISIBILITY
   ---------------------------------------------------------- */
@media (min-width: 768px) {
    .product-card .btn {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    }

    .product-card:hover .btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------------
   53. CARD GOLD TOP ACCENT BAR
   ---------------------------------------------------------- */
.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity 0.3s var(--ease), width 0.3s var(--ease);
}

.treatment-card {
    position: relative;
}

.treatment-card:hover::before {
    opacity: 1;
    width: 60px;
}

/* ----------------------------------------------------------
   54. SELECTION FOR MOBILE - LARGER TOUCH TARGETS
   ---------------------------------------------------------- */
@media (max-width: 767px) {
    .filter-bar .btn {
        min-height: 44px;
        padding: 0.625rem 1.25rem;
    }

    .page-link {
        min-width: 44px;
        height: 44px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }
}

/* ----------------------------------------------------------
   55. PRINT STYLES
   ---------------------------------------------------------- */
@media print {
    .navbar,
    .footer,
    .hero-slideshow,
    .back-to-top,
    .slide-arrow,
    .slide-dots,
    .nav-toggle,
    .cart-actions,
    .flash-message,
    .filter-bar {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .section {
        padding: 1rem 0;
    }

    .page-header {
        background: none;
        color: black;
        padding: 1rem 0;
    }

    .page-header h1 {
        color: black;
    }

    .breadcrumb a,
    .breadcrumb span {
        color: #333;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    .product-card,
    .blog-card,
    .treatment-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .product-card:hover,
    .blog-card:hover,
    .treatment-card:hover {
        transform: none;
        box-shadow: none;
    }

    img {
        max-width: 100% !important;
    }
}

/* ----------------------------------------------------------
   56. HIGH CONTRAST MODE SUPPORT
   ---------------------------------------------------------- */
@media (forced-colors: active) {
    .btn {
        border: 2px solid ButtonText;
    }

    .nav-toggle span {
        background: ButtonText;
    }

    .cart-badge {
        border: 1px solid ButtonText;
    }
}

/* ----------------------------------------------------------
   57. LANDSCAPE MOBILE ADJUSTMENTS
   ---------------------------------------------------------- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slideshow,
    .slideshow-wrapper,
    .slide,
    .slide-content {
        min-height: 100vh;
    }

    .slide-content {
        padding-top: 4rem;
    }
}

/* ----------------------------------------------------------
   58. XL SCREEN - WIDER GRIDS
   ---------------------------------------------------------- */
@media (min-width: 1280px) {
    .treatments-grid {
        gap: 2rem;
    }

    .products-grid {
        gap: 2rem;
    }

    .blog-grid {
        gap: 2.5rem;
    }

    .about-grid {
        gap: 6rem;
    }

    .contact-grid {
        gap: 4rem;
    }
}

/* ----------------------------------------------------------
   59. PRODUCT CARD BADGE VARIANTS
   ---------------------------------------------------------- */
.product-badge.sale {
    background: var(--danger);
}

.product-badge.new {
    background: var(--primary);
}

.product-badge.popular {
    background: var(--accent);
}

/* ----------------------------------------------------------
   60. STICKY SIDEBAR ON DESKTOP
   ---------------------------------------------------------- */
@media (min-width: 768px) {
    .treatment-sidebar,
    .sidebar-card:first-child {
        position: sticky;
        top: 6rem;
    }
}

/* ----------------------------------------------------------
   61. MAP CONTAINER (if embedded in contact page)
   ---------------------------------------------------------- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

@media (min-width: 768px) {
    .map-container iframe {
        height: 400px;
    }
}

/* ----------------------------------------------------------
   62. SMOOTH UNDERLINE LINK HOVER
   ---------------------------------------------------------- */
.footer-col ul li a,
.sidebar-nav li a,
.card-link,
.read-more {
    position: relative;
}

/* ----------------------------------------------------------
   63. NAV ACTIVE INDICATOR DOT (desktop)
   ---------------------------------------------------------- */
@media (min-width: 768px) {
    .nav-menu li a.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent);
    }
}

/* ----------------------------------------------------------
   64. CTA SECTION BUTTON STYLES
   ---------------------------------------------------------- */
.cta-section .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.cta-section .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 16px rgba(200, 169, 81, 0.4);
}

.cta-section .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

/* ----------------------------------------------------------
   65. STATS SECTION DIVIDER LINES
   ---------------------------------------------------------- */
@media (min-width: 768px) {
    .stat-item:not(:last-child) {
        position: relative;
    }

    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
    }
}

/* ----------------------------------------------------------
   66. CARD IMAGE LOADING BACKGROUND
   ---------------------------------------------------------- */
.product-image,
.blog-image,
.plant-image {
    background: var(--bg-alt);
}

/* ----------------------------------------------------------
   67. PRODUCT INFO - TRUNCATION
   ---------------------------------------------------------- */
.product-info h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----------------------------------------------------------
   68. SECTION HEADER DECORATIVE LINE
   ---------------------------------------------------------- */
.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 0.75rem auto 0;
    border-radius: 3px;
}

.section-header.text-center h2::after {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------
   69. ABOUT FEATURE ICON COLORS
   ---------------------------------------------------------- */
.about-feature:nth-child(2) i {
    color: var(--accent);
}

.about-feature:nth-child(3) i {
    color: var(--primary-light);
}

/* ----------------------------------------------------------
   70. PRODUCT DETAIL PAGE - TABS (if used)
   ---------------------------------------------------------- */
.product-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
}

.product-tabs button {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.925rem;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s var(--ease);
}

.product-tabs button:hover {
    color: var(--text);
}

.product-tabs button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ----------------------------------------------------------
   71. SPECIAL PAGES - TERMS / PRIVACY
   ---------------------------------------------------------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
}

.legal-content li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ----------------------------------------------------------
   72. TESTIMONIAL SECTION (if used)
   ---------------------------------------------------------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--primary-ultra-light);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

/* ----------------------------------------------------------
   73. HOVER EFFECT - GLOW RING ON ICONS
   ---------------------------------------------------------- */
.stat-icon,
.mv-icon,
.choose-icon,
.treatment-icon,
.achievement-icon,
.contact-card-icon {
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.stat-item:hover .stat-icon,
.mv-card:hover .mv-icon,
.choose-item:hover .choose-icon,
.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

/* ----------------------------------------------------------
   74. CART QTY INPUT ARROWS
   ---------------------------------------------------------- */
.cart-qty input::-webkit-inner-spin-button,
.cart-qty input::-webkit-outer-spin-button {
    opacity: 1;
    height: 24px;
}

/* ----------------------------------------------------------
   75. BUTTON ICON ALIGNMENT
   ---------------------------------------------------------- */
.btn i {
    font-size: 0.95em;
}

.btn i:first-child {
    margin-right: 0.125rem;
}

/* ----------------------------------------------------------
   76. WIDE SECTION VARIANT
   ---------------------------------------------------------- */
.section-wide {
    padding-left: 0;
    padding-right: 0;
}

.section-wide .container {
    max-width: 100%;
    padding: 0;
}

/* ----------------------------------------------------------
   77. FOOTER BOTTOM LINKS
   ---------------------------------------------------------- */
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease);
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* ----------------------------------------------------------
   78. BODY PADDING FOR FIXED NAV
   ---------------------------------------------------------- */
/* Pages with hero slideshow don't need this since hero is full screen.
   For inner pages, add padding-top via the page-header section. */

/* ----------------------------------------------------------
   79. RESPONSIVE IMAGES IN CONTENT
   ---------------------------------------------------------- */
.post-content img,
.content-body img {
    max-width: 100%;
    height: auto;
}

/* ----------------------------------------------------------
   80. CART SUMMARY RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1023px) {
    .cart-summary {
        position: static;
    }

    .checkout-summary {
        position: static;
    }
}

/* ----------------------------------------------------------
   81. ABOUT IMAGE BORDER DECORATION
   ---------------------------------------------------------- */
@media (min-width: 768px) {
    .about-image::before {
        content: '';
        position: absolute;
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
        border: 2px solid var(--accent);
        border-radius: var(--radius-lg);
        z-index: -1;
        opacity: 0.3;
    }

    .about-image {
        position: relative;
    }
}

/* ----------------------------------------------------------
   82. GOLD GRADIENT TEXT UTILITY
   ---------------------------------------------------------- */
.text-gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------------------------
   83. SECTION DIVIDER
   ---------------------------------------------------------- */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

/* ----------------------------------------------------------
   84. LAZY LOAD IMAGE PLACEHOLDER
   ---------------------------------------------------------- */
[data-src] {
    background: var(--bg-alt);
    min-height: 120px;
}

/* ----------------------------------------------------------
   85. VERTICAL SPACING BETWEEN SIDEBAR SECTIONS
   ---------------------------------------------------------- */
.sidebar-contact + .sidebar-card,
.sidebar-card + .sidebar-contact {
    margin-top: 1.5rem;
}

/* ----------------------------------------------------------
   86. CONTACT PAGE MAP + INFO SPACING
   ---------------------------------------------------------- */
@media (max-width: 767px) {
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-form-wrap,
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* ----------------------------------------------------------
   87. HOVER TRANSITION ON ALL INTERACTIVE ELEMENTS
   ---------------------------------------------------------- */
a,
button,
input,
select,
textarea,
.btn,
.product-card,
.blog-card,
.treatment-card,
.plant-card,
.achievement-card,
.contact-card,
.mv-card,
.choose-item {
    transition-property: color, background-color, border-color, box-shadow, transform, opacity;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease);
}

/* ----------------------------------------------------------
   88. DARK SECTION TEXT OVERRIDE
   ---------------------------------------------------------- */
.stats-section h2,
.stats-section h3,
.cta-section h2,
.cta-section h3 {
    color: var(--white);
}

.stats-section p,
.cta-section p {
    color: rgba(255, 255, 255, 0.85);
}

/* ----------------------------------------------------------
   89. PRODUCT REVIEWS
   ---------------------------------------------------------- */
.product-reviews {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

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

.reviews-header h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-avg {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.rating-total {
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #f59e0b;
    font-size: 1rem;
}

.stars-sm {
    font-size: 0.8rem;
}

.review-form-wrapper {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 40px;
}

.review-form-wrapper h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text);
}

.review-form .form-group {
    margin-bottom: 16px;
}

.review-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.review-form .form-group .required {
    color: var(--danger);
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    background: var(--white);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #d1d5db;
    transition: color 0.15s;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #f59e0b;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: box-shadow 0.3s var(--ease);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    font-size: 2rem;
    color: var(--primary-light);
}

.review-name {
    font-size: 0.9375rem;
    color: var(--text);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
    margin-left: 8px;
}

.review-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 2px;
}

.review-stars {
    flex-shrink: 0;
}

.review-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.review-body {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

.reviews-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 640px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-card-header {
        flex-direction: column;
    }
}

/* ----------------------------------------------------------
   90. WISHLIST BUTTON
   ---------------------------------------------------------- */
.btn-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-light);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    flex-shrink: 0;
}

.btn-wishlist:hover {
    border-color: var(--danger);
    color: var(--danger);
    transform: scale(1.08);
}

.btn-wishlist.active {
    background: var(--danger-light);
    border-color: var(--danger);
    color: var(--danger);
}

.btn-wishlist.active:hover {
    background: var(--danger);
    color: var(--white);
}

/* ----------------------------------------------------------
   91. DISCOUNT CODE FORM (Checkout)
   ---------------------------------------------------------- */
.discount-form {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.discount-form h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.discount-input-row {
    display: flex;
    gap: 8px;
}

.discount-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.discount-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.discount-error {
    margin-top: 8px;
    font-size: 0.8125rem;
    color: var(--danger);
}

.discount-success {
    margin-top: 8px;
    font-size: 0.8125rem;
    color: var(--success);
    font-weight: 600;
}

.summary-discount {
    color: var(--success);
}

/* ----------------------------------------------------------
   92. CHECKOUT ENHANCEMENTS
   ---------------------------------------------------------- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.checkout-form h2,
.checkout-summary h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text);
}

.checkout-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.summary-items {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-item-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item-name {
    font-size: 0.875rem;
    color: var(--text);
}

.summary-item-qty {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.summary-item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.summary-totals {
    margin-bottom: 24px;
}

.summary-totals .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9375rem;
}

.summary-totals .summary-total {
    border-top: 2px solid var(--text);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 1.125rem;
}

.checkout-note {
    margin-top: 16px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.8125rem;
    line-height: 1.6;
}

.order-confirmation {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 24px;
}

.order-confirmation h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 8px;
}

.order-details-box {
    background: var(--success-light);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.confirmation-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

/* Payment Method Selection */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    background: var(--white);
}

.payment-option:hover {
    border-color: var(--gold);
}

.payment-option.selected,
.payment-option:has(input:checked) {
    border-color: var(--gold);
    background: rgba(198,168,75,0.04);
    box-shadow: 0 0 0 1px var(--gold);
}

.payment-option input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.payment-option-content {
    flex: 1;
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.payment-option-header i {
    color: var(--gold-dark);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.payment-option-label {
    font-size: 0.95rem;
}

.payment-option-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Bank Details on Confirmation */
.bank-details-box {
    background: var(--white);
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin: 1rem 0;
    text-align: left;
}

.bank-details-table {
    width: 100%;
    border-collapse: collapse;
}

.bank-details-table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.bank-details-table tr:last-child td {
    border-bottom: none;
}

.bank-details-table td:first-child {
    width: 40%;
    color: var(--text-light);
    font-size: 0.8125rem;
}

.bank-ref-note {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border);
    text-align: center;
    color: var(--text-light);
}

.summary-discount span:last-child {
    color: var(--success);
    font-weight: 600;
}

/* ----------------------------------------------------------
   93. NEWSLETTER FORM (Footer)
   ---------------------------------------------------------- */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.875rem;
    font-family: var(--font-sans);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

/* ----------------------------------------------------------
   94. TOAST NOTIFICATIONS
   ---------------------------------------------------------- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-size: 0.9375rem;
    min-width: 300px;
    max-width: 420px;
    animation: toastSlideIn 0.4s var(--ease);
    border-left: 4px solid var(--primary);
}

.toast.toast-success { border-left-color: var(--success); }
.toast.toast-error   { border-left-color: var(--danger); }
.toast.toast-info    { border-left-color: var(--info); }

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon   { color: var(--danger); }
.toast-info .toast-icon    { color: var(--info); }

.toast-message {
    flex: 1;
    color: var(--text);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--text);
}

.toast-exit {
    animation: toastSlideOut 0.3s var(--ease) forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .toast-container {
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
    }
}

/* ----------------------------------------------------------
   95. RELATED PRODUCTS SECTION
   ---------------------------------------------------------- */
.related-section {
    background: var(--bg-alt);
}

/* ----------------------------------------------------------
   96. PRODUCT DESCRIPTION
   ---------------------------------------------------------- */
.product-description {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.product-description h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.content-body {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ----------------------------------------------------------
   97. ALERT MESSAGES
   ---------------------------------------------------------- */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert i {
    margin-top: 2px;
    flex-shrink: 0;
}

.alert ul {
    list-style: none;
    padding: 0;
}

.alert-success {
    background: var(--success-light);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.alert-error {
    background: var(--danger-light);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ----------------------------------------------------------
   98. LUXURY EMBOSSED & GOLD FOIL OVERHAUL
   Premium depth, metallic accents, glass morphism, rich textures
   ---------------------------------------------------------- */

/* --- Body subtle texture --- */
body {
    background: var(--bg);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(198,168,75,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(27,94,32,0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
}

/* --- NAVBAR luxury glass --- */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow:
        0 1px 0 rgba(198,168,75,0.2),
        0 4px 24px rgba(0,0,0,0.08),
        0 1px 0 rgba(255,255,255,0.9) inset;
    border-bottom: 1px solid rgba(198,168,75,0.15);
}


.nav-menu a::after {
    background: var(--gold-gradient) !important;
    height: 2px !important;
}

/* --- BUTTONS luxury embossed --- */
.btn-primary {
    background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border-color: var(--primary-dark);
    box-shadow:
        0 2px 4px rgba(0,0,0,0.15),
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 -1px 0 rgba(0,0,0,0.1) inset;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow:
        0 6px 20px rgba(27,94,32,0.35),
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 -1px 0 rgba(0,0,0,0.15) inset;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
    color: #1a1a2e;
    box-shadow:
        0 2px 4px rgba(198,168,75,0.25),
        0 1px 0 rgba(255,255,255,0.3) inset,
        0 -1px 0 rgba(0,0,0,0.1) inset;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(145deg, #E8D48B 0%, #C6A84B 50%, #A8872A 100%);
    color: #1a1a2e;
    box-shadow:
        0 6px 24px rgba(198,168,75,0.4),
        0 1px 0 rgba(255,255,255,0.3) inset,
        0 -1px 0 rgba(0,0,0,0.15) inset;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
    color: #1a1a2e;
    box-shadow: var(--shadow-gold);
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

/* --- HERO luxury overlay & gold accents --- */
.slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(13, 59, 19, 0.82) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(13, 30, 15, 0.7) 100%
    );
}

.slide-content h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.15);
    position: relative;
}

.slide-content .btn {
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
    color: #1a1a2e;
    box-shadow:
        0 4px 16px rgba(198,168,75,0.35),
        0 1px 0 rgba(255,255,255,0.3) inset;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.slide-content .btn:hover {
    box-shadow:
        0 8px 32px rgba(198,168,75,0.5),
        0 1px 0 rgba(255,255,255,0.3) inset;
    transform: translateY(-3px);
}

.slide-arrow {
    background: rgba(198, 168, 75, 0.15);
    border: 1px solid rgba(198, 168, 75, 0.3);
    backdrop-filter: blur(12px);
}

.slide-arrow:hover {
    background: rgba(198, 168, 75, 0.3);
    border-color: rgba(198, 168, 75, 0.5);
    box-shadow: 0 0 20px rgba(198,168,75,0.2);
}

.dot.active,
.dot:hover {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(198,168,75,0.5);
}

/* --- SECTION HEADERS gold foil text --- */
.section-label {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-shadow: none;
}

.section-header h2 {
    font-family: var(--font-serif);
    position: relative;
    display: inline-block;
    color: var(--text);
    letter-spacing: -0.01em;
}

.section-header.text-center h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0.75rem auto 0;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(198,168,75,0.3);
}

/* --- ABOUT section embossed image frame --- */
.about-image {
    position: relative;
    border: 3px solid rgba(198,168,75,0.2);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.12),
        0 2px 0 rgba(255,255,255,0.5) inset;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgba(198,168,75,0.15);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-badge {
    background: var(--gold-gradient);
    color: #1a1a2e;
    box-shadow:
        0 4px 20px rgba(198,168,75,0.4),
        0 1px 0 rgba(255,255,255,0.3) inset;
    font-weight: 700;
}

.about-badge .badge-number {
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.about-feature {
    background: var(--white);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-emboss);
    border: 1px solid rgba(198,168,75,0.1);
    transition: all 0.3s var(--ease);
}

.about-feature:hover {
    box-shadow: var(--shadow-emboss-lg);
    border-color: rgba(198,168,75,0.25);
    transform: translateY(-2px);
}

.about-feature i {
    color: var(--gold) !important;
}

/* --- TREATMENT CARDS embossed luxury --- */
.treatment-card {
    background: var(--white);
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0,0,0,0.12),
        0 2px 0 rgba(255,255,255,0.7) inset,
        0 -2px 0 rgba(0,0,0,0.04) inset;
    border-color: rgba(198,168,75,0.25);
}

.treatment-icon {
    background: linear-gradient(145deg, #f0fdf0, #d4edda);
    box-shadow:
        0 3px 8px rgba(0,0,0,0.08),
        0 1px 0 rgba(255,255,255,0.9) inset;
    border: 1px solid rgba(27,94,32,0.1);
}

.treatment-card:hover .treatment-icon {
    background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
    box-shadow:
        0 4px 12px rgba(27,94,32,0.3),
        0 1px 0 rgba(255,255,255,0.15) inset;
}

.card-link {
    color: var(--gold-dark);
    font-weight: 700;
}

.card-link:hover {
    color: var(--gold);
}

/* --- PRODUCT CARDS luxury embossed --- */
.product-card {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 5;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 48px rgba(0,0,0,0.12),
        0 2px 0 rgba(255,255,255,0.7) inset;
    border-color: rgba(198,168,75,0.3);
}

.product-badge {
    background: var(--gold-gradient);
    color: #1a1a2e;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(198,168,75,0.3);
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.product-category {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.price-current {
    color: var(--primary-dark);
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

/* --- PRODUCT DETAIL luxury --- */
.product-detail-image {
    border: 3px solid rgba(198,168,75,0.15);
    box-shadow: var(--shadow-emboss-lg);
}

.product-price-lg {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.product-meta {
    border-top: 2px solid rgba(198,168,75,0.15);
}

/* --- STATS SECTION luxury depth --- */
.section.stats-section {
    background: linear-gradient(135deg, #071a09 0%, #0a2e0d 40%, var(--primary-dark) 70%, #0d3b13 100%);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section.stats-section {
        padding: 5rem 0;
    }
}

.stats-section::before {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(198,168,75,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 30%, rgba(198,168,75,0.06) 0%, transparent 40%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stat-icon {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
    background: linear-gradient(145deg, rgba(198,168,75,0.25), rgba(198,168,75,0.1));
    border: 2px solid rgba(198,168,75,0.4);
    color: var(--gold);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.2),
        0 1px 0 rgba(255,255,255,0.1) inset;
}

.stat-number {
    color: var(--white);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.stat-label {
    color: var(--gold);
    letter-spacing: 0.18em;
    font-weight: 600;
    font-size: 0.8rem;
}

/* --- CTA SECTION luxury gold accents --- */
.section.cta-section {
    background: linear-gradient(135deg, #0a2e0d 0%, var(--primary-dark) 50%, #0d3b11 100%);
}

.cta-section::before {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(198,168,75,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(198,168,75,0.06) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    border-radius: 0;
}

.cta-content h2 {
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cta-item i {
    color: var(--gold);
    filter: drop-shadow(0 0 4px rgba(198,168,75,0.3));
}

.cta-section .btn-primary {
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
    color: #1a1a2e;
    box-shadow:
        0 4px 20px rgba(198,168,75,0.4),
        0 1px 0 rgba(255,255,255,0.3) inset;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.cta-section .btn-primary:hover {
    box-shadow:
        0 8px 32px rgba(198,168,75,0.5),
        0 1px 0 rgba(255,255,255,0.3) inset;
}

/* --- PAGE HEADER luxury gold line --- */
.page-header {
    background: linear-gradient(135deg, #0a2e0d 0%, var(--primary-dark) 50%, #0d3b13 100%);
}

.page-header h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0.75rem auto 0;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(198,168,75,0.4);
}

.breadcrumb span:last-child {
    color: var(--gold-light);
}

/* --- FOOTER luxury dark & gold --- */
.footer {
    background: linear-gradient(180deg, #0d3b13 0%, #071a09 100%);
}

.footer-col h4 {
    font-family: var(--font-serif);
}

.footer-col h4::after {
    background: var(--gold-gradient);
    height: 2px;
    width: 40px;
    box-shadow: 0 0 8px rgba(198,168,75,0.3);
}

.footer-social a {
    background: rgba(198,168,75,0.1);
    border: 1px solid rgba(198,168,75,0.2);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(198,168,75,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(198,168,75,0.15);
}

/* --- SIDEBAR CARD embossed --- */
.sidebar-card {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
}

.sidebar-card h3 {
    border-bottom: 2px solid rgba(198,168,75,0.15);
    font-family: var(--font-serif);
}

/* --- FORMS luxury inputs --- */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04) inset, 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.3s var(--ease);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px rgba(198,168,75,0.15),
        0 1px 2px rgba(0,0,0,0.04) inset;
    outline: none;
}

/* --- CHECKOUT luxury summary --- */
.checkout-summary {
    background: var(--white);
    border: 1px solid rgba(198,168,75,0.15);
    box-shadow: var(--shadow-emboss-lg);
    border-radius: var(--radius-lg);
}

.checkout-summary h2 {
    font-family: var(--font-serif);
    border-bottom: 2px solid rgba(198,168,75,0.15);
    padding-bottom: 1rem;
}

.summary-total span:last-child {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
}

/* --- CART TABLE luxury --- */
.cart-table {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cart-table thead {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cart-table thead th {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-family: var(--font-serif);
    letter-spacing: 0.03em;
}

/* --- REVIEWS luxury cards --- */
.review-card {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: rgba(198,168,75,0.12);
    pointer-events: none;
}

/* --- DISCOUNT CODE luxury input --- */
.discount-input {
    border: 1px solid rgba(198,168,75,0.3) !important;
    background: rgba(198,168,75,0.03) !important;
}

.discount-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(198,168,75,0.15) !important;
}

.discount-success {
    color: var(--gold-dark) !important;
}

/* --- NEWSLETTER luxury form --- */
.newsletter-form input[type="email"] {
    border: 1px solid rgba(198,168,75,0.3);
    background: rgba(255,255,255,0.08);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198,168,75,0.15);
}

.newsletter-form .btn {
    background: var(--gold-gradient);
    color: #1a1a2e;
    border-color: var(--gold-dark);
    font-weight: 700;
}

/* --- TOAST luxury --- */
.toast {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 0 rgba(255,255,255,0.7) inset;
    border-left: 4px solid var(--gold);
}

/* --- ALTERNATING section backgrounds luxury --- */
.about-preview {
    background: var(--bg-cream);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198,168,75,0.3), transparent);
}

.treatments-section {
    position: relative;
}

.treatments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198,168,75,0.3), transparent);
}

.products-section {
    background: var(--bg-cream);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198,168,75,0.3), transparent);
}

/* --- Headings serif upgrade --- */
h1, h2, h3 {
    font-family: var(--font-serif);
    letter-spacing: -0.01em;
}

/* --- FILTER BAR pill buttons luxury --- */
.filter-bar .btn {
    border: 1px solid rgba(198,168,75,0.2);
    box-shadow: var(--shadow);
}

.filter-bar .btn:hover,
.filter-bar .btn.active {
    background: var(--gold-gradient);
    color: #1a1a2e;
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

/* --- PAGINATION luxury --- */
.pagination a,
.pagination span {
    border: 1px solid rgba(198,168,75,0.15);
    box-shadow: var(--shadow);
}

.pagination a:hover,
.pagination .active {
    background: var(--gold-gradient);
    color: #1a1a2e;
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

/* --- CTA BOX luxury --- */
.cta-box {
    background: linear-gradient(135deg, rgba(198,168,75,0.06) 0%, rgba(198,168,75,0.02) 100%);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-emboss);
    border: 1px solid rgba(198,168,75,0.15);
    border-left: 4px solid var(--gold);
}

/* --- BACK TO TOP luxury --- */
.back-to-top {
    background: var(--gold-gradient);
    color: #1a1a2e;
    box-shadow:
        0 4px 16px rgba(198,168,75,0.35),
        0 1px 0 rgba(255,255,255,0.3) inset;
    border: none;
}

.back-to-top:hover {
    background: linear-gradient(145deg, #E8D48B 0%, #C6A84B 50%, #A8872A 100%);
    color: #1a1a2e;
    box-shadow:
        0 8px 24px rgba(198,168,75,0.5),
        0 1px 0 rgba(255,255,255,0.3) inset;
    transform: translateY(-3px);
}

/* --- ORDER CONFIRMATION luxury --- */
.order-confirmation .confirmation-icon i {
    color: var(--gold);
    filter: drop-shadow(0 4px 12px rgba(198,168,75,0.3));
}

.order-details-box {
    border: 1px solid rgba(198,168,75,0.2);
    box-shadow: var(--shadow-emboss);
    background: rgba(198,168,75,0.03);
}

/* --- WISHLIST BUTTON luxury --- */
.wishlist-btn {
    border: 1px solid rgba(198,168,75,0.2);
    box-shadow: var(--shadow);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* --- ALERTS luxury --- */
.alert {
    box-shadow: var(--shadow-emboss);
    border-radius: var(--radius);
}

/* --- QUANTITY SELECTOR luxury --- */
.qty-selector button {
    background: linear-gradient(145deg, var(--bg-alt), var(--white));
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.8) inset;
}

.qty-selector button:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
    color: #1a1a2e;
}

/* --- GOLD SHIMMER animation --- */
@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.section-label {
    background-size: 200% auto;
    animation: goldShimmer 4s linear infinite;
}

/* --- SCROLLBAR luxury --- */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 5px;
    border: 2px solid var(--bg-alt);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

/* --- SELECTION highlight luxury --- */
::selection {
    background: rgba(198,168,75,0.2);
    color: var(--text);
}

/* --- HERO fallback luxury --- */
.hero-fallback {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3b13 60%, #1B5E20 100%);
}

/* --- ABOUT TEXT section header left-aligned gold line --- */
.about-text .section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0.75rem 0 0;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(198,168,75,0.3);
}

/* --- BLOG CARDS embossed --- */
.blog-card,
.post-card {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
}

.blog-card:hover,
.post-card:hover {
    box-shadow: var(--shadow-emboss-lg);
    border-color: rgba(198,168,75,0.25);
    transform: translateY(-6px);
}

/* --- PLANTS CARDS embossed --- */
.plant-card {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
}

.plant-card:hover {
    box-shadow: var(--shadow-emboss-lg);
    border-color: rgba(198,168,75,0.25);
}

/* --- CONTACT FORM luxury --- */
.contact-form {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss-lg);
}

/* --- TABLE luxury styling --- */
table {
    border: 1px solid rgba(198,168,75,0.1);
    box-shadow: var(--shadow-emboss);
    overflow: hidden;
    border-radius: var(--radius);
}

table thead {
    background: linear-gradient(135deg, rgba(198,168,75,0.08), rgba(198,168,75,0.02));
}

table thead th {
    font-family: var(--font-serif);
    letter-spacing: 0.03em;
    border-bottom: 2px solid rgba(198,168,75,0.15);
}

/* --- PRODUCT PAGE TABS luxury --- */
.product-tabs .tab-btn {
    border-bottom: 3px solid transparent;
    font-family: var(--font-serif);
}

.product-tabs .tab-btn.active,
.product-tabs .tab-btn:hover {
    border-bottom-color: var(--gold);
    color: var(--gold-dark);
}

/* ----------------------------------------------------------
   99. COMPREHENSIVE RESPONSIVE POLISH
   Professional mobile-first adjustments for all sections
   ---------------------------------------------------------- */

/* ===== TABLET (max-width: 1023px) ===== */
@media (max-width: 1023px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-summary {
        position: static;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .treatment-card:hover,
    .product-card:hover,
    .blog-card:hover,
    .plant-card:hover {
        transform: translateY(-4px);
    }

    .treatment-card:hover {
        box-shadow: var(--shadow-md);
    }

    .product-card:hover {
        box-shadow: var(--shadow-md);
    }
}

/* ===== MOBILE (max-width: 767px) ===== */
@media (max-width: 767px) {
    /* --- Typography scaling --- */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.1rem; }

    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.75rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* --- Page header --- */
    .page-header {
        padding: 2.5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header h1::after {
        width: 40px;
        height: 2px;
        margin: 0.5rem auto 0;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    /* --- About section --- */
    .about-grid {
        gap: 1.5rem;
    }

    .about-image::before {
        top: 8px;
        left: 8px;
        right: -8px;
        bottom: -8px;
    }

    .about-badge {
        padding: 0.625rem 0.875rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .about-feature {
        padding: 0.625rem 0.875rem;
    }

    /* --- Treatment cards --- */
    .treatment-card {
        padding: 1.5rem 1.25rem;
    }

    .treatment-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    /* --- Treatment detail --- */
    .treatment-detail {
        padding: 1.5rem 0;
    }

    .treatment-intro {
        font-size: 1rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    /* --- Product cards --- */
    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 0.95rem;
    }

    /* --- Product detail page --- */
    .product-detail {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .product-price-lg {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .gallery-thumb {
        width: 56px;
        height: 56px;
    }

    .product-tabs .tab-btn {
        font-size: 0.85rem;
        padding: 0.625rem 0.75rem;
    }

    /* --- Stats section --- */
    .section.stats-section {
        padding: 2.5rem 0;
    }

    .stats-grid {
        gap: 1.25rem;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
        font-size: 1.125rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    /* --- CTA section --- */
    .cta-content {
        padding: 2rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-items {
        flex-direction: column;
        gap: 0.625rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    /* --- Blog / Posts --- */
    .blog-card .blog-content {
        padding: 1rem;
    }

    .post-detail {
        padding: 1.5rem 0;
    }

    .post-content {
        font-size: 0.95rem;
    }

    .post-content blockquote {
        padding: 0.75rem 1rem;
        margin: 1rem 0;
    }

    /* --- Herbal garden --- */
    .plant-card {
        aspect-ratio: 4 / 5;
    }

    /* --- Contact --- */
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    /* --- Cart --- */
    .cart-layout {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .cart-summary {
        padding: 1.25rem;
    }

    .cart-summary h3 {
        font-size: 1.125rem;
    }

    .cart-actions {
        flex-direction: column;
    }

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

    /* --- Checkout --- */
    .checkout-layout {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .checkout-form {
        padding: 0;
    }

    .checkout-summary {
        padding: 1.5rem;
        border-radius: var(--radius);
    }

    .checkout-form h2,
    .checkout-summary h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .summary-item-name {
        font-size: 0.8125rem;
    }

    .order-confirmation {
        padding: 2rem 1rem;
    }

    .order-confirmation h2 {
        font-size: 1.5rem;
    }

    .confirmation-icon {
        font-size: 3rem;
    }

    .order-details-box {
        padding: 1.25rem;
    }

    .confirmation-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .bank-details-box {
        padding: 1rem;
    }

    .bank-details-table td {
        padding: 0.375rem 0.5rem;
        font-size: 0.85rem;
    }

    /* --- Payment methods --- */
    .payment-option {
        padding: 1rem;
    }

    .payment-option-header {
        gap: 0.5rem;
    }

    .payment-option-label {
        font-size: 0.9rem;
    }

    .payment-option-note {
        font-size: 0.8rem;
    }

    /* --- Discount input --- */
    .discount-input-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .discount-input-row .btn {
        width: 100%;
    }

    /* --- Achievements --- */
    .achievement-card {
        padding: 1.25rem;
    }

    /* --- Footer luxury --- */
    .footer .container {
        padding-top: 2rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding-top: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    /* --- Sidebar --- */
    .sidebar-card {
        padding: 1.25rem;
    }

    .sidebar-card h3 {
        font-size: 1rem;
    }

    /* --- Forms --- */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.8125rem;
    }

    /* --- Alerts --- */
    .alert {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }

    /* --- Filter bar --- */
    .filter-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-bar .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
    }

    /* --- Pagination --- */
    .pagination {
        gap: 0.375rem;
    }

    .pagination a,
    .pagination span {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    /* --- Tables --- */
    .content-body table,
    .post-content table {
        font-size: 0.85rem;
    }

    .content-body th,
    .post-content th,
    .content-body td,
    .post-content td {
        padding: 0.5rem 0.625rem;
    }

    /* --- Luxury overrides --- */
    .about-image {
        border-width: 2px;
    }

    .product-detail-image {
        border-width: 2px;
    }

    .review-card::before {
        font-size: 2.5rem;
    }

    /* --- Buttons --- */
    .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    /* --- Empty state --- */
    .empty-state {
        padding: 2.5rem 1.5rem;
    }

    .empty-state i {
        font-size: 2.5rem;
    }

    .empty-state h2 {
        font-size: 1.25rem;
    }

    /* --- Scrollbar thinner on mobile --- */
    ::-webkit-scrollbar {
        width: 6px;
    }

    /* --- Choose grid --- */
    .choose-item {
        padding: 1.5rem 1rem;
    }

    .choose-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    /* --- Mission/Vision cards --- */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mv-card {
        padding: 1.5rem;
    }

    /* --- About content --- */
    .about-content {
        max-width: 100%;
    }

    .about-story {
        padding: 2rem 0;
    }

    /* --- Toast --- */
    .toast {
        left: 1rem;
        right: 1rem;
        min-width: auto;
        max-width: none;
    }
}

/* ===== SMALL PHONES (max-width: 480px) ===== */
@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }

    .container {
        padding: 0 0.875rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .section-header.text-center h2::after {
        width: 40px;
        margin: 0.5rem auto 0;
    }

    /* --- Page header --- */
    .page-header {
        padding: 2rem 0 1.5rem;
    }

    .page-header h1 {
        font-size: 1.25rem;
    }

    /* --- Hero slider --- */
    .slide-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 0.875rem;
    }

    .slide-label {
        font-size: 0.65rem;
    }

    .btn-slide-primary,
    .btn-slide-outline {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
    }

    .slide-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .slide-actions a {
        text-align: center;
    }

    .slide-bottom-nav {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .slide-counter {
        gap: 0.25rem;
    }

    .counter-current {
        font-size: 1.25rem;
    }

    .counter-total {
        font-size: 0.7rem;
    }

    .slide-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .slide-vertical-text {
        display: none;
    }

    /* --- Stats section --- */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* --- Treatment cards --- */
    .treatment-card {
        padding: 1.25rem 1rem;
    }

    .treatment-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    /* --- Product detail --- */
    .product-detail {
        padding: 1rem 0;
        gap: 1.25rem;
    }

    .product-placeholder-lg {
        height: 280px;
    }

    .gallery-thumb {
        width: 48px;
        height: 48px;
    }

    /* --- Checkout --- */
    .checkout-summary {
        padding: 1.25rem;
    }

    .checkout-form h2,
    .checkout-summary h2 {
        font-size: 1.1rem;
    }

    .order-confirmation {
        padding: 1.5rem 0.75rem;
    }

    .order-confirmation h2 {
        font-size: 1.25rem;
    }

    .confirmation-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .order-details-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .bank-details-table td {
        padding: 0.25rem 0.375rem;
        font-size: 0.8rem;
    }

    /* --- Cart --- */
    .cart-table tr {
        padding: 1rem;
    }

    .cart-thumb {
        width: 56px;
        height: 56px;
    }

    .cart-product-title {
        font-size: 0.875rem;
    }

    .cart-summary {
        padding: 1rem;
    }

    /* --- Footer --- */
    .footer .container {
        padding-top: 1.5rem;
    }

    .footer-col h4::after {
        width: 30px;
    }

    /* --- Contact --- */
    .contact-form {
        padding: 1.25rem;
    }

    /* --- Blog --- */
    .blog-card .blog-content {
        padding: 0.875rem;
    }

    .post-detail {
        padding: 1rem 0;
    }

    /* --- Achievements --- */
    .achievement-card {
        padding: 1rem;
    }

    /* --- CTA section --- */
    .cta-content h2 {
        font-size: 1.25rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    /* --- Choose section --- */
    .choose-item {
        padding: 1.25rem 0.875rem;
    }

    /* --- About --- */
    .about-image::before {
        top: 6px;
        left: 6px;
        right: -6px;
        bottom: -6px;
    }

    .about-feature span {
        font-size: 0.85rem;
    }

    /* --- Qty selector --- */
    .qty-selector button {
        width: 32px;
        height: 32px;
    }

    .qty-selector input {
        width: 40px;
        height: 32px;
    }

    /* --- Payment --- */
    .payment-option {
        padding: 0.875rem;
    }

    .payment-option-header i {
        font-size: 1rem;
    }

    /* --- Back to top --- */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ===== EXTRA-SMALL PHONES (max-width: 360px) ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .slide-content h1 {
        font-size: 1.25rem;
    }

    .slide-bottom-nav {
        padding: 0.5rem 0.75rem;
    }

    .stats-grid {
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.75rem;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-info h3 {
        font-size: 0.85rem;
    }

    .checkout-summary {
        padding: 1rem;
    }

    .cart-summary {
        padding: 0.875rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .treatment-card:hover,
    .product-card:hover,
    .blog-card:hover,
    .plant-card:hover,
    .choose-item:hover,
    .about-feature:hover,
    .achievement-card:hover {
        transform: none;
        box-shadow: var(--shadow);
    }

    .btn:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .btn-secondary:hover {
        transform: none;
    }

    .back-to-top:hover {
        transform: none;
    }
}

/* ----------------------------------------------------------
   100. MOBILE APP BOTTOM NAVIGATION
   ---------------------------------------------------------- */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px) saturate(1.8);
        -webkit-backdrop-filter: blur(20px) saturate(1.8);
        border-top: 1px solid rgba(198,168,75,0.15);
        box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        transition: transform 0.3s var(--ease);
    }

    .mobile-bottom-nav.hidden {
        transform: translateY(100%);
    }

    .bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 8px 4px 6px;
        font-size: 0.625rem;
        font-weight: 600;
        color: var(--text-light);
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: color 0.2s var(--ease);
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .bottom-nav-item i {
        font-size: 1.125rem;
        transition: transform 0.2s var(--ease);
    }

    .bottom-nav-item.active {
        color: var(--primary);
    }

    .bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 3px;
        background: var(--gold-gradient);
        border-radius: 0 0 3px 3px;
    }

    .bottom-nav-item.active i {
        transform: scale(1.1);
    }

    .bottom-nav-item:active i {
        transform: scale(0.9);
    }

    /* Cart icon with badge */
    .bottom-nav-cart-icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-nav-badge {
        position: absolute;
        top: -6px;
        right: -10px;
        min-width: 16px;
        height: 16px;
        background: var(--danger);
        color: var(--white);
        font-size: 0.6rem;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 3px;
        line-height: 1;
        box-shadow: 0 1px 4px rgba(220,38,38,0.4);
    }

    /* Add padding to body so content isn't hidden behind nav */
    body {
        padding-bottom: 60px;
    }

    /* Adjust back-to-top position */
    .back-to-top {
        bottom: 72px;
    }

    /* Adjust BizChat position */
    .bizchat-widget {
        bottom: 72px !important;
    }
}

/* ----------------------------------------------------------
   101. MORE MENU BOTTOM SHEET
   ---------------------------------------------------------- */
.more-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0);
    visibility: hidden;
    transition: background 0.3s var(--ease), visibility 0.3s;
}

.more-menu-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.more-menu-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 0 1.25rem 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-bounce);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
    max-height: 70vh;
    overflow-y: auto;
}

.more-menu-overlay.active .more-menu-sheet {
    transform: translateY(0);
}

.more-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 0.75rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
    position: sticky;
    top: 0;
    background: var(--white);
}

.more-menu-header h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin: 0;
}

.more-menu-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
}

.more-menu-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.875rem;
    transition: all 0.2s var(--ease);
}

.more-menu-close:hover {
    background: var(--border);
    color: var(--text);
}

.more-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.more-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.more-menu-item:active {
    transform: scale(0.95);
    background: var(--bg-alt);
}

.more-menu-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: linear-gradient(145deg, var(--primary-ultra-light), #d4edda);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(27,94,32,0.1);
    transition: all 0.2s var(--ease);
}

.more-menu-icon-wa {
    background: linear-gradient(145deg, #dcf8c6, #c5e1a5);
    color: #25d366;
}

.more-menu-item:active .more-menu-icon {
    transform: scale(0.92);
}

/* ----------------------------------------------------------
   102. BIZCHAT WHATSAPP WIDGET
   ---------------------------------------------------------- */
.bizchat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.bizchat-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    box-shadow:
        0 4px 16px rgba(37,211,102,0.35),
        0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s var(--ease);
    -webkit-tap-highlight-color: transparent;
    z-index: 2;
}

.bizchat-fab * {
    pointer-events: none;
}

.bizchat-fab:hover {
    transform: scale(1.08);
    box-shadow:
        0 6px 24px rgba(37,211,102,0.45),
        0 2px 4px rgba(0,0,0,0.15);
}

.bizchat-fab:active {
    transform: scale(0.95);
}

.bizchat-fab-close {
    display: none;
    font-size: 1.25rem;
}

.bizchat-widget.open .bizchat-fab-icon {
    display: none;
}

.bizchat-widget.open .bizchat-fab-close {
    display: block;
}

.bizchat-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: bizchatPulse 2s ease-out infinite;
}

.bizchat-widget.open .bizchat-fab-pulse {
    display: none;
}

@keyframes bizchatPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Chat popup */
.bizchat-popup {
    width: 340px;
    max-width: calc(100vw - 48px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow:
        0 12px 48px rgba(0,0,0,0.15),
        0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: all 0.3s var(--ease-bounce);
}

.bizchat-widget.open .bizchat-popup {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.bizchat-popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #075e54, #128c7e);
    color: white;
}

.bizchat-popup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bizchat-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bizchat-popup-info {
    flex: 1;
    min-width: 0;
}

.bizchat-popup-info strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
}

.bizchat-popup-info span {
    font-size: 0.7rem;
    opacity: 0.85;
}

.bizchat-popup-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.2s;
}

.bizchat-popup-close:hover {
    color: white;
}

.bizchat-popup-body {
    padding: 16px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23d4cfc4' opacity='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23p)'/%3E%3C/svg%3E");
    min-height: 80px;
}

.bizchat-message {
    background: white;
    border-radius: 0 12px 12px 12px;
    padding: 10px 14px;
    max-width: 85%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.bizchat-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid white;
    border-left: 8px solid transparent;
}

.bizchat-message p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    color: var(--text);
}

.bizchat-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: var(--text-light);
    margin-top: 4px;
}

.bizchat-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s var(--ease);
}

.bizchat-send-btn:hover {
    background: #1da851;
    color: white;
}

.bizchat-send-btn i {
    font-size: 1.25rem;
}

/* Mobile adjustments for BizChat */
@media (max-width: 480px) {
    .bizchat-widget {
        right: 16px;
        bottom: 16px;
    }

    .bizchat-fab {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    .bizchat-popup {
        width: calc(100vw - 32px);
        max-width: none;
        right: 0;
        position: fixed;
        bottom: 70px;
    }
}

@media (max-width: 1023px) {
    .bizchat-widget {
        bottom: 72px;
        right: 16px;
    }

    .bizchat-popup {
        position: fixed;
        bottom: 130px;
        right: 16px;
    }
}

/* ----------------------------------------------------------
   END OF STYLESHEET
   ---------------------------------------------------------- */
