:root {
  --green-900: #143821;
  --green-800: #1e4d2b;
  --green-700: #2a6339;
  --green-100: #e7efe4;
  --gold: #c8a032;
  --gold-light: #f3e6bf;
  --cream: #faf7ef;
  --white: #ffffff;
  --text: #1d2a20;
  --muted: #5c6b5f;
  --border: #e3dcc8;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(20, 56, 33, 0.10);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); color: var(--green-900); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }

.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.section { padding: 80px 0; }
.section--white { background: var(--white); }
.section--green { background: var(--green-800); color: #e9f1e6; }
.section--green h2, .section--green h3 { color: var(--white); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); margin-top: 12px; }
.section--green .section-head p { color: #cfe0cb; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease; font-family: inherit; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-800); color: var(--white); }
.btn--primary:hover { background: var(--green-700); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: var(--green-900); }
.btn--gold:hover { background: #d8b245; }
.btn--outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn--outline:hover { background: var(--green-800); color: var(--white); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #1ebe5a; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn--block { width: 100%; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Top bar + header */
.topbar { background: var(--green-900); color: #d6e4d2; font-size: 0.82rem; padding: 6px 0; }
.topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold); }

.header { position: sticky; top: 0; z-index: 50; background: rgba(250, 247, 239, 0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--green-900); line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 500; font-size: 0.95rem; position: relative; padding: 4px 0; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .2s; }
.nav a:not(.btn):hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--green-800); font-weight: 600; }
.nav .btn { padding: 10px 20px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-900); margin: 5px 0; transition: .2s; }

/* Hero */
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 85% 20%, var(--gold-light) 0, transparent 45%), linear-gradient(135deg, var(--green-100), var(--cream) 60%); padding: 72px 0 88px; }
.hero .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero p.lead { font-size: 1.1rem; color: var(--muted); margin: 18px 0 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.hero-tags span { background: var(--white); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 500; color: var(--green-800); }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 22px; box-shadow: 0 24px 60px rgba(20, 56, 33, 0.22); }
.hero-badge { position: absolute; left: -22px; bottom: 30px; background: var(--white); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center; }
.hero-badge b { display: block; font-family: var(--font-head); color: var(--green-900); font-size: 1.3rem; }
.hero-badge small { color: var(--muted); font-size: .8rem; }
.hero-badge .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; color: var(--green-800); }

/* Page hero (inner pages) */
.page-hero { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: #dfeadb; padding: 64px 0; text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero p { margin-top: 10px; opacity: .9; }
.breadcrumb { font-size: .85rem; margin-top: 14px; opacity: .85; }
.breadcrumb a:hover { color: var(--gold); }

/* Category cards */
.categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; text-align: center; transition: .2s; }
.category:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.category .icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; color: var(--green-800); }
.category .icon svg { width: 30px; height: 30px; }
.category p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* Product cards */
.product-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.product-grid > .product-card { flex: 0 1 calc((100% - 56px) / 3); }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .25s; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-card .thumb { aspect-ratio: 1 / 1; background: linear-gradient(160deg, #f4f1e8, var(--green-100)); display: grid; place-items: center; overflow: hidden; padding: 14px; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; transition: transform .4s; }
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-card .tag { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.product-card h3 { margin: 6px 0 4px; }
.product-card .pack { font-size: .85rem; color: var(--muted); }
.product-card p.desc { font-size: .92rem; color: var(--muted); margin: 10px 0 18px; flex: 1; }
.product-card .actions { display: grid; gap: 10px; }
.product-card .actions .btn { padding: 11px 16px; font-size: .9rem; white-space: nowrap; }

/* Filter */
.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter { background: var(--white); border: 1px solid var(--border); padding: 8px 18px; border-radius: 999px; font-family: inherit; font-size: .9rem; font-weight: 500; cursor: pointer; color: var(--green-900); }
.filter.active, .filter:hover { background: var(--green-800); color: var(--white); border-color: var(--green-800); }

/* Features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { text-align: center; padding: 10px; }
.feature .icon { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; border: 2px solid var(--gold); display: grid; place-items: center; color: var(--gold); }
.feature .icon svg { width: 26px; height: 26px; }
.feature p { font-size: .9rem; margin-top: 6px; color: #cfe0cb; }

/* Split / story */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: 20px; box-shadow: var(--shadow); }
.split p { color: var(--muted); margin-top: 14px; }
.story-block { max-width: 820px; margin: 0 auto; }
.story-block h2 { margin-bottom: 18px; }
.story-block p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; }
.quote { border-left: 4px solid var(--gold); background: var(--white); padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-head); font-size: 1.25rem; color: var(--green-900); margin: 28px 0; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 10px; }
.value { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.value b { font-family: var(--font-head); font-size: 1.2rem; color: var(--green-900); display: block; margin-bottom: 6px; }
.value span { font-size: .88rem; color: var(--muted); }
.brand-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.brand-list span { background: var(--green-100); color: var(--green-800); padding: 6px 14px; border-radius: 999px; font-size: .88rem; font-weight: 500; }

/* CTA band */
.cta { background: linear-gradient(120deg, var(--green-900), var(--green-700)); border-radius: 22px; padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #dfeadb; flex-wrap: wrap; }
.cta h2 { color: var(--white); }
.cta p { margin-top: 8px; max-width: 560px; }

/* Product detail */
.crumb-bar { background: var(--green-100); border-bottom: 1px solid var(--border); padding: 14px 0; font-size: .88rem; color: var(--muted); }
.crumb-bar a { color: var(--green-800); font-weight: 500; }
.crumb-bar a:hover { color: var(--gold); }
.crumb-bar span { color: var(--text); }
.section--tight { padding-top: 48px; }
.product-detail > :first-child { position: sticky; top: 100px; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.gallery-main { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.gallery-main img { width: 100%; height: auto; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumbs button { width: 84px; height: 84px; border-radius: 10px; overflow: hidden; border: 2px solid var(--border); cursor: pointer; padding: 0; background: var(--white); }
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.detail-info .tag { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.detail-info h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 8px 0 6px; }
.detail-info .subtitle { font-size: 1.05rem; color: var(--green-700); font-weight: 500; }
.detail-info .pack-pill { display: inline-block; margin-top: 14px; background: var(--gold-light); color: var(--green-900); font-weight: 600; font-size: .85rem; padding: 6px 14px; border-radius: 999px; }
.detail-info p.overview { color: var(--muted); margin: 20px 0; }
.detail-info h3 { margin: 26px 0 12px; font-size: 1.1rem; }
.check-list { list-style: none; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%; background: var(--green-800) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
.ingredients { display: flex; flex-wrap: wrap; gap: 8px; }
.ingredients span { background: var(--white); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; font-size: .85rem; }
.usage { background: var(--green-100); border-radius: var(--radius); padding: 16px 18px; font-size: .95rem; }
.enquire-box { margin-top: 30px; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.enquire-box p { font-size: .88rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.contact-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-of-type { border-bottom: 0; }
.contact-item .icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--green-100); color: var(--green-800); display: grid; place-items: center; }
.contact-item .icon svg { width: 20px; height: 20px; }
.contact-item small { display: block; color: var(--muted); font-size: .8rem; }
.contact-item b { font-weight: 600; }
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { font-size: .85rem; font-weight: 500; display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: .95rem; background: var(--cream); color: var(--text); }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.form textarea { min-height: 110px; resize: vertical; }

/* Footer */
.footer { background: var(--green-900); color: #c3d4bf; padding: 64px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a:hover { color: var(--gold); }
.footer .brand-name { color: var(--white); }
.footer-about p { margin-top: 16px; }
.disclaimer { margin-top: 44px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: #9fb49b; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .82rem; text-align: center; color: #9fb49b; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Responsive */
@media (max-width: 960px) {
  .hero .container, .split, .product-detail, .contact-grid { grid-template-columns: 1fr; }
  .product-detail > :first-child { position: static; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .features, .values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories { grid-template-columns: 1fr; }
  .product-grid > .product-card { flex-basis: calc((100% - 28px) / 2); }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 78px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 20px; border-bottom: 1px solid var(--border); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 14px; border-bottom: 0; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .features, .values, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .product-grid > .product-card { flex-basis: 100%; }
  .cta { padding: 32px 24px; }
  .hero-badge { left: 10px; bottom: 10px; }
  .topbar .container { justify-content: center; }
  .topbar .hide-sm { display: none; }
}
