/* ==========================================================================
   Tulsi vegetable — stylesheet
   Design language: an Indian sabzi-mandi (vegetable market) signboard —
   chalkboard greens, kraft-paper cream, turmeric gold, tomato red used only
   as a functional "sale" colour. Fraunces for character, Work Sans for body,
   Space Mono for prices/labels (receipt & chalk-tag feel).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* colour — light, airy market palette. Dark green is now an accent only. */
  --ink: #1F3A2E;
  /* deep chalkboard green — text & small accents */
  --ink-2: #4C6459;
  /* softer green-grey for secondary text */
  --cream: #FBF7EC;
  /* kraft paper background */
  --cream-2: #FFFFFF;
  /* card surface, paper white */
  --sage: #EAF3E1;
  /* pale leaf-green panel (header/hero/footer) */
  --sage-2: #F2F8EC;
  /* lighter sage wash */
  --line: #E4DBC3;
  /* hairline border on cream */
  --line-dark: rgba(31, 58, 46, 0.12);
  /* hairline on light sage panels */
  --turmeric: #E4A23A;
  /* accent / CTA */
  --turmeric-d: #B87A1E;
  /* turmeric hover / accent text on light bg */
  --tomato: #C0392B;
  /* sale badge only */
  --leaf: #4C7A5C;
  /* mid green accent */
  --leaf-light: #74A868;
  /* bright leaf accent for highlights */
  --paper-shadow: 0 10px 30px rgba(31, 58, 46, 0.10);

  /* type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* layout */
  --container: 1180px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--turmeric);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--dark {
  background: var(--sage);
  color: var(--ink);
}

.section--card {
  background: var(--cream-2);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turmeric-d);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.section--dark .eyebrow {
  color: var(--turmeric-d);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 17px;
}

.section--dark .section-head p {
  color: var(--ink-2);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--turmeric);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--turmeric-d);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--turmeric-d);
}

.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--turmeric-d);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(31, 58, 46, 0.08);
  color: var(--ink-2);
}

.tag--sale {
  background: var(--tomato);
  color: #fff;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.97);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger>* {
  transition-delay: calc(var(--i, 0) * 70ms);
}

.feature-grid .feature-card:nth-child(1) {
  transition-delay: 0ms;
}

.feature-grid .feature-card:nth-child(2) {
  transition-delay: 90ms;
}

.feature-grid .feature-card:nth-child(3) {
  transition-delay: 180ms;
}

.feature-grid .feature-card:nth-child(4) {
  transition-delay: 270ms;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  backdrop-filter: blur(10px) saturate(1.4);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.brand:hover .brand-mark {
  transform: rotate(-14deg) scale(1.08);
}

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--turmeric-d);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  position: relative;
  transition: background .2s ease, color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--turmeric-d);
  transform: translateX(-50%);
  transition: width .28s ease;
}

.main-nav a:hover {
  color: var(--turmeric-d);
}

.main-nav a:hover::after {
  width: 22px;
}

.main-nav a.active {
  color: var(--turmeric-d);
}

.main-nav a.active::after {
  width: 22px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sage);
  border: 1px solid var(--line-dark);
  position: relative;
  transition: background .2s ease, transform .2s ease;
}

.icon-btn:hover {
  background: var(--sage-2);
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--tomato);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--cream-2);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.cart-count.bump {
  animation: bump .35s ease;
}

@keyframes bump {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

.nav-toggle {
  display: none;
}

/* mobile nav */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--cream-2);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .32s ease;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 17px;
    color: var(--ink);
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--sage);
    border: 1px solid var(--line-dark);
  }

  .nav-toggle svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background:
    radial-gradient(ellipse 620px 420px at 88% -6%, rgba(228, 162, 58, 0.16), transparent 62%),
    linear-gradient(160deg, #F6F2E4 0%, #EEF5E4 46%, #E4F0DA 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
  animation: auroraDrift 16s ease-in-out infinite;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(116, 168, 104, 0.45), transparent 70%);
}

.hero::after {
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -90px;
  background: radial-gradient(circle, rgba(228, 162, 58, 0.30), transparent 70%);
  animation-delay: -8s;
  animation-direction: reverse;
}

@keyframes auroraDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -26px) scale(1.12);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--turmeric-d);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow svg {
  animation: leafWiggle 2.6s ease-in-out infinite;
}

@keyframes leafWiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-14deg);
  }
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--turmeric-d), var(--leaf-light) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-hi {
  font-size: 18px;
  margin-top: 16px;
  color: var(--ink-2);
}

.hero-sub {
  margin-top: 18px;
  font-size: 17.5px;
  color: var(--ink-2);
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  position: relative;
}

.hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--turmeric);
  opacity: 0;
  animation: ctaPulse 2.6s ease-out infinite;
}

@keyframes ctaPulse {
  0% {
    opacity: .55;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--turmeric-d);
}

.hero-trust span {
  font-size: 12.5px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* crate illustration */
.hero-art {
  position: relative;
}

.crate-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.crate-float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(-0.6deg);
  }
}

.veg-bob {
  animation: bob 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.veg-bob.d1 {
  animation-delay: .2s;
}

.veg-bob.d2 {
  animation-delay: .6s;
}

.veg-bob.d3 {
  animation-delay: 1s;
}

.veg-bob.d4 {
  animation-delay: 1.4s;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

.chalk-tag {
  animation: swing 3.5s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes swing {

  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

/* marquee ticker */
.ticker {
  border-top: 1px solid var(--line);
  background: var(--sage);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 26s linear infinite;
  padding: 14px 0;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--ink-2);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.ticker-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--turmeric-d);
  animation: tickSpin 3.2s ease-in-out infinite;
}

.ticker-item:nth-child(even) svg {
  animation-delay: .5s;
}

@keyframes tickSpin {

  0%,
  80%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  90% {
    transform: rotate(-18deg) scale(1.15);
  }
}

/* ==========================================================================
   CATEGORY CHIPS + SEARCH
   ========================================================================== */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--cream-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .2s ease;
}

.chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  min-width: 240px;
}

.search-box svg {
  width: 17px;
  height: 17px;
  color: var(--ink-2);
  flex-shrink: 0;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 14.5px;
  color: var(--ink);
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--cream-2);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  padding: 20px 18px 22px;
  position: relative;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}

.product-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: var(--paper-shadow);
  border-color: rgba(180, 150, 90, 0.35);
}

.product-card .clip {
  position: absolute;
  top: -10px;
  left: 22px;
  width: 26px;
  height: 18px;
  background: var(--turmeric);
  border-radius: 3px;
  transform: rotate(-6deg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: transform .35s ease;
}

.product-card:hover .clip {
  transform: rotate(4deg) translateY(-2px);
}

.product-media {
  background: var(--pc, #EAE2C8);
  border-radius: var(--radius-s);
  aspect-ratio: 1/0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}

.product-media svg {
  width: 100%;
  height: 100%;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.product-card:hover .product-media svg {
  transform: scale(1.08) rotate(-3deg);
}

.product-card .tag {
  position: absolute;
  top: 14px;
  right: 14px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 14px;
  min-height: 36px;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
}

.product-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-2);
}

.add-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.add-btn:hover {
  background: var(--turmeric-d);
  transform: scale(1.08) rotate(90deg);
}

.add-btn svg {
  width: 18px;
  height: 18px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  overflow: hidden;
}

.qty-stepper button {
  width: 36px;
  height: 36px;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.qty-stepper button:hover {
  background: rgba(246, 239, 221, .15);
}

.qty-stepper span {
  font-family: var(--font-mono);
  min-width: 26px;
  text-align: center;
  font-size: 14px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-2);
  grid-column: 1/-1;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feature-card {
  text-align: left;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(217, 146, 42, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), background .3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-8deg);
  background: rgba(217, 146, 42, 0.24);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--turmeric-d);
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.stat {
  text-align: center;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 40px;
  display: block;
  color: var(--turmeric-d);
}

.stat span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
  animation: testiIn .6s cubic-bezier(.22, 1, .36, 1);
}

@keyframes testiIn {
  from {
    opacity: 0;
    transform: translateX(24px) rotate(1deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-style: italic;
  line-height: 1.5;
}

.testi-who {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.testi-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  transition: all .2s;
}

.testi-dots button.active {
  background: var(--turmeric-d);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   NEWSLETTER / WHATSAPP BAND
   ========================================================================== */
.band {
  background: var(--turmeric);
  color: var(--ink);
  border-radius: var(--radius-l);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.band h3 {
  font-size: clamp(22px, 3vw, 30px);
}

.band p {
  margin-top: 8px;
  color: rgba(31, 58, 46, 0.75);
}

.band .btn-outline {
  border-color: var(--ink);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage) 100%);
  color: var(--ink-2);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand {
  color: var(--ink);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14.5px;
  max-width: 280px;
  color: var(--ink-2);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .2s, transform .25s ease;
}

.footer-social a:hover {
  background: var(--turmeric);
  color: var(--ink);
  transform: translateY(-3px) rotate(-6deg);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--turmeric-d);
  margin-bottom: 18px;
  font-weight: 400;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 14.5px;
}

.footer-col a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-col p.addr {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: var(--ink-2);
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 58, 46, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 900;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--cream-2);
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.65, 0, .35, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--sage);
  color: var(--ink);
}

.cart-head h3 {
  font-size: 20px;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 58, 46, .07);
  transition: background .2s, transform .2s;
}

.cart-close:hover {
  background: rgba(31, 58, 46, .14);
  transform: rotate(90deg);
}

.cart-close svg {
  width: 16px;
  height: 16px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}

.cart-item-media {
  width: 64px;
  height: 64px;
  background: var(--pc, #EAE2C8);
  border-radius: 10px;
  padding: 8px;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
}

.cart-item-unit {
  font-size: 12px;
  color: var(--ink-2);
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: 13.5px;
  margin-top: 6px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-remove {
  font-size: 12px;
  color: var(--tomato);
  font-family: var(--font-mono);
  text-decoration: underline;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-2);
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  opacity: .4;
}

.cart-summary {
  padding: 20px 24px 26px;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.summary-row.total {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* toast */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 120%);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--paper-shadow);
  z-index: 1000;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.toast.show {
  transform: translate(-50%, 0);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--turmeric);
  flex-shrink: 0;
}

/* back to top */
.to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 400;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: var(--paper-shadow);
}

.to-top.show {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   INNER PAGE HEADER (for terms/privacy/faq/service/contact)
   ========================================================================== */
.page-banner {
  background:
    radial-gradient(ellipse 520px 320px at 90% 0%, rgba(228, 162, 58, 0.16), transparent 60%),
    linear-gradient(160deg, #F6F2E4 0%, #EAF3E1 100%);
  color: var(--ink);
  padding: 64px 0 54px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: -160px;
  left: -100px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
  background: radial-gradient(circle, rgba(116, 168, 104, 0.4), transparent 70%);
  animation: auroraDrift 16s ease-in-out infinite;
}

.page-banner h1 {
  font-size: clamp(32px, 5vw, 48px);
  position: relative;
}

.page-banner p {
  margin-top: 14px;
  color: var(--ink-2);
  max-width: 560px;
  font-size: 16px;
  position: relative;
}

.crumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--turmeric-d);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}

/* legal content */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 38px;
}

.legal-wrap h2 {
  font-size: 23px;
  margin-top: 44px;
  margin-bottom: 14px;
}

.legal-wrap h2:first-of-type {
  margin-top: 0;
}

.legal-wrap p {
  color: var(--ink-2);
  margin-bottom: 14px;
  font-size: 15.5px;
}

.legal-wrap ul {
  margin-bottom: 14px;
}

.legal-wrap li {
  color: var(--ink-2);
  font-size: 15.5px;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.legal-wrap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--turmeric);
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
}

.legal-nav a {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 600;
}

.legal-nav a:hover,
.legal-nav a.active {
  background: var(--ink);
  color: var(--cream);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  margin-bottom: 14px;
  background: var(--cream-2);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
  position: relative;
  transition: transform .3s ease, background .3s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

.faq-q .plus::before {
  left: 50%;
  top: 20%;
  bottom: 20%;
  width: 2px;
  transform: translateX(-50%);
}

.faq-q .plus::after {
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-item.open .plus {
  background: var(--ink);
}

.faq-item.open .plus::before {
  opacity: 0;
}

.faq-item.open .plus::after {
  background: var(--cream);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 15px;
  max-width: 620px;
}

.faq-cat-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  gap: 16px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
}

.info-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(217, 146, 42, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .ic svg {
  width: 22px;
  height: 22px;
  color: var(--turmeric-d);
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.info-card a {
  font-weight: 600;
  color: var(--ink);
}

.info-card a:hover {
  text-decoration: underline;
}

.map-frame {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 16px;
  height: 220px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(8%) saturate(92%);
}

.contact-form-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px;
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: none;
}

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

.field-error {
  font-size: 12.5px;
  color: var(--tomato);
  margin-top: 6px;
  display: none;
}

.field.invalid input,
.field.invalid textarea {
  border-color: var(--tomato);
}

.field.invalid .field-error {
  display: block;
}

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: rgba(76, 122, 92, 0.12);
  border: 1px solid var(--leaf);
  padding: 18px 20px;
  border-radius: var(--radius-s);
  margin-bottom: 20px;
}

.form-success.show {
  display: flex;
  animation: fadeUp .4s ease;
}

.form-success svg {
  width: 24px;
  height: 24px;
  color: var(--leaf);
  flex-shrink: 0;
}

.form-success strong {
  display: block;
  font-size: 14.5px;
}

.form-success span {
  font-size: 13px;
  color: var(--ink-2);
}

/* ==========================================================================
   SERVICE PAGE
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.service-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--turmeric-d);
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.service-card ul li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.service-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--turmeric-d);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step .circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--ink-2);
}

.process-line {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 1px;
  border-top: 2px dashed var(--line);
  z-index: 0;
}

.process-step:last-child .process-line {
  display: none;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
  }

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

  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 900px) {
  .main-nav a {
    color: var(--cream);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card {
    padding: 14px 12px 16px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .process-row {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 32px 22px;
    flex-direction: column;
    text-align: center;
  }

  .cart-drawer {
    width: 100vw;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}



/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

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

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

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5ece7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(31, 58, 46, 0.12);
}

/* Image */
.product-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Tags */
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  z-index: 2;
}

.tag-bestseller {
  background: #fef3c7;
  color: #92400e;
}

.tag-fresh {
  background: #dbeafe;
  color: #1e40af;
}

.tag-sale {
  background: #fee2e2;
  color: #b91c1c;
}

.tag-new {
  background: #ede9fe;
  color: #5b21b6;
}

/* Body */
.product-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #1f3a2e;
  margin: 0 0 4px;
  line-height: 1.3;
}

.product-desc {
  font-size: 12px;
  color: #6b7c72;
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}

.price-current {
  font-size: 16px;
  font-weight: 800;
  color: #1f3a2e;
}

.price-old {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 3px;
}

.price-unit {
  font-size: 11.5px;
  color: #6b7c72;
}

.btn-add {
  background: #1f3a2e;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-add:hover {
  background: #2d5a45;
}

/* Chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1.5px solid #d1ddd4;
  background: #fff;
  color: #3d5246;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.chip.active {
  background: #1f3a2e;
  color: #fff;
  border-color: #1f3a2e;
}

.chip:hover:not(.active) {
  border-color: #1f3a2e;
  color: #1f3a2e;
}