/* ================================================
   Luxury Herbal Wellness - Premium Design System
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --green: #2d6a4f;
    --green-deep: #1b4332;
    --green-light: #52b788;
    --green-pale: #d8f3dc;
    --dark: #1a1a2e;
    --dark-soft: #2d2d44;
    --text: #2d3436;
    --text-muted: #6c757d;
    --cream: #faf9f6;
    --white: #ffffff;
    --border: #e8e5e0;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-deeper: #14532d;
    --accent: #52b788;
    --accent-warm: #40916c;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;
    --bg: #faf9f6;
    --card-bg: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
    --shadow: 0 4px 20px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
    --shadow-glow: 0 0 30px rgba(45,106,79,.15);
    --transition: .35s cubic-bezier(.4,0,.2,1);
    --transition-bounce: .5s cubic-bezier(.68,-.55,.265,1.55);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; }
a { color: var(--green); transition: color var(--transition); text-decoration: none; }
a:hover { color: var(--green-deep); }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ---------- Animations ---------- */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown  { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn      { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn     { from { opacity:0; transform:scale(.92); } to { opacity:1; transform:scale(1); } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight{ from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse       { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
@keyframes float       { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes shimmer     { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
@keyframes ripple      { from { transform:scale(0); opacity:.6; } to { transform:scale(4); opacity:0; } }
@keyframes bounceIn    { 0% { transform:scale(.3); opacity:0; } 50% { transform:scale(1.05); } 70% { transform:scale(.9); } 100% { transform:scale(1); opacity:1; } }
@keyframes scrollStrip { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }

/* Reveal animation (JS-driven) */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.float-anim { animation: float 4s ease-in-out infinite; }

/* ---------- Navbar ---------- */
.navbar {
    padding: .75rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(26,26,46,.7) !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: all var(--transition);
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(26,26,46,.95) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
    padding: .5rem 0;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #fff !important;
}
.navbar-brand .brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: #fff;
    box-shadow: 0 4px 12px rgba(45,106,79,.3);
}
.navbar .nav-link {
    font-weight: 500;
    font-size: .88rem;
    padding: .5rem 1rem !important;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    color: rgba(255,255,255,.75) !important;
}
.navbar .nav-link:hover { background: rgba(255,255,255,.08); color: #fff !important; }
.navbar .nav-link.active { color: var(--gold) !important; }
.navbar .nav-link.active::after {
    content: ''; display: block;
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 2px auto 0;
}
.nav-btn {
    padding: .45rem 1.2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: .85rem !important;
    transition: all var(--transition) !important;
}
.nav-btn-outline {
    border: 1.5px solid rgba(255,255,255,.3) !important;
    color: #fff !important;
}
.nav-btn-outline:hover {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.6) !important;
    transform: translateY(-1px);
}
.nav-btn-glow {
    background: linear-gradient(135deg, var(--gold), #b8923e) !important;
    color: var(--dark) !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(201,168,76,.3);
}
.nav-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,.4);
}

/* ---------- Section Common ---------- */
.section       { padding: 6rem 0; }
.section-sm    { padding: 4rem 0; }
.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .75rem;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: .5rem;
}
.section-title::after { display: none; }
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.divider {
    width: 50px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
}
.divider-left { margin-left: 0; }

/* ---------- HERO ---------- */
:root {
    --navbar-h: 62px;   /* fixed navbar height — adjust if navbar size changes */
}
.hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-h));
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--dark) 0%, #16213e 50%, var(--dark-soft) 100%);
    overflow: hidden;
    padding: 5rem 0 4rem;
    margin-top: var(--navbar-h);   /* push hero below fixed navbar — full image visible */
}
.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
    pointer-events: none;
}
.hero-bg-circle.c1 { width: 600px; height: 600px; background: var(--green); top: -200px; right: -100px; }
.hero-bg-circle.c2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -100px; }
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { color: #fff; }
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 1.5rem;
}
.hero-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.hero-stat .lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.45);
    margin-top: .15rem;
}

/* Hero image card */
.hero-image-wrap { position: relative; }
.hero-image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.hero-image-card img { width: 100%; height: 440px; object-fit: cover; display: block; }
.hero-badge {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}
.hero-glass-tag {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    padding: .75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: .78rem;
    line-height: 1.4;
}
.hero-glass-tag strong { display: block; font-size: .85rem; }

/* Hero slider (dynamic slides from admin) */
.hero-slider-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-slide-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}
.hero-slide-item.active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* Subtle gradient for text readability */
    background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.1) 100%);
    z-index: 1;
}
@media (max-width: 768px) {
    .hero-slide-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.6) 100%);
    }
}
.hero-slide-item .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-slide-item .hero-inner { grid-template-columns: 1fr; }
.hero-slide-item .hero-content h1 { max-width: 700px; }
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}
.hero-slider-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.1); }
.hero-slider-prev { left: 2rem; }
.hero-slider-next { right: 2rem; }
.hero-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .5rem;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all var(--transition);
}
.hero-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(201,168,76,.5);
}

/* ---------- MARQUEE STRIP ---------- */
.strip {
    background: var(--green-deep);
    padding: .85rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.strip-inner { display: inline-flex; animation: scrollStrip 30s linear infinite; }
.strip-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0 2.5rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.7);
}
.strip-item i { color: var(--gold); }

/* ---------- FEATURES ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.features-grid .feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.features-grid .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.features-grid .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px;
    background: var(--gold);
    transition: width var(--transition);
    border-radius: 0 0 3px 3px;
}
.features-grid .feature-card:hover::before { width: 60px; }
.features-grid .feature-icon { font-size: 2.2rem; margin-bottom: 1.25rem; display: block; }
.features-grid .feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; color: var(--dark); }
.features-grid .feature-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ---------- ABOUT GRID ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    width: 85%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-img-accent {
    position: absolute;
    bottom: -2rem; right: 0;
    width: 55%;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}
.about-content .section-title { font-size: 2rem; }
.about-content > p { color: var(--text-muted); line-height: 1.8; }
.about-points { display: flex; flex-direction: column; gap: 1.5rem; }
.about-point { display: flex; gap: 1rem; }
.about-point-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 12px;
    background: var(--green-pale);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.about-point-text h5 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; color: var(--dark); }
.about-point-text p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .75rem;
    transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-body { padding: 1.25rem; }
.product-category {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-bottom: .4rem;
}
.product-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--dark); }
.product-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .75rem; }
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: .75rem;
    margin-top: .5rem;
}
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--green-deep); }
.product-price span { font-size: .72rem; font-weight: 400; color: var(--text-muted); }
.product-stars { font-size: .7rem; color: var(--gold); margin-top: .15rem; }

/* ---------- BENEFITS SECTION ---------- */
.benefits {
    background: linear-gradient(160deg, var(--dark) 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}
.benefits::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,106,79,.15), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.benefits .section-subtitle { color: rgba(255,255,255,.5); }
.benefits .divider { background: var(--gold); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}
.benefit-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}
.benefit-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
    border-color: rgba(201,168,76,.3);
}
.benefit-num {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .75rem;
    letter-spacing: 1px;
}
.benefit-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.benefit-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote {
    font-size: 4rem;
    font-weight: 800;
    color: var(--green-pale);
    line-height: .8;
    margin-bottom: .5rem;
    font-family: Georgia, serif;
}
.testi-text {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}
.testi-stars { color: var(--gold); font-size: .8rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-pale);
}
.testi-name { font-weight: 700; font-size: .85rem; color: var(--dark); }
.testi-role { font-size: .72rem; color: var(--text-muted); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--green-deep), var(--green));
    border-radius: var(--radius);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.15), transparent 60%);
    pointer-events: none;
}
.cta-banner .section-label { color: var(--gold-light); }
.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative; z-index: 1;
}
.cta-banner p {
    color: rgba(255,255,255,.7);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: .95rem;
    position: relative; z-index: 1;
}

/* ---------- PACKAGES ---------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card.featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-glow);
}
.package-popular {
    position: absolute;
    top: -1px; right: 20px;
    background: linear-gradient(135deg, var(--gold), #b8923e);
    color: var(--dark);
    font-size: .65rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.package-card h4 { font-weight: 700; margin-bottom: 1rem; }
.package-price { font-size: 2.4rem; font-weight: 800; color: var(--green-deep); margin-bottom: .75rem; }
.package-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.package-features { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
.package-features li {
    padding: .4rem 0;
    font-size: .85rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.package-features li i { color: var(--green); margin-right: .5rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 35vh;
    margin-top: -76px;
    padding-top: 76px;
    display: flex; align-items: center;
    background: linear-gradient(160deg, var(--dark) 0%, #16213e 50%, var(--dark-soft) 100%);
    text-align: center;
    color: #fff;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--cream));
}
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }
.page-hero h1 i { color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    padding: .75rem 1.8rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: #fff;
    box-shadow: 0 4px 15px rgba(45,106,79,.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,106,79,.35);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.8);
}
.btn-outline:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
    color: #fff;
    transform: translateY(-2px);
}
.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff;
    box-shadow: 0 4px 15px rgba(45,106,79,.2);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,106,79,.3);
    color: #fff;
}
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff; border: none;
}
.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff; border: none;
}
.btn-warning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--dark); border: none;
}
.btn-outline-primary {
    border: 1.5px solid var(--green);
    color: var(--green);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- CARDS (Global) ---------- */
.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-header { background: var(--white); border-bottom: 1px solid var(--border); font-weight: 600; }

/* Feature card (inner pages) */
.feature-card {
    position: relative; border: none; text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1rem;
    transition: all var(--transition); position: relative;
}
.feature-icon.gradient-1 { background: linear-gradient(135deg, rgba(45,106,79,.12), rgba(45,106,79,.04)); color: var(--green); }
.feature-icon.gradient-2 { background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(16,185,129,.04)); color: var(--success); }
.feature-icon.gradient-3 { background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(6,182,212,.04)); color: var(--info); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }

/* Income card */
.income-card {
    border: none; padding: 1.2rem; text-align: center;
    position: relative; overflow: hidden;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.income-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.income-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0); transition: transform var(--transition);
}
.income-card:hover::after { transform: scaleX(1); }
.income-card .income-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(45,106,79,.1), rgba(45,106,79,.03));
    color: var(--green); font-size: 1rem; margin-bottom: .75rem;
    transition: all var(--transition);
}
.income-card:hover .income-icon { transform: translateY(-3px); }

/* Stat card */
.stat-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1.25rem; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); transition: all var(--transition);
    position: relative; overflow: hidden;
}
.stat-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(45,106,79,.06), transparent);
}
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card .stat-icon {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; position: relative; z-index: 1;
}
.stat-card .stat-value { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; }
.stat-card .stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

/* Collection card */
.collection-card {
    position: relative; border-radius: var(--radius);
    padding: 2rem 1.5rem; background: var(--white);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    overflow: hidden; text-decoration: none; display: block; color: var(--text);
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--text); }
.collection-card .coll-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem; transition: all var(--transition);
}
.collection-card:hover .coll-icon { transform: scale(1.1) rotate(-5deg); }
.collection-card .coll-arrow {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream); color: var(--text-muted); font-size: .75rem;
    transition: all var(--transition);
}
.collection-card:hover .coll-arrow { background: var(--green); color: #fff; transform: translateX(3px); }

/* ---------- Badges / Tables / Forms / Alerts / Modals ---------- */
.badge { font-weight: 600; border-radius: 6px; padding: .35em .65em; font-size: .72rem; letter-spacing: .3px; }
.table th { font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.table td { vertical-align: middle; font-size: .85rem; }
.table-hover tbody tr { transition: background var(--transition); }
.table-hover tbody tr:hover { background: rgba(45,106,79,.03); }
.form-control, .form-select { border-radius: var(--radius-xs); border: 1.5px solid var(--border); transition: all var(--transition); font-size: .9rem; }
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,.1); }
.form-label { font-weight: 600; font-size: .82rem; color: var(--text); }
.input-group-text { border-radius: var(--radius-xs); background: var(--cream); border-color: var(--border); }
.alert { border-radius: var(--radius-xs); border: none; font-size: .85rem; animation: fadeInDown .4s ease both; }
.alert-success { background: #ecfdf5; color: #065f46; border-left: 4px solid var(--success); }
.alert-danger  { background: #fef2f2; color: #991b1b; border-left: 4px solid var(--danger); }
.alert-warning { background: #fffbeb; color: #92400e; border-left: 4px solid var(--warning); }
.alert-info    { background: #ecfeff; color: #155e75; border-left: 4px solid var(--info); }
.modal-content { border: none; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.modal-header { border-bottom: 1px solid var(--border); }
.modal-footer { border-top: 1px solid var(--border); }

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(180deg, var(--dark), #111122);
    color: rgba(255,255,255,.6);
    position: relative;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.site-footer h5, .site-footer h6 { color: #fff; }
.site-footer a { color: rgba(255,255,255,.5); text-decoration: none; transition: all var(--transition); display: inline-block; }
.site-footer a:hover { color: var(--gold); transform: translateX(3px); }
.footer-brand { font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; gap: .6rem; }
.footer-brand .brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
    font-size: .85rem; transition: all var(--transition); margin-right: .4rem;
}
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; margin-top: 2rem; }

/* ---------- Tree ---------- */
.tree-node { position: relative; padding: 10px 14px; border-radius: var(--radius-xs); background: var(--white); border: 2px solid var(--border); transition: all var(--transition); }
.tree-node:hover { border-color: var(--green); box-shadow: var(--shadow-glow); transform: translateX(3px); }
.tree-node.active { border-color: var(--success); background: #f0fdf4; }
.tree-node.inactive { border-color: var(--warning); background: #fffbeb; }
.tree-children { position: relative; padding-left: 30px; }
.tree-children::before { content:''; position:absolute; left:15px; top:0; bottom:20px; width:2px; background: var(--border); }
.tree-children .tree-item::before { content:''; position:absolute; left:-15px; top:15px; width:15px; height:2px; background: var(--border); }
.tree-children .tree-item { position: relative; margin-bottom: 4px; }

/* ---------- Auth pages ---------- */
.auth-bg {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--dark) 0%, #16213e 50%, var(--dark-soft) 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    position: relative; overflow: hidden;
}
.auth-bg::before {
    content: ''; position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,106,79,.15), transparent 60%);
    border-radius: 50%;
    animation: floatSlow 18s ease-in-out infinite alternate;
}
.auth-bg::after {
    content: ''; position: absolute;
    bottom: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.1), transparent 60%);
    border-radius: 50%;
    animation: floatSlow 14s ease-in-out infinite alternate-reverse;
}
.auth-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%; max-width: 460px;
    position: relative; z-index: 1;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}
.auth-card .form-control {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    border-radius: 12px;
    padding: .75rem 1rem;
}
.auth-card .form-control:focus {
    background: rgba(255,255,255,.1);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,106,79,.15);
    color: #fff;
}
.auth-card .form-control::placeholder { color: rgba(255,255,255,.3); }
.auth-card .form-label { color: rgba(255,255,255,.85); }
.auth-card .form-label .text-muted { color: rgba(255,255,255,.5) !important; }
.auth-card h4, .auth-card h5 { color: #fff; }
.auth-card .text-muted { color: rgba(255,255,255,.5) !important; }
.auth-card p { color: rgba(255,255,255,.7); }
.auth-card .form-check-label { color: rgba(255,255,255,.75); }
.auth-card .form-check-label strong { color: #fff; }
.auth-card .form-check-input { background-color: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.auth-card .form-check-input:checked { background-color: var(--green); border-color: var(--green); }
.auth-card .form-select { background-color: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #fff; border-radius: 12px; padding: .75rem 1rem; }
.auth-card .form-select:focus { background-color: rgba(255,255,255,.1); border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,.15); }
.auth-card .form-select option { background: #1a1a2e; color: #fff; }
.auth-card input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }
.auth-card a { color: var(--gold); }
.auth-card a:hover { color: var(--gold-light); }
.auth-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    font-size: 1.4rem; color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(45,106,79,.3);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--green), var(--green-deep)); border-radius: 10px; }

/* ---------- Utilities ---------- */
.text-gradient {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-gradient-primary { background: linear-gradient(135deg, var(--green), var(--green-light)); }
.glass { background: rgba(255,255,255,.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.08); }
.hover-lift { transition: transform var(--transition), box-shadow var(--transition); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.z-1 { position: relative; z-index: 1; }
.fw-800 { font-weight: 800; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.text-green { color: var(--green); }

/* ---------- Admin sidebar ---------- */
.admin-sidebar { background: linear-gradient(180deg, var(--dark), #111122); min-height: 100vh; padding-top: 1rem; }
.admin-sidebar .nav-link { color: rgba(255,255,255,.6); padding: .6rem 1.2rem; border-radius: var(--radius-xs); transition: all var(--transition); font-size: .85rem; display: flex; align-items: center; gap: .6rem; }
.admin-sidebar .nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.admin-sidebar .nav-link.active { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-deep)); box-shadow: 0 4px 15px rgba(45,106,79,.3); }
.admin-sidebar .nav-link i { width: 20px; text-align: center; }

/* User sidebar */
.user-sidebar { background: var(--white); border-right: 1px solid var(--border); min-height: 100vh; padding-top: 1rem; }
.user-sidebar .nav-link { color: var(--text); padding: .6rem 1.2rem; border-radius: var(--radius-xs); transition: all var(--transition); font-size: .85rem; }
.user-sidebar .nav-link:hover { color: var(--green); background: rgba(45,106,79,.04); }
.user-sidebar .nav-link.active { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-deep)); }

/* Contact (inner page) */
.contact-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); padding: 2rem;
    text-align: center; transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card .icon-box {
    width: 60px; height: 60px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(45,106,79,.1), rgba(45,106,79,.03));
    color: var(--green); transition: all var(--transition);
}
.contact-card:hover .icon-box { transform: scale(1.1) rotate(-5deg); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrap { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-images { max-width: 400px; margin: 0 auto; }
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { padding: 3rem 1.5rem; }
    .cta-banner h2 { font-size: 1.6rem; }
    .section-title { font-size: 2rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar-collapse { background: var(--dark); border-radius: var(--radius); padding: 1rem; margin-top: .5rem; }
}
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.6rem; }

    /* Hero: height = 9/16 × viewport width → shows full 1920×1080 image, no crop */
    .hero {
        min-height: 56.25vw;   /* 9 ÷ 16 × 100 = 56.25% of screen width */
        max-height: 56.25vw;
        padding: 0;
        margin-top: var(--navbar-h);   /* keep below navbar on tablet too */
    }
    .hero-slide-item {
        background-size: 100% auto;   /* scale to full width, auto height — no crop */
        background-position: center top;
    }
    .hero-slide-item .container {
        align-items: flex-end;   /* push content to bottom of image */
        padding-top: 4rem;
        padding-bottom: 1.25rem;
    }
    .hero-content h1 { font-size: 1.8rem; word-break: break-word; overflow-wrap: break-word; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .page-hero { min-height: 28vh; }
    .page-hero h1 { font-size: 1.8rem; }
    .hero-slider-btn { display: none; }
    .auth-card { padding: 1.5rem; }
    /* Fix about accent image overflow on tablet */
    .about-images { padding-bottom: 3rem; }
    .about-img-accent { bottom: 0; }
}
@media (max-width: 576px) {
    .container { padding-left: .9rem; padding-right: .9rem; }

    /* ── Hero: full 1920×1080 image, no crop on small phones ── */
    .hero {
        min-height: 56.25vw;   /* exact 16:9 ratio — full image, zero crop */
        max-height: 56.25vw;
        padding: 0;
        margin-top: var(--navbar-h);   /* below navbar on phones */
    }
    .hero-slide-item {
        background-size: 100% auto;
        background-position: center top;
    }
    .hero-slide-item .container {
        align-items: flex-end;
        padding-top: 4rem;
        padding-bottom: 1rem;
    }
    .hero-content h1 {
        font-size: 1.35rem;
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin-bottom: .5rem;
    }
    /* Buttons side-by-side, wrapping if needed */
    .hero-actions { flex-direction: row; flex-wrap: wrap; width: 100%; gap: .4rem; margin-bottom: .6rem; }
    .hero-actions .btn { flex: 1 1 110px; justify-content: center; font-size: .75rem; padding: .5rem .7rem; width: auto; }
    /* Hero stats: horizontal 3-column grid */
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; text-align: center; }
    .hero-stat .num { font-size: 1.1rem; }
    .hero-stat .lbl { font-size: .55rem; letter-spacing: .4px; }

    /* ── About images ── */
    .about-images { padding-bottom: 2.75rem; min-height: 220px; }
    .about-img-main { width: 78%; }
    .about-img-accent { bottom: 0; right: 0; width: 42%; border-width: 3px; }

    /* ── Products: 2-col on mobile ── */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
    .product-img-wrap { height: 145px; }
    .product-body { padding: .75rem .65rem; }
    .product-body h4 { font-size: .82rem; margin-bottom: .2rem; }
    .product-body > p { display: none; }
    .product-price { font-size: .9rem; }
    .product-footer .btn { padding: .35rem .6rem; font-size: .7rem; }

    /* ── Packages ── */
    .packages-grid { grid-template-columns: 1fr; max-width: 100%; }

    /* ── Features ── */
    .features-grid { grid-template-columns: 1fr; }

    /* ── Typography ── */
    .section-title { font-size: 1.45rem; letter-spacing: -.3px; }
    .section-subtitle { font-size: .88rem; }
    .section-label { font-size: .65rem; }
    body { font-size: .88rem; }

    /* ── Spacing ── */
    .section { padding: 2.5rem 0; }
    .section-sm { padding: 1.75rem 0; }

    /* ── Buttons ── */
    .btn { font-size: .82rem; padding: .65rem 1.25rem; }

    /* ── Strip ── */
    .strip-item { padding: 0 1.25rem; letter-spacing: 1px; }

    /* ── Testimonials ── */
    .testi-quote { font-size: 2.5rem; }

    /* ── CTA ── */
    .cta-banner { padding: 2rem 1rem; }
    .cta-banner h2 { font-size: 1.3rem; }

    /* ── Navbar ── */
    .navbar-brand { font-size: 1rem; }

    /* ── Best performers ── */
    .col-6 .card [style*="height:220px"] { height: 150px !important; }
}

/* ---------- AVAILABLE PRODUCTS SLIDER ---------- */
.avail-products-section {
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 60%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.avail-products-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(22,163,74,.08), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.avail-track-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.avail-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: availSlide 32s linear infinite;
    padding: 1rem 0 1.5rem;
}
.avail-track:hover { animation-play-state: paused; }
@keyframes availSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.avail-card {
    flex: 0 0 210px;
    background: #fff;
    border: 1px solid rgba(22,163,74,.15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
}
.avail-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 36px rgba(22,163,74,.15);
    border-color: rgba(22,163,74,.35);
}
.avail-card-img-wrap {
    width: 100%;
    height: 170px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.avail-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .6rem;
    transition: transform .4s ease;
}
.avail-card:hover .avail-card-img-wrap img { transform: scale(1.07); }
.avail-card-img-placeholder {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #86efac;
    font-size: 2rem;
}
.avail-card-body {
    padding: .9rem 1rem .85rem;
}
.avail-card-cat {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #16a34a;
    margin-bottom: .3rem;
}
.avail-card-name {
    font-size: .85rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 .45rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    line-height: 1.35;
}
.avail-card-price {
    display: flex;
    align-items: baseline;
    gap: .4rem;
}
.avail-card-price .price {
    font-size: .95rem;
    font-weight: 800;
    color: #16a34a;
}
.avail-card-price .mrp {
    font-size: .72rem;
    color: #94a3b8;
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .avail-products-section { padding: 3.5rem 0 2.5rem; }
    .avail-card { flex: 0 0 175px; }
    .avail-card-img-wrap, .avail-card-img-placeholder { height: 145px; }
    .avail-track { gap: 1rem; }
}
@media (max-width: 576px) {
    .avail-products-section { padding: 2.5rem 0 2rem; }
    .avail-card { flex: 0 0 150px; }
    .avail-card-img-wrap, .avail-card-img-placeholder { height: 120px; }
    .avail-card-body { padding: .7rem .75rem; }
    .avail-card-name { font-size: .78rem; }
    .avail-track { gap: .75rem; }
}

/* ---------- COMING SOON SLIDER ---------- */
.coming-soon-section {
    background: linear-gradient(160deg, var(--dark) 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,.12), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.coming-soon-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45,106,79,.1), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.cs-track-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.cs-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: csSlide 28s linear infinite;
    padding: 1rem 0 1.5rem;
}
.cs-track:hover { animation-play-state: paused; }
@keyframes csSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.cs-card {
    flex: 0 0 220px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
    position: relative;
}
.cs-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    border-color: rgba(139,92,246,.4);
}
.cs-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.cs-card:hover .cs-card-img { transform: scale(1.06); }
.cs-card-img-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(45,106,79,.15));
    color: rgba(255,255,255,.3);
    font-size: 2.5rem;
}
.cs-card-body {
    padding: 1rem 1rem .9rem;
}
.cs-card-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a78bfa;
    background: rgba(139,92,246,.15);
    border: 1px solid rgba(139,92,246,.25);
    border-radius: 50px;
    padding: .25rem .7rem;
    margin-bottom: .5rem;
}
.cs-card-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: #a78bfa;
    border-radius: 50%;
    animation: csPulse 1.6s ease-in-out infinite;
}
@keyframes csPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}
.cs-card-name {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

@media (max-width: 768px) {
    .coming-soon-section { padding: 3.5rem 0 2.5rem; }
    .cs-card { flex: 0 0 180px; }
    .cs-card-img, .cs-card-img-placeholder { height: 150px; }
    .cs-track { gap: 1rem; }
}
@media (max-width: 576px) {
    .coming-soon-section { padding: 2.5rem 0 2rem; }
    .cs-card { flex: 0 0 155px; }
    .cs-card-img, .cs-card-img-placeholder { height: 130px; }
    .cs-card-body { padding: .75rem; }
    .cs-card-name { font-size: .8rem; }
    .cs-track { gap: .75rem; }
}

/* ── Very small phones (< 400px) ── */
@media (max-width: 400px) {
    .hero-content h1 { font-size: 1.35rem; }
    .hero-stat .num { font-size: 1.05rem; }
    .hero-stat .lbl { font-size: .52rem; }
    .hero-actions .btn { font-size: .72rem; padding: .55rem .7rem; }
    .section-title { font-size: 1.2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .about-img-accent { display: none; }
}
