/* ===== The Khet Project — Minimalist Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,400..600&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #40916c;
  --green-muted: #74c69d;
  --green-pale: #d8f3dc;
  --green-ghost: #f0faf4;
  --cream: #fafaf7;
  --white: #ffffff;
  --black: #111;
  --gray-900: #1a1a1a;
  --gray-700: #3d3d3d;
  --gray-500: #777;
  --gray-300: #bbb;
  --gray-100: #eee;
  --gray-50: #f7f7f7;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Space Grotesk', -apple-system, sans-serif;
  --mono: 'Space Mono', 'SF Mono', monospace;
  --max-w: 1140px;
  --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--gray-900); background: var(--white); line-height: 1.7; font-size: 15px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== Top Bar ===== */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* ===== Header ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-dark);
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--green); }
.logo-img { height: 70px; width: auto; display: block; }
.footer .logo-img { height: 124px; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  transition: var(--ease);
}
.nav a:hover, .nav a.active { color: var(--green-dark); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.cart-icon {
  position: relative;
  color: var(--gray-700);
  transition: var(--ease);
}
.cart-icon:hover { color: var(--green); }
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 4px; padding: 4px; }
.hamburger span { width: 20px; height: 1.5px; background: var(--gray-700); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--ease);
}
.btn-fill { background: var(--green-dark); color: #fff; }
.btn-fill:hover { background: var(--green); transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid var(--green-dark); color: var(--green-dark); }
.btn-ghost:hover { background: var(--green-dark); color: #fff; }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--cream); }
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn-lg { padding: 15px 36px; font-size: 14px; }
.btn-block { width: 100%; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green-dark); color: #fff; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.bg-green .section-heading { color: #fff; }
.section-sub {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 480px;
  line-height: 1.7;
}
.bg-green .section-sub { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 12px; }
.hero-image {
  position: relative;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; }
.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quality-seal {
  width: 62%;
  height: 92%;
}
.quality-seal .seal-line {
  opacity: 0;
  animation: sealFade .5s ease-out forwards;
}
.quality-seal .seal-ring {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: sealFade .8s ease-out .1s forwards, ringSpin 22s linear infinite;
}
.quality-seal .seal-core {
  scale: 0;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 0 18px rgba(82,255,168,0.35));
  animation: sealPop .7s cubic-bezier(.34,1.56,.64,1) .1s forwards;
}
.quality-seal .seal-badge {
  scale: 0;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: sealPop .6s cubic-bezier(.34,1.56,.64,1) forwards, badgeGlow 3s ease-in-out infinite;
}
@keyframes sealFade { to { opacity: 0.55; } }
@keyframes sealPop { to { scale: 1; opacity: 1; } }
@keyframes ringSpin { to { rotate: 360deg; } }
@keyframes badgeGlow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(82,255,168,0.4)); }
  50% { filter: drop-shadow(0 0 10px rgba(82,255,168,0.7)); }
}
@media (prefers-reduced-motion: reduce) {
  .quality-seal .seal-line, .quality-seal .seal-ring, .quality-seal .seal-core, .quality-seal .seal-badge {
    animation: none; opacity: 1; scale: 1;
  }
  .quality-seal .seal-line { opacity: 0.55; }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--green-dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
}
.marquee-item {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green-muted); }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== Product Cards ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--ease);
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.product-card-img {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.product-card-body { padding: 20px; }
.product-card-body h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 4px;
}
.product-card-body .variant { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.product-card-body .price { font-size: 18px; font-weight: 700; color: var(--green-dark); }
.product-card-body .price s { font-size: 13px; color: var(--gray-300); font-weight: 400; margin-left: 6px; }
.product-card-actions { padding: 0 20px 20px; display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; }

/* ===== Benefits Grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  padding: 32px 24px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: var(--white);
}
.benefit-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green-pale);
  margin-bottom: 12px;
}
.benefit h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.benefit p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== Split Section ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
}
.split-img img { width: 100%; height: 100%; }
.split-content h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.split-content p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.8;
}
.stats-row { display: flex; gap: 32px; margin-top: 24px; }
.stat-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green);
}
.stat-item span { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== Testimonials ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: var(--white);
}
.testimonial .stars { color: #d4a437; font-size: 13px; margin-bottom: 12px; }
.testimonial p { font-size: 13px; color: var(--gray-700); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--green-dark);
}
.testimonial-name { font-weight: 600; font-size: 13px; }
.testimonial-loc { font-size: 11px; color: var(--gray-500); }

/* ===== Product Detail ===== */
.pdp { padding: 32px 0 80px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.pdp-gallery {}
.pdp-main-img { border-radius: 12px; overflow: hidden; aspect-ratio: 1; background: var(--cream); margin-bottom: 12px; }
.pdp-main-img img { width: 100%; height: 100%; }
.pdp-thumbs { display: flex; gap: 8px; }
.pdp-thumb {
  width: 72px; height: 72px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: var(--ease);
  background: var(--cream);
}
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--green); }
.pdp-thumb img { width: 100%; height: 100%; }

.pdp-info h1 { font-family: var(--serif); font-size: 30px; margin-bottom: 6px; }
.pdp-info .tagline { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }
.pdp-price { font-size: 26px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.pdp-tax { font-size: 12px; color: var(--gray-500); margin-bottom: 24px; }

.pdp-usps { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pdp-usp {
  font-size: 11px; font-weight: 500; color: var(--green-dark);
  background: var(--green-ghost); padding: 6px 12px; border-radius: 20px;
}

.size-selector { margin-bottom: 24px; }
.size-selector label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; }
.size-options { display: flex; gap: 10px; }
.size-opt {
  padding: 12px 24px; border: 1.5px solid var(--gray-100); border-radius: 8px;
  cursor: pointer; transition: var(--ease); text-align: center; min-width: 100px;
}
.size-opt.active { border-color: var(--green-dark); background: var(--green-ghost); }
.size-opt .w { font-weight: 700; font-size: 14px; }
.size-opt .p { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.add-row { display: flex; gap: 10px; margin-bottom: 20px; }
.qty-box {
  display: flex; align-items: center; border: 1.5px solid var(--gray-100); border-radius: 8px;
}
.qty-box button { width: 40px; height: 46px; font-size: 16px; color: var(--gray-500); }
.qty-box input {
  width: 40px; height: 46px; text-align: center; border: none;
  font-size: 14px; font-weight: 600; font-family: var(--sans); outline: none;
}

.delivery-info {
  display: flex; align-items: center; gap: 8px; font-size: 12px;
  color: var(--gray-500); padding: 12px; background: var(--gray-50); border-radius: 8px; margin-bottom: 24px;
}

/* ===== FAQ ===== */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  width: 100%; padding: 18px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 14px; font-weight: 600; color: var(--gray-900); text-align: left;
}
.faq-q svg { transition: var(--ease); color: var(--green); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-bottom: 18px; font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ===== Nutrition Table ===== */
.nut-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nut-table th {
  text-align: left; padding: 10px; background: var(--green-ghost);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--green-dark);
}
.nut-table td { padding: 8px 10px; border-bottom: 1px solid var(--gray-50); color: var(--gray-700); }

/* ===== About Hero ===== */
.about-hero {
  padding: 100px 0 80px;
  background: var(--cream);
  text-align: center;
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

/* ===== Values ===== */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  padding: 32px 24px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  text-align: center;
}
.value-card h3 { font-family: var(--serif); font-size: 18px; margin: 14px 0 6px; }
.value-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.value-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green-ghost);
  display: flex; align-items: center; justify-content: center; margin: 0 auto; color: var(--green);
}

/* ===== Cart ===== */
.cart-page { padding: 40px 0 80px; }
.cart-page h1 { font-family: var(--serif); font-size: 30px; margin-bottom: 32px; }
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px;
  padding: 16px; border: 1px solid var(--gray-100); border-radius: 10px; align-items: center;
}
.cart-item-img {
  width: 80px; height: 80px; background: var(--cream); border-radius: 8px;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; }
.cart-item h3 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.cart-item .meta { font-size: 12px; color: var(--gray-500); margin-bottom: 6px; }
.cart-item .price { font-size: 16px; font-weight: 700; color: var(--green-dark); }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.remove-btn { font-size: 11px; color: var(--gray-500); text-decoration: underline; }
.remove-btn:hover { color: #c0392b; }

.cart-summary {
  background: var(--cream); border-radius: 12px; padding: 24px; position: sticky; top: 88px;
}
.cart-summary h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.cart-summary-total {
  display: flex; justify-content: space-between; padding-top: 12px; margin-top: 8px;
  border-top: 1.5px solid var(--gray-300); font-size: 16px; font-weight: 700;
}
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty h2 { font-family: var(--serif); font-size: 24px; margin: 12px 0 8px; }
.cart-empty p { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }

/* ===== Single-page anchor offsets ===== */
#home, #shop, #about { scroll-margin-top: 104px; }

/* ===== Cart Drawer ===== */
.cart-drawer { position: fixed; inset: 0; z-index: 3000; visibility: hidden; }
.cart-drawer.open { visibility: visible; }
.cart-drawer-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; transition: opacity .3s ease;
}
.cart-drawer.open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 400px; max-width: 92vw;
  background: var(--white); box-shadow: -8px 0 30px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; padding: 24px;
  transform: translateX(100%); transition: transform .35s ease; overflow-y: auto;
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cart-drawer-head h3 { font-family: var(--serif); font-size: 20px; }
.cart-drawer-close { font-size: 26px; line-height: 1; color: var(--gray-500); }
.cart-drawer-close:hover { color: var(--green-dark); }
.cart-drawer-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.cart-drawer-panel .cart-summary { position: static; }
@media (max-width: 640px) {
  .cart-drawer-panel { width: 100%; max-width: 100%; }
}

/* ===== Checkout Form (in cart drawer) ===== */
.checkout-form { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.checkout-form h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.checkout-form input, .checkout-form textarea {
  width: 100%; padding: 10px 12px; margin-bottom: 10px; border: 1px solid var(--gray-300);
  border-radius: 8px; font-family: inherit; font-size: 13px; background: var(--white);
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--green); }
.checkout-form textarea { resize: vertical; min-height: 60px; }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkout-row input { margin-bottom: 10px; }

/* ===== Order Success (in cart drawer) ===== */
.order-success { text-align: center; padding: 8px 0 24px; }
.order-success-check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.order-success h2 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.order-success-sub { color: var(--gray-500); font-size: 13px; margin-bottom: 20px; }
.order-success-card {
  background: var(--cream); border-radius: 10px; padding: 16px; text-align: left; margin-bottom: 16px;
}
.order-success-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; }
.order-success-badge {
  background: var(--green-pale); color: var(--green-dark); padding: 2px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 600;
}
.order-success-items { text-align: left; border-top: 1px solid var(--gray-100); padding-top: 10px; margin-bottom: 4px; }
.order-success-item { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: var(--gray-700); }
.order-success-total {
  border-top: 1.5px solid var(--gray-300); margin-top: 8px; padding-top: 10px;
  font-size: 15px; font-weight: 700;
}
.order-success-address { text-align: left; margin: 20px 0; }
.order-success-address h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.order-success-address p { font-size: 13px; color: var(--gray-700); line-height: 1.5; }
.order-success-email { font-size: 12px; color: var(--gray-500); margin-bottom: 20px; }

/* ===== Newsletter ===== */
.newsletter {
  background: var(--green-dark); padding: 56px 0; text-align: center; color: #fff;
}
.newsletter h2 { font-family: var(--serif); font-size: 28px; margin-bottom: 6px; }
.newsletter p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; }
.nl-form { display: flex; gap: 8px; max-width: 400px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 12px 16px; border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px; background: transparent; color: #fff; font-size: 13px; outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form input:focus { border-color: var(--green-muted); }

/* ===== Footer ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .logo { color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5);
  transition: var(--ease);
}
.footer-socials a:hover { background: var(--green); color: #fff; }
.footer-col h4 {
  color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 13px; margin-bottom: 8px; transition: var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; font-size: 11px;
}

/* ===== Breadcrumb ===== */
.breadcrumb { padding: 14px 0; font-size: 12px; color: var(--gray-500); }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Legal / Info Pages ===== */
.legal-page { padding: 20px 0 80px; }
.legal-page h1 { font-family: var(--serif); font-size: 32px; margin-bottom: 8px; }
.legal-page .legal-updated { font-size: 12px; color: var(--gray-500); margin-bottom: 40px; }
.legal-content { max-width: 720px; }
.legal-content h3 { font-size: 17px; font-weight: 600; margin: 32px 0 10px; color: var(--green-dark); }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { font-size: 14px; color: var(--gray-700); margin-bottom: 12px; }
.legal-content ul { margin: 0 0 12px 20px; }
.legal-content li { font-size: 14px; color: var(--gray-700); list-style: disc; margin-bottom: 6px; }
.legal-content a { color: var(--green); text-decoration: underline; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 720px; margin-bottom: 40px; }
.contact-card { background: var(--cream); border-radius: 12px; padding: 22px; }
.contact-card .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 8px; }
.contact-card .value { font-size: 15px; font-weight: 600; color: var(--green-dark); }
.contact-card .value a { color: inherit; }

/* ===== Admin Panel ===== */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--green-dark); padding: 24px 0; }
.admin-sidebar .logo { color: #fff; padding: 0 20px; margin-bottom: 32px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 13px;
  color: rgba(255,255,255,0.6); transition: var(--ease);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.08); color: #fff; }
.admin-main { padding: 32px; background: var(--gray-50); }
.admin-main h1 { font-family: var(--serif); font-size: 24px; margin-bottom: 24px; }
.admin-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.admin-card {
  background: #fff; border-radius: 10px; padding: 20px; border: 1px solid var(--gray-100);
}
.admin-card .label { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; }
.admin-card .value { font-family: var(--serif); font-size: 28px; color: var(--green-dark); }
.admin-card .sub { font-size: 11px; color: var(--green); margin-top: 4px; }
.admin-table {
  width: 100%; background: #fff; border-radius: 10px; border: 1px solid var(--gray-100);
  border-collapse: collapse; font-size: 13px;
}
.admin-table th {
  text-align: left; padding: 12px 16px; background: var(--cream);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.admin-table td { padding: 12px 16px; border-top: 1px solid var(--gray-50); }
.status-badge {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px;
}
.status-paid { background: var(--green-pale); color: var(--green-dark); }
.status-pending { background: #fff3cd; color: #856404; }
.status-shipped { background: #cce5ff; color: #004085; }

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); z-index: 2000;
}
.mobile-nav-inner { width: 260px; height: 100%; background: #fff; padding: 24px; }
.mobile-nav-close { text-align: right; margin-bottom: 20px; font-size: 20px; }
.mobile-nav-inner a {
  display: block; padding: 12px 0; font-size: 15px; font-weight: 500;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-50);
}

/* ===== How-to ===== */
.howto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.howto-card {
  text-align: center; padding: 28px 16px; border: 1px solid var(--gray-100); border-radius: 12px; background: #fff;
}
.howto-card .icon { font-size: 32px; margin-bottom: 8px; }
.howto-card .num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
  font-size: 12px; font-weight: 700;
}
.howto-card h4 { font-size: 13px; font-weight: 600; }

/* ===== Futuristic Enhancements ===== */
:root {
  --neon: #52ffa8;
  --glow: rgba(82,255,168,0.35);
  --dark-space: #06120d;
}

/* Header glass-on-scroll */
.header { transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease; }
.header.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Hero — futuristic dark space */
.hero { background: radial-gradient(circle at 15% 20%, #0e2417 0%, #06120d 45%, #030805 100%); }
.hero-content h1, .hero-content p, .hero-tag, .hero-btns { position: relative; z-index: 3; }
.hero h1 { color: #eafff1; }
.hero h1 em {
  background: linear-gradient(120deg, var(--green-muted), var(--neon) 50%, var(--green-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.hero p { color: rgba(234,255,241,0.65); }
.hero-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(82,255,168,0.35);
  color: var(--neon);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 24px var(--glow);
}

/* Floating blobs behind hero content */
.hero-blobs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; animation: floatBlob 14s ease-in-out infinite; }
.blob-1 { width: 340px; height: 340px; background: radial-gradient(circle, var(--green-muted), transparent 70%); top: -80px; left: -60px; animation-duration: 14s; }
.blob-2 { width: 260px; height: 260px; background: radial-gradient(circle, var(--neon), transparent 70%); bottom: -60px; right: 10%; animation-duration: 17s; animation-delay: 2s; }
.blob-3 { width: 180px; height: 180px; background: radial-gradient(circle, var(--green-light), transparent 70%); top: 40%; right: -40px; animation-duration: 11s; animation-delay: 1s; }
@keyframes floatBlob { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.08); } }

/* Rising glow particles (like fireflies over the fields) */
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; bottom: -10px; border-radius: 50%; background: var(--neon);
  box-shadow: 0 0 8px var(--neon), 0 0 16px var(--glow); opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: .85; }
  90% { opacity: .4; }
  100% { transform: translateY(-620px) translateX(20px); opacity: 0; }
}

/* Scroll-reveal (JS adds .reveal-init then .revealed) */
.reveal-init { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-init.revealed { opacity: 1; transform: translateY(0); }

/* Glass / glow cards */
.product-grid, .values { perspective: 900px; }
.product-card, .value-card, .howto-card, .benefit {
  transition: var(--ease), box-shadow .4s ease, border-color .4s ease, transform .15s ease;
}
.product-card:hover, .value-card:hover, .howto-card:hover {
  border-color: var(--green-muted);
  box-shadow: 0 14px 40px rgba(45,106,79,0.16), 0 0 0 1px var(--green-muted) inset;
}
.benefit { position: relative; overflow: hidden; }
.benefit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, var(--green-pale) 150%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.benefit:hover::before { opacity: .5; }
.benefit:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(45,106,79,0.12); }

/* Glow buttons */
.btn-fill { position: relative; overflow: hidden; }
.btn-fill::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(82,255,168,0.5), transparent 70%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.btn-fill:hover::after { opacity: 1; }
.btn-fill:hover { box-shadow: 0 0 24px rgba(82,255,168,0.4); }

/* Marquee pulse */
.marquee-dot { box-shadow: 0 0 6px var(--green-muted); animation: pulseDot 1.6s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }

/* Gradient counter numbers */
.benefit-num, .stat-item strong {
  background: linear-gradient(120deg, var(--green), var(--neon));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

@media (max-width: 640px) {
  .blob-1 { width: 220px; height: 220px; }
  .blob-2 { width: 160px; height: 160px; }
  .blob-3 { display: none; }
}

/* Mono accents on eyebrow labels — tech/lab feel */
.section-label, .hero-tag, .marquee-item, .breadcrumb, .footer-bottom, .stat-item span, .testimonial-loc, .status-badge, .pdp-usp {
  font-family: var(--mono);
}
.section-label { letter-spacing: 1.5px; }

/* Trust value cards (reused .value-card component) */
.value-card { background: var(--white); }
.value-card .value-icon { box-shadow: 0 0 0 1px var(--green-pale); transition: box-shadow .3s ease; }
.value-card:hover .value-icon { box-shadow: 0 0 0 1px var(--green-muted), 0 0 20px var(--glow); }

/* Secure-checkout note */
.secure-note {
  margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--mono);
}
.secure-note svg { flex-shrink: 0; color: var(--green-muted); }

/* Enhanced photo framing — zoom + scrim on hover */
.split-img { position: relative; box-shadow: 0 0 0 1px rgba(0,0,0,0.04); transition: box-shadow .4s ease; }
.split-img img { transition: transform .7s cubic-bezier(.4,0,.2,1); }
.split-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,18,13,0.35));
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.split-img:hover { box-shadow: 0 20px 60px rgba(45,106,79,0.2); }
.split-img:hover img { transform: scale(1.05); }
.split-img:hover::after { opacity: 1; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04); transition: box-shadow .4s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover { box-shadow: 0 16px 40px rgba(45,106,79,0.22); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,18,13,0.75));
}
.gallery-cap {
  position: absolute; left: 12px; right: 12px; bottom: 10px; z-index: 2;
  color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: .3px; line-height: 1.4;
}

/* Timeline (About journey) */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.timeline-item { text-align: center; padding: 20px 12px 0; position: relative; }
.timeline-item::before { content: ''; position: absolute; top: 0; left: -12px; right: -12px; height: 2px; background: var(--gray-100); }
.timeline-item:first-child::before { left: 50%; }
.timeline-item:last-child::before { right: 50%; }
.timeline-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--green);
  margin: -27px auto 14px; position: relative; box-shadow: 0 0 0 4px var(--cream), 0 0 16px var(--glow);
}
.timeline-year { font-family: var(--mono); font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 6px; }
.timeline-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.timeline-item p { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

@media (max-width: 968px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item::before { display: none; }
  .timeline-dot { margin-top: 0; }
}

/* Page hero — dark glow (About + Shop) */
.about-hero {
  background: radial-gradient(circle at 20% 20%, #0e2417 0%, #06120d 50%, #030805 100%);
  position: relative;
  overflow: hidden;
}
.about-hero .container { position: relative; z-index: 3; }
.about-hero .section-label { color: var(--neon); }
.about-hero h1 {
  background: linear-gradient(120deg, var(--green-muted), var(--neon) 50%, var(--green-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: shine 6s linear infinite;
}
.about-hero .section-sub { color: rgba(234,255,241,0.65); }

/* ===== Process Animation (Khet to Pouch) ===== */
.process-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-track { position: absolute; top: 56px; left: 6%; right: 6%; height: 2px; background: var(--gray-100); z-index: 0; }
.process-pulse {
  position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 8px var(--neon), 0 0 18px var(--glow);
  animation: flowMove 6s linear infinite;
}
@keyframes flowMove { 0% { left: 0%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.process-node { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.process-illustration {
  width: 112px; height: 112px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--green-ghost); box-shadow: 0 0 0 1px var(--green-pale);
  display: flex; align-items: center; justify-content: center; transition: box-shadow .3s ease;
}
.process-node:hover .process-illustration { box-shadow: 0 0 0 1px var(--green-muted), 0 0 24px var(--glow); }
.process-step { font-family: var(--mono); font-size: 12px; color: var(--green); font-weight: 700; margin-bottom: 6px; letter-spacing: 1px; }
.process-node h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.process-node p { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

/* Stage 1 — harvest */
.fig-arm { transform-box: view-box; transform-origin: 36px 52px; animation: pick 2.2s ease-in-out infinite; }
@keyframes pick { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-22deg); } }
.leaf-fall { animation: leafFall 3s ease-in infinite; }
.leaf-fall.d2 { animation-delay: 1s; }
.leaf-fall.d3 { animation-delay: 2s; }
@keyframes leafFall { 0% { transform: translateY(0) rotate(0deg); opacity: 1; } 80% { opacity: .6; } 100% { transform: translateY(36px) rotate(50deg); opacity: 0; } }

/* Stage 2 — sun-drying */
.sun-glow { transform-box: view-box; transform-origin: 72px 24px; animation: sunPulse 2.4s ease-in-out infinite; }
@keyframes sunPulse { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.15); opacity: 1; } }
.dry-shimmer { animation: shimmer 2.5s ease-in-out infinite; }
.dry-shimmer.d2 { animation-delay: .4s; }
.dry-shimmer.d3 { animation-delay: .8s; }
@keyframes shimmer { 0%, 100% { opacity: .25; } 50% { opacity: .9; } }

/* Stage 3 — stone-grinding */
.grind-wheel { transform-box: view-box; transform-origin: 50px 28px; animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.dust-rise { animation: dustRise 2.6s ease-out infinite; }
.dust-rise.d2 { animation-delay: .8s; }
.dust-rise.d3 { animation-delay: 1.6s; }
@keyframes dustRise { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: .8; } 100% { transform: translateY(-30px); opacity: 0; } }

/* Stage 4 — packing */
.pack-flap { transform-box: view-box; transform-origin: 50px 40px; animation: flapClose 3s ease-in-out infinite; }
@keyframes flapClose { 0%, 20% { transform: rotate(-35deg); } 50%, 80% { transform: rotate(0deg); } 100% { transform: rotate(-35deg); } }
.pack-seal { animation: pulseDot 1.6s ease-in-out infinite; }

@media (max-width: 968px) {
  .process-flow { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process-track { display: none; }
}
@media (max-width: 640px) {
  .process-flow { grid-template-columns: 1fr; }
  .process-illustration { width: 96px; height: 96px; }
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 38px; }
  .hero p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-image { height: 400px; }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 320px; }
  .benefits-grid, .values { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .pdp-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-cards { grid-template-columns: 1fr 1fr; }
  .howto-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero h1 { font-size: 30px; }
  .section { padding: 56px 0; }
  .section-heading { font-size: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .benefits-grid, .values { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .size-options { flex-direction: column; }
  .add-row { flex-direction: column; }
  .howto-grid { grid-template-columns: 1fr; }
  .admin-cards { grid-template-columns: 1fr; }
}
