/* ── LOGO-DERIVED PALETTE ──────────────────────────────────────
    Forest Green:  #1B4332  (deep background green from logo)
    Mid Green:     #2D6A4F  (secondary green)
    Gold Rich:     #C9A84C  (gold ring / text on logo)
    Gold Light:    #E8C87A  (highlight gold)
    Gold Pale:     #F5DFA0  (lightest gold)
    Cream:         #FDF8EF  (off-white sections)
    ──────────────────────────────────────────────────────────── */
:root {
    --green-dark:   #1B4332;
    --green-mid:    #2D6A4F;
    --green-light:  #40896B;
    --gold:         #C9A84C;
    --gold-rich:    #B8960A;
    --gold-light:   #E8C87A;
    --gold-pale:    #F5DFA0;
    --cream:        #FDF8EF;
    --cream2:       #F5EDD8;
    --cream3:       #EDE0C4;
    --text-main:    #0F2D1F;
    --text-body:    #1E3D2A;
    --text-muted:   #4A7059;
    --border:       rgba(201,168,76,.22);
    --border-strong:rgba(201,168,76,.45);
    --surface:      #FFFFFF;
    --surface2:     #F0F7F4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    overflow-x: hidden;
}

/* Navbar glass effect */
.navbar {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .nav-link {
  color: var(--green-dark) !important;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #c9a84c !important;
}

.navbar .brand-text {
  color: var(--green-dark) !important;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.navbar .brand-sub {
  color: #c9a84c !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  display: block;
  line-height: 1;
}

.navbar-toggler {
  color: var(--green-dark) !important;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--text-main); }
.script { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.gold-grad {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #8B6200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
section { overflow: hidden; }

/* ── Ticker ── */
.ticker {
    background: var(--green-dark);
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 8px 0;
    white-space: nowrap;
    overflow: hidden;
    border-bottom: 1px solid rgba(201,168,76,.3);
}
.ticker-inner { display: inline-block; animation: ticker 28s linear infinite; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Navbar ── */
.navbar {
    background: rgba(253,248,239,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 2px 0;
    box-shadow: 0 2px 20px rgba(27,67,50,.1);
}
.navbar-brand .logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}
.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-dark);
    letter-spacing: .04em;
    line-height: 1.2;
}
.navbar-brand .brand-sub {
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}
.nav-link {
    color: var(--text-muted) !important;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
    font-weight: 500;
}
.nav-link:hover { color: var(--green-dark) !important; }
.btn-enquire, .btn-primary {
    background: var(--green-dark);
    color: var(--gold-light) !important;
    border: none;
    border-radius: 3px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px;
    transition: all .22s;
}
.btn-enquire:hover, .btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,67,50,.25); }
.navbar-toggler { border-color: var(--border); }
.text-primary { color: var(--green-dark) !important; }
.mr-3, .mx-3 {
    margin-right: 1rem !important;
}
.ml-4, .mx-4 {
    margin-left: 1.5rem !important;
}
/* ── PRODUCT HERO (Sammvaad-style) ────────────────── */
#hero {
    background: linear-gradient(155deg, #f3ede0 0%, #ede3cc 55%, #e5dab8 100%);
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.12), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(27,67,50,.07), transparent 45%);
    pointer-events: none;
}

/* Gallery */
.product-gallery { position: relative; }
.gallery-main {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 72px rgba(27,67,50,.16), 0 0 0 1px rgba(201,168,76,.2);
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
}
.gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
}
.gallery-thumbs {
    display: flex; gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.thumb {
    width: 68px; height: 68px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s, transform .2s;
    background: #fff;
    box-shadow: 0 2px 8px rgba(27,67,50,.1);
}
.thumb img { width:100%; height:100%; object-fit:cover; }
.thumb.active, .thumb:hover { border-color: var(--gold); transform: translateY(-2px); }

/* Badge strip */
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.product-badge {
    font-size: .62rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 2px;
}
.badge-green { background: rgba(27,67,50,.1); color: var(--green-dark); border: 1px solid rgba(27,67,50,.2); }
.badge-gold  { background: rgba(201,168,76,.15); color: #7a5200; border: 1px solid rgba(201,168,76,.35); }
.badge-new   { background: var(--green-dark); color: var(--gold-pale); }

/* Stars */
.star-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }
.review-count { font-size: .78rem; color: var(--text-muted); }

/* Product title */
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 10px;
}
.product-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--green-mid);
    margin-bottom: 22px;
}
.product-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 28px; }

/* Variant selector */
.variant-label {
    font-size: .68rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--green-dark);
    margin-bottom: 10px; display: block;
}
.variant-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.vpill {
    padding: 8px 18px;
    border: 1.5px solid rgba(27,67,50,.25);
    border-radius: 3px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s;
    background: rgba(255,255,255,.7);
    user-select: none;
}
.vpill:hover { border-color: var(--green-mid); color: var(--green-dark); background: rgba(27,67,50,.05); }
.vpill.active {
    background: var(--green-dark);
    color: var(--gold-pale);
    border-color: var(--green-dark);
}
.vpill .pill-sub { display: block; font-size: .62rem; font-weight: 400; opacity: .75; margin-top: 1px; }

/* Size selector */
.size-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.spill {
    padding: 9px 20px;
    border: 1.5px solid rgba(27,67,50,.2);
    border-radius: 3px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s;
    background: rgba(255,255,255,.7);
    text-align: center;
    user-select: none;
    position: relative;
}
.spill:hover { border-color: var(--green-mid); color: var(--green-dark); }
.spill.active { background: var(--green-dark); color: var(--gold-pale); border-color: var(--green-dark); }
.spill .spill-tag {
    position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--green-dark);
    font-size: .55rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 2px 7px; border-radius: 2px;
    white-space: nowrap;
}

/* Price */
.price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; }
.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--green-dark);
    font-weight: 700;
}
.price-original {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-save {
    font-size: .75rem;
    font-weight: 700;
    background: rgba(27,67,50,.1);
    color: var(--green-dark);
    padding: 4px 10px;
    border-radius: 2px;
}

/* Qty + Cart */
.buy-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.qty-box {
    display: flex; align-items: center;
    border: 1.5px solid rgba(27,67,50,.2);
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
}
.qty-btn {
    width: 40px; height: 48px;
    border: none; background: transparent;
    font-size: 1.1rem; cursor: pointer;
    color: var(--green-dark);
    transition: background .2s;
}
.qty-btn:hover { background: rgba(27,67,50,.07); }
.qty-val {
    width: 44px; height: 48px;
    border: none; border-left: 1px solid rgba(27,67,50,.15); border-right: 1px solid rgba(27,67,50,.15);
    text-align: center;
    font-weight: 700; font-size: .9rem;
    color: var(--green-dark);
    background: transparent;
}
.btn-add-cart {
    flex: 1; min-width: 160px;
    background: var(--green-dark);
    color: var(--gold-light);
    border: none; border-radius: 3px;
    font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; font-size: .82rem;
    padding: 14px 28px;
    transition: all .25s;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-cart:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(27,67,50,.25); }
.btn-enquire-hero {
    padding: 13px 24px;
    border: 1.5px solid var(--green-dark);
    color: var(--green-dark);
    background: transparent;
    border-radius: 3px;
    font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; font-size: .78rem;
    transition: all .25s; cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-enquire-hero:hover { background: var(--green-dark); color: var(--gold-light); }

/* Trust bar */
.trust-bar {
    display: flex; gap: 16px; flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid rgba(27,67,50,.1);
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--text-muted); }
.trust-item i { color: var(--green-mid); font-size: .9rem; }

/* Floating product card on mobile */
@media (max-width: 767px) {
    .gallery-main { aspect-ratio: 4/3; }
}
/* ── About ── */
#about {
    background: var(--surface);
    padding: 100px 0;
}
.vision-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 26px 24px;
    border-left: 3px solid var(--green-mid);
}
.vision-card h5 {
    color: var(--green-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 10px;
}
.vision-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.legacy-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 9rem);
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(27,67,50,.18);
    line-height: 1;
    user-select: none;
}

/* ── Why Choose ── */
#why {
    background: var(--surface2);
    padding: 100px 0;
}
.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 26px 22px;
    transition: all .3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(27,67,50,.05);
}
.why-card:hover {
    border-color: var(--green-mid);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(27,67,50,.12);
}
.why-icon {
    width: 60px; height: 60px;
    background: rgba(27,67,50,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: var(--green-mid);
    font-size: 1.1rem;
}
.why-card h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.why-card p { font-size: .81rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.why-icon img { width: 90%; height: 90%; }
/* ── Products ── */
#products {
    background: var(--surface);
    padding: 100px 0;
}
.product-tabs .nav-link {
    color: var(--text-muted) !important;
    border: 1px solid var(--border) !important;
    border-radius: 3px !important;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 8px 20px !important;
    margin: 4px;
    transition: all .2s;
    background: transparent !important;
}
.product-tabs .nav-link.active,
.product-tabs .nav-link:hover {
    background: var(--green-dark) !important;
    color: var(--gold-light) !important;
    border-color: var(--green-dark) !important;
}
.tea-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all .3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(27,67,50,.06);
}
.tea-card:hover {
    border-color: var(--green-mid);
    box-shadow: 0 16px 50px rgba(27,67,50,.13);
    transform: translateY(-4px);
}
.tea-card-img {
    height: 380px; overflow: hidden;
    background: var(--surface2);
    display: flex; align-items: center; justify-content: center;
}
.tea-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.tea-card:hover .tea-card-img img { transform: scale(1.05); }
.tea-card-body { padding: 22px 20px; }
.tea-card-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}
.tea-card-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.tea-meta { font-size: .95rem; color: var(--text-muted); }
.tea-meta i { color: var(--green-mid); margin-right: 5px; }
.tea-tag {
    display: inline-block;
    background: rgba(27,67,50,.08);
    border: 1px solid rgba(27,67,50,.2);
    color: var(--green-mid);
    font-size: .63rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    margin-bottom: 12px;
}

/* ── Process ── */
#process {
    background: var(--surface2);
    padding: 100px 0;
}

#process-new {
    background: var(--cream3);
    padding: 100px 0;
}

.step-wrap { position: relative; }
.step-line {
    position: absolute;
    left: 26px; top: 70px; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--green-mid), transparent);
    opacity: .35;
}
.step-item { display: flex; gap: 22px; /* margin-bottom: 32px; */ position: relative; background-color: #fff; padding: 20px 10px; }
.step-num {
    width: 100px; height: 100px;
    /* background: rgba(27,67,50,.08); */
    /* border: 1.5px solid rgba(27,67,50,.3); */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--green-dark);
    flex-shrink: 0;
    position: relative; z-index: 1;
}
.step-num img { width: 100%; height: 100%; object-fit: contain; }
.step-content h6 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.step-content p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.senses-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 26px 20px;
    text-align: center;
    transition: all .3s;
    box-shadow: 0 2px 12px rgba(27,67,50,.05);
}
.senses-card:hover { border-color: var(--green-mid); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27,67,50,.1); }
.sense-icon { font-size: 1.9rem; margin-bottom: 12px; }
.senses-card h6 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: .88rem; margin-bottom: 7px; }
.senses-card p { font-size: .95rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.senses-card p span { font-weight: bold; color: var(--green-mid); }
.master-blend-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 26px 24px;
    box-shadow: 0 2px 14px rgba(27,67,50,.05);
}

/* ── Health ── */
#health {
    background: var(--surface);
    padding: 100px 0;
}
.benefit-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 18px 8px;
}
.benefit-icon {
    width: 100px; height: 100px;
    /* background: rgba(27,67,50,.07); */
    /* border: 1.5px solid rgba(27,67,50,.18); */
    /* border-radius: 50%; */
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--green-mid);
    margin-bottom: 12px;
    transition: all .3s;
}
.benefit-item:hover .benefit-icon {
    /* background: rgba(27,67,50,.14); */
    /* border-color: var(--green-mid); */
    transform: scale(1.08);
}
.benefit-icon img { width: 100%; height: 100%; }
.benefit-item span { font-size: .95rem; color: var(--text-muted); font-style: italic; line-height: 1.45; }
.expert-box {
    background: linear-gradient(135deg, rgba(27,67,50,.06), rgba(45,106,79,.04));
    border: 1px solid rgba(27,67,50,.2);
    border-radius: 6px;
    padding: 36px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 24px rgba(27,67,50,.08);
}
.expert-box::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(27,67,50,.12);
    position: absolute;
    top: -10px; left: 20px;
    line-height: 1;
}
.expert-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--green-dark); line-height: 1.7; margin: 0; }
.expert-box cite { font-size: .72rem; color: var(--green-mid); letter-spacing: .15em; text-transform: uppercase; display: block; margin-top: 16px; }

/* ── Packaging ── */
#packaging {
    background: var(--surface2);
    padding: 100px 0;
}
.pkg-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.pkg-item {
    border-radius: 5px; overflow: hidden;
    position: relative;
    background: var(--cream3);
    border: 1px solid var(--border);
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s;
}
.pkg-item:hover { border-color: var(--green-mid); box-shadow: 0 10px 30px rgba(27,67,50,.14); }
.pkg-item img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.pkg-item:hover img { transform: scale(1.04); }
.pkg-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(27,67,50,.82));
    padding: 20px 10px 8px;
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-pale);
    text-align: center;
}
.pkg-featured { grid-column: span 2; grid-row: span 2; }
.pkg-list { list-style: none; padding: 0; }
.pkg-list li {
    color: var(--text-muted); font-size: .86rem;
    margin-bottom: 10px; padding-left: 18px;
    position: relative; line-height: 1.5;
}
.pkg-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .65rem; top: 2px; }

/* ── Quote ── */
#quote {
    background: var(--green-dark);
    padding: 70px 0;
}
.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--gold-pale);
    line-height: 1.6;
}
.quote-author { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 18px; }

/* ── CTA ── */
#cta {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #1B4332 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
#cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(232,200,122,.1), transparent 65%);
}
#cta .section-tag { color: var(--gold-pale); opacity: .8; }
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: currentColor;
}

.section-title {
    font-size: clamp(1.9rem, 3.8vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-main);
}
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; color: #fff; }
.cta-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(232,200,122,.7); font-style: italic; }
.btn-cta-gold {
    background: var(--gold);
    color: var(--green-dark);
    border: none; border-radius: 3px;
    font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; font-size: .78rem;
    padding: 14px 36px; transition: all .25s;
    text-decoration: none; display: inline-block;
}
.btn-cta-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.2); }
.btn-cta-outline {
    border: 1.5px solid rgba(232,200,122,.55);
    color: var(--gold-light); border-radius: 3px;
    font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; font-size: .78rem;
    padding: 13px 28px; background: transparent;
    transition: all .25s;
    text-decoration: none; display: inline-block;
}
.btn-cta-outline:hover { background: rgba(232,200,122,.12); color: #fff; border-color: var(--gold-light); }

/* ── Contact ── */
#contact {
    background: var(--surface);
    padding: 100px 0;
}
.contact-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 2px 14px rgba(27,67,50,.06);
    transition: all .3s;
}
.contact-card:hover { border-color: var(--green-mid); box-shadow: 0 10px 36px rgba(27,67,50,.1); }
.contact-card h6 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    font-size: 1rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.contact-card p, .contact-card a {
    font-size: .85rem; color: var(--text-muted); line-height: 1.75; text-decoration: none;
}
.contact-card a:hover { color: var(--green-dark); }
.contact-icon { color: var(--green-mid); margin-right: 8px; font-size: .85rem; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(27,67,50,.25);
    border-radius: 50%;
    color: var(--green-mid);
    font-size: .9rem;
    text-decoration: none;
    transition: all .25s;
    margin-right: 8px;
}
.social-links a:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--gold-light); }

/* Divider */
.divider-gold {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Legacy section - Modern timeline design */
#legacy {
  padding: 0;
  position: relative;
}

.legacy-wrapper {
  position: relative;
}

.legacy-bg {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-light) 100%) !important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.legacy-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23c9a84c' fill-opacity='0.08'%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;
}

.legacy-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.legacy-image-container {
  position: relative;
  padding: 15px;
}

.legacy-image-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--gold);
  border-radius: 20px;
  transform: translate(15px, 15px);
  opacity: 0.4;
  z-index: 1;
}

.legacy-main-image {
  width: 100%;
  border-radius: 20px !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3) !important;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.legacy-main-image:hover {
  transform: scale(1.02);
}

.legacy-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rich) 100%);
  padding: 15px 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 3;
}

.badge-years {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.badge-text {
  font-size: 0.75rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 3px;
}

.legacy-content {
  padding: 20px 0;
}

.legacy-timeline {
  margin: 30px 0;
  position: relative;
}

/* .legacy-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.3));
} */

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 8px;
  top: 25px;
  width: 27px;
  height: 27px;
  background: #c9a84c;
  border-radius: 50%;
  border: 4px solid #1b4332;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}

.timeline-content h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.timeline-content p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.legacy-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(201,168,76,0.3);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-box .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.stat-box .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.4);
}

#legacy .section-tag {
  color: var(--gold-light) !important;
}

#legacy .section-title {
  color: #fff !important;
  font-size: 2.2rem !important;
}

/* Responsive */
@media (max-width: 991px) {
  .legacy-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-box {
    flex: 1 1 30%;
  }
  .stat-divider {
    display: none;
  }
}

/* Footer - Match dark theme */
footer {
    background: linear-gradient(135deg, #0a2517 0%, #1b4332 50%, #0f2d1f 100%) !important;
    padding: 20px 0 20px;
    border-top: 2px solid rgba(201,168,76,.3);
}
.footer-logo { height: 56px; width: 56px; border-radius: 50%; object-fit: cover; }
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
}
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    font-style: italic;
    color: rgba(232,200,122,.6);
    margin-top: 3px;
}
footer p, footer small { color: #fff; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: var(--gold-light); }
footer hr { border-color: rgba(201,168,76); margin: 28px 0; }
.footer-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold-light);
    padding-bottom: 20px;
}
.footer-stat-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(232,200,122,.5); }
.footer-links a {
    color: #fff; font-size: .8rem; text-decoration: none;
    margin-left: 20px; transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-link {
    display: inline-block;
    color: #fff;
    font-size: .8rem;
    text-decoration: none; 
    transition: color .2s;
}
/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-img-wrap { margin-top: 50px; }
    .step-line { display: none; }
}
@media (max-width: 767px) {
    .pkg-grid-inner { grid-template-columns: repeat(2,1fr); }
    .pkg-featured { grid-column: span 1; grid-row: span 1; }
}

.carousel-item {margin-right: 0px !important;}

/* ── Hero Section Dark Theme ── */
#hero {
  background: linear-gradient(135deg, #0a2517 0%, #1b4332 50%, #0f2d1f 100%) !important;
  min-height: 100vh;
  padding: 60px 0;
}

#hero .product-gallery {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#hero .gallery-main {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

#hero .gallery-main img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

#hero .gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

#hero .gallery-thumbs .thumb {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 70px;
  height: 70px;
}

#hero .gallery-thumbs .thumb:hover,
#hero .gallery-thumbs .thumb.active {
  border-color: #c9a84c;
  transform: scale(1.1);
}

#hero .gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .product-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#hero .product-tagline {
  font-size: 1.2rem;
  color: #c9a84c !important;
  margin-bottom: 20px;
  font-style: italic;
}

#hero .product-desc {
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

#hero .variant-label {
  display: block;
  color: #c9a84c !important;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#hero .size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

#hero .size-pills .spill {
  background: rgba(255,255,255,0.1);
  border: 2px solid #c9a84c;
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

#hero .size-pills .spill:hover,
#hero .size-pills .spill.active {
  background: linear-gradient(135deg, #c9a84c, #e8c87a);
  color: #1b4332 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201,168,76,0.3);
}

#hero .price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700 !important;
  text-shadow: 0 2px 10px rgba(255,215,0,0.3);
}

#hero .price-original {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: line-through;
}

#hero .price-save {
  background: #c9a84c;
  color: #1b4332 !important;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

#hero .qty-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 5px;
  border: 1px solid rgba(201,168,76,0.3);
}

#hero .qty-btn {
  background: transparent;
  border: none;
  color: #fff !important;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

#hero .qty-btn:hover {
  color: #c9a84c !important;
}

#hero .qty-val {
  background: transparent;
  border: none;
  color: #fff !important;
  width: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

#hero .btn-add-cart {
  background: linear-gradient(135deg, #c9a84c, #e8c87a);
  color: #1b4332 !important;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(201,168,76,0.4);
}

#hero .btn-add-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.5);
}

#hero .btn-enquire-hero {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

#hero .btn-enquire-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37,211,102,0.4);
}

#hero .trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  border: 1px solid rgba(201,168,76,0.2);
}

#hero .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9) !important;
  font-size: 14px;
}

#hero .trust-item i {
  color: #c9a84c !important;
}

#hero .product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

#hero .product-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

#hero .product-badge.badge-green {
  background: linear-gradient(135deg, #2d6a4f, #40996b);
  color: #fff;
}

#hero .product-badge.badge-gold {
  background: linear-gradient(135deg, #c9a84c, #e8c87a);
  color: #1b4332;
}

#hero .product-badge.badge-new {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #1b4332;
}

#hero .star-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

#hero .star-row .stars {
  color: #ffd700;
  font-size: 18px;
}

#hero .star-row .review-count {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* Carousel Dark Theme */
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

#hero .carousel-control-prev {
  left: 10px;
}

#hero .carousel-control-next {
  right: 10px;
}

#hero .carousel-control-prev:hover,
#hero .carousel-control-next:hover {
  opacity: 1;
  background: #c9a84c;
}

#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
  filter: invert(1);
  width: 20px;
  height: 20px;
}

/* Price row adjustments */
#hero .price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* Buy row adjustments */
#hero .buy-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* Notification styles */
#hero #notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
}

#hero .alert-toast {
  background: rgba(40, 167, 69, 0.95);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease;
  backdrop-filter: blur(10px);
}

#hero .alert-toast.error {
  background: rgba(220,53,69,0.95);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ── All Sections Modern Theme ── */

/* Hero - Keep dark premium */
#hero {
  background: linear-gradient(135deg, #0a2517 0%, #1b4332 50%, #0f2d1f 100%) !important;
  min-height: 100vh;
  padding: 60px 0;
}

/* Section titles and text */
#why .section-title, #products .section-title, #health .section-title, 
#packaging .section-title, #quote .section-title, #contact .section-title, 
#process .section-title, #process-new .section-title {
  color: #fff !important;
}

#about p { color: var(--text-muted) !important; }
#about .section-tag { color: #c9a84c !important; }

#about .vision-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(27,67,50,0.1);
  transition: all 0.3s ease;
}

#about .vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(27,67,50,0.15);
}

#about .vision-card h4 { color: var(--green-dark) !important; }
#about .vision-card p { color: var(--text-muted) !important; font-size: 0.95rem; line-height: 1.8; }

/* Why Choose - Dark theme */
#why {
  background: linear-gradient(135deg, #0a2517 0%, #1b4332 100%) !important;
  padding: 100px 0;
}

#why .section-title { color: #fff !important; }
#why p { color: rgba(255,255,255,0.8) !important; }
#why .section-tag { color: #c9a84c !important; }

#why .why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#why .why-icon img {
  max-width: 100%;
  max-height: 100%;
}

#why .why-card h6 {
 /*  color: #fff !important; */
  font-weight: 600;
  margin-bottom: 10px;
}

#why .why-card p {
  color: var(--text-muted) !important;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Products section - Cream background for variety */
#products {
  background: var(--cream) !important;
  padding: 100px 0;
}

#products .section-title { color: var(--green-dark) !important; }
#products p { color: var(--text-muted) !important; }
#products .section-tag { color: #c9a84c !important; }

#products .product-tabs .nav-link {
  background: #fff;
  border: 2px solid transparent;
  color: var(--green-dark) !important;
  padding: 14px 28px;
  border-radius: 30px;
  margin: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27,67,50,0.1);
}

#products .product-tabs .nav-link:hover,
#products .product-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--green-dark), #2d6a4f);
  color: #fff !important;
  border-color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27,67,50,0.3);
}

#products .tea-card {
  background: #fff;
  border: none;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 5px 20px rgba(27,67,50,0.08);
}

#products .tea-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(27,67,50,0.2);
}

#products .tea-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

#products .tea-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

#products .tea-card-img img {
  width: auto;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#products .tea-card:hover .tea-card-img img {
  transform: scale(1.15);
}

#products .tea-card-body {
  padding: 25px;
}

#products .tea-tag {
  background: linear-gradient(135deg, var(--green-dark), #2d6a4f);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#products .tea-card h5 {
  color: var(--green-dark) !important;
  margin: 18px 0 12px;
  font-size: 1.1rem;
}

#products .tea-card p {
  color: var(--text-muted) !important;
  font-size: 0.85rem;
  line-height: 1.7;
}

#products .tea-meta {
  color: var(--green-dark) !important;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Masterfully Blended - Horizontal Cards */
.blend-cards-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 10px 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.blend-cards-container::-webkit-scrollbar {
  height: 8px;
}

.blend-cards-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.blend-cards-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #c9a84c, #e8c87a);
  border-radius: 10px;
}

.blend-card {
  flex: 0 0 280px;
  height: 300px;
  perspective: 1000px;
}

.blend-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.blend-card:hover .blend-card-inner {
  transform: rotateY(180deg);
}

.blend-card-front,
.blend-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blend-card-front {
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(201,168,76,0.3);
}

.blend-card-back {
  background: linear-gradient(145deg, #c9a84c, #a88a3c);
  color: #1b4332;
  transform: rotateY(180deg);
  padding: 25px;
}

.blend-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blend-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.blend-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.blend-card-front h4 {
  color: #fff !important;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.blend-card-front p {
  color: rgba(201,168,76,0.9) !important;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
}

.blend-card-back h5 {
  color: #1b4332 !important;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.blend-card-back p {
  color: #1b4332 !important;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Process Timeline Style */
.process-timeline {
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #c9a84c, rgba(201,168,76,0.3));
}

.timeline-item-top {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.timeline-item-top:last-child {
  margin-bottom: 0;
}

.timeline-dot-top {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 27px;
  height: 27px;
  background: #c9a84c;
  border-radius: 50%;
  border: 4px solid #1b4332;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}

.timeline-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.4s ease;
}

.timeline-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.timeline-number {
  position: absolute;
  top: -15px;
  right: 25px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.timeline-card h4 {
  color: #c9a84c !important;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.timeline-card p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Dark section class for process-new */
.dark-section {
  background: linear-gradient(135deg, #0a2517 0%, #1b4332 100%) !important;
  padding: 100px 0;
}

.dark-section .section-title {
  color: #fff !important;
}

.dark-section p {
  color: rgba(255,255,255,0.8) !important;
}

.dark-section .section-tag {
  color: #c9a84c !important;
}

.dark-section .step-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
}

.dark-section .step-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.dark-section .step-content h6 {
  color: #c9a84c !important;
  font-weight: 600;
  margin-bottom: 12px;
}

.dark-section .step-content p {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.dark-section .step-num {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.dark-section .step-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none !important;
}

/* Process sections - Alternating themes */
#process {
  background: var(--cream) !important;
  padding: 100px 0;
}

#process .section-title { color: var(--green-dark) !important; }
#process p { color: var(--text-muted) !important; }
#process .section-tag { color: #c9a84c !important; }

#process .senses-card, #process-new .step-item, #process .step-item {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(27,67,50,0.08);
}

#process .senses-card:hover, #process-new .step-item:hover, #process .step-item:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(27,67,50,0.15);
}

#process .senses-card p, #process-new .step-content p, #process .step-content p {
  color: var(--text-muted) !important;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

#process .senses-card span, #process-new .step-content h6, #process .step-content h6 {
  color: var(--green-dark) !important;
  font-weight: 600;
}

#process .step-num {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 15px; */
}

#process .step-num img, #process-new .step-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Health section - Green gradient to match theme */
#health {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-light) 100%) !important;
  padding: 100px 0;
}

#health .section-title { color: #fff !important; }
#health p { color: rgba(255,255,255,0.8) !important; }
#health .section-tag { color: var(--gold-light) !important; }

#health .benefit-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  height: 90%;
  border-radius: 20px;
  margin: 10px;
}

#health .benefit-item:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(27,67,50,0.3);
}

#health .benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#health .benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#health .benefit-item span {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.85rem;
  display: block;
  line-height: 1.5;
}

#health .expert-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
  border: 2px solid rgba(201,168,76,0.5);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
}

#health .expert-box p {
  color: #fff !important;
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
}

#health .expert-box cite {
  color: var(--gold-light) !important;
  font-size: 1rem;
  font-weight: 600;
}

/* Center last two items in health benefits row */
#health .row {
  display: flex;
  flex-wrap: wrap;
}

#health .row > div:nth-last-child(-n+2) {
  display: flex;
  justify-content: center;
}

#health .row > div:nth-last-child(-n+2) .benefit-item {
  width: 100%;
}

/* Packaging section - Cream with green */
#packaging {
  background: var(--cream) !important;
  padding: 100px 0;
}

#packaging .section-title { color: var(--green-dark) !important; }
#packaging p { color: var(--text-muted) !important; }
#packaging .section-tag { color: #c9a84c !important; }

#packaging .pkg-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#packaging .pkg-list li {
  background: var(--green-dark);
  border: none;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27,67,50,0.2);
}

#packaging .pkg-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27,67,50,0.3);
  background: #2d6a4f;
}

#packaging .pkg-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

#packaging .pkg-item {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.3);
  transition: all 0.3s ease;
}

#packaging .pkg-item:hover {
  border-color: #c9a84c;
  transform: scale(1.03);
}

#packaging .pkg-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

#packaging .pkg-featured {
  grid-column: span 2;
  grid-row: span 2;
}

#packaging .pkg-featured img {
  height: 315px;
}

/* Quote section - Elegant dark */
#quote {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%) !important;
  position: relative;
  overflow: hidden;
}

#quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23c9a84c' fill-opacity='0.05'%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");
}

#quote .quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #fff !important;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  position: relative;
}

#quote .quote-text::before {
  content: '"';
  font-size: 8rem;
  color: rgba(201,168,76,0.2);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: serif;
}

#quote .quote-author {
  color: #c9a84c !important;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Contact section - Dark theme */
#contact {
  background: linear-gradient(135deg, #0a2517 0%, #1b4332 100%) !important;
  padding: 100px 0;
}

#contact .section-title { color: #fff !important; }
#contact .section-tag { color: #c9a84c !important; }

#contact .contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 25px;
  padding: 35px;
  height: 100%;
  transition: all 0.4s ease;
}

#contact .contact-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: #c9a84c;
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

#contact .contact-card h6 {
  color: #c9a84c !important;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

#contact .contact-card p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.8;
}

#contact .contact-card a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  transition: color 0.3s;
}

#contact .contact-card a:hover {
  color: #c9a84c !important;
}

#contact .contact-icon {
  color: #c9a84c !important;
  margin-right: 12px;
}

#contact .social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(201,168,76,0.5);
  color: #c9a84c !important;
  border-radius: 50%;
}

#contact .social-links a:hover {
  background: #c9a84c;
  color: #1b4332 !important;
}

/* Contact Section - Split Layout */
.contact-info {
  padding: 0 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(10px);
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #c9a84c, #e8c87a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1b4332;
  flex-shrink: 0;
  margin-right: 20px;
}

.contact-info-content h4 {
  color: #c9a84c !important;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-info-content p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-info-content a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-content a:hover {
  color: #c9a84c !important;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.social-btn {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: linear-gradient(135deg, #c9a84c, #e8c87a);
  color: #1b4332 !important;
  transform: translateY(-5px);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social .social-btn {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}

/* Contact Form Alert Styles */
.contact-form-wrapper .alert {
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: none;
}

.contact-form-wrapper .alert-success {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #fff;
}

.contact-form-wrapper .alert-danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #fff;
}

.contact-form-wrapper .btn-close {
  filter: invert(1);
}

.contact-form-wrapper {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 25px;
  padding: 40px;
}

.contact-form-wrapper h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 0;
}

.form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
  outline: none;
  color: #fff;
}

.form-control option {
  background: #1b4332;
  color: #fff;
}

.btn-submit {
  background: linear-gradient(135deg, #c9a84c, #e8c87a);
  color: #1b4332 !important;
  border: none;
  padding: 16px 35px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

/* ── Header Cart Icon ── */
.btn-cart-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  margin-right: 15px;
  color: var(--green-dark);
  font-size: 20px;
  transition: all 0.3s ease;
}

.btn-cart-header:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: bold;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Notification Styles ── */
#notification {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
}

#notification .alert {
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

#notification .alert-success {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  border: none;
  color: #fff;
}

#notification .alert-success a {
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
}

#notification .alert-success a:hover {
  text-decoration: underline;
}

#notification .alert-success strong {
  color: #ffd700;
}

#notification .btn-close {
  filter: invert(1);
}
