/* ==========================================================================
   Shivganga Dugdhalay — shared site styles (v2)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Hind:wght@400;500;600;700&display=swap');

:root{
  /* colour */
  --bg:            #FFF9EE;
  --bg-soft:       #F3ECD8;
  --ink:           #202A20;
  --muted:         #6E7A66;
  --line:          #E4D9BC;
  --primary:       #1B4632;
  --primary-dark:  #0F2E20;
  --primary-tint:  #E6EEE1;
  --accent:        #C1741F;
  --accent-dark:   #99590F;
  --accent-tint:   #F8E8D2;
  --white:         #FFFFFF;
  --danger:        #A23B2E;

  /* extra brand colours for a livelier palette */
  --pink:          #E0577C;
  --pink-tint:     #FCE4EC;
  --blue:          #2D7DD2;
  --blue-tint:     #E1EEFB;
  --yellow:        #F2B705;
  --yellow-tint:   #FDF1CE;
  --purple:        #7B4FA6;

  /* card tints, cycled across the product grid — brighter, more saturated */
  --card-a: #FBE0B8;
  --card-b: #C9EAD4;
  --card-c: #F7CBD8;
  --card-d: #C3E4F2;

  /* type */
  --font-head: 'Baloo 2', 'Noto Sans Devanagari', system-ui, sans-serif;
  --font-body: 'Hind', 'Noto Sans Devanagari', system-ui, sans-serif;

  /* spacing */
  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6rem;

  --radius: 5px;
  --radius-lg: 22px;
  --pill: 999px;
  --maxw: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background:
    radial-gradient(900px 500px at 8% 0%, var(--pink-tint) 0%, transparent 55%),
    radial-gradient(900px 600px at 95% 12%, var(--blue-tint) 0%, transparent 55%),
    radial-gradient(700px 500px at 50% 95%, var(--yellow-tint) 0%, transparent 50%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Generic scroll-reveal: elements are fully visible by default so the page
   works even if JS never adds these classes; only JS-tagged elements animate. */
.reveal-pending{ opacity: 0; transform: translateY(24px); }
.reveal-in{ animation: reveal-in .55s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes reveal-in{
  from{ opacity: 0; transform: translateY(24px); }
  to{ opacity: 1; transform: translateY(0); }
}
img, svg{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 var(--sp-2);
  color: var(--primary-dark);
}
h1{ font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -0.01em; }
h2{ font-size: clamp(1.65rem, 2.7vw, 2.2rem); }
h3{ font-size: 1.25rem; font-weight: 600; }
p{ margin: 0 0 var(--sp-2); max-width: 62ch; }
.muted{ color: var(--muted); }
.lede{ font-size: 1.12rem; color: var(--muted); max-width: 52ch; }

:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.section{ padding: var(--sp-6) 0; }
.section-head{
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.section-head h2{ margin: 0; position: relative; padding-bottom: .55rem; }
.section-head h2::after{
  content:''; position:absolute; left:0; bottom:0; width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--pink)); border-radius: var(--pill);
}
.section--tint{
  background:
    radial-gradient(500px 300px at 90% 0%, rgba(224,87,124,.12) 0%, transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(45,125,210,.12) 0%, transparent 60%),
    var(--primary-tint);
}

/* ---------- buttons & form controls ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .96rem;
  padding: .85rem 1.6rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn-primary{ background: var(--primary); color: var(--white); }
.btn-primary:hover{ background: var(--primary-dark); transform: translateY(-1px); }
.btn-accent{ background: var(--accent); color: var(--white); }
.btn-accent:hover{ background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline{ background: transparent; border-color: var(--primary); color: var(--primary-dark); }
.btn-outline:hover{ background: var(--primary); color: var(--white); }
.btn-block{ width: 100%; }
.btn[disabled]{ opacity: .5; cursor: not-allowed; transform: none; }

label{ display:block; font-weight: 600; font-size: .85rem; margin-bottom: .35rem; color: var(--primary-dark); }
input, select, textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .65rem .8rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus{ border-color: var(--primary); }
.field{ margin-bottom: var(--sp-2); }
fieldset{ border: none; padding: 0; margin: 0 0 var(--sp-2); }
.radio-row{ display:flex; align-items:center; gap:.5rem; padding:.55rem 0; border-bottom:1px solid var(--line); }
.radio-row input{ width: auto; }
.radio-row label{ margin: 0; font-weight: 500; color: var(--ink); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
}
.site-header::before{
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(251,246,236,.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  padding: .8rem var(--sp-3);
}
.logo{ display: flex; align-items: center; gap: .65rem; }
.logo-mark{ color: var(--accent); flex-shrink: 0; }
.logo-text{ font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--primary-dark); line-height: 1.15; }
.logo-sub{ display:block; font-family: var(--font-body); font-weight: 600; font-size: .66rem; letter-spacing: .05em; color: var(--accent-dark); }

.site-nav{ display: flex; align-items: center; gap: var(--sp-4); }
.site-nav a{ font-weight: 600; font-size: .95rem; color: var(--ink); padding: .3rem 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.active{ border-bottom-color: var(--accent); color: var(--primary-dark); }

.header-actions{ display: flex; align-items: center; gap: .6rem; }

.lang-select-wrap{ position: relative; display: inline-flex; }
.lang-select{
  -webkit-appearance: none; appearance: none;
  border: 1.5px solid var(--line); border-radius: var(--pill);
  background: var(--white);
  padding: .4rem 1.9rem .4rem .9rem;
  font-size: .82rem; font-weight: 700; color: var(--primary-dark);
  cursor: pointer;
  width: auto;
}
.lang-select:hover{ border-color: var(--accent); }
.lang-select-wrap::after{
  content: ''; position: absolute; right: .8rem; top: 50%;
  width: 7px; height: 7px; border: solid var(--muted); border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.cart-btn{
  position: relative; display: inline-flex; align-items: center; gap: .4rem;
  background: var(--primary); color: var(--white);
  padding: .55rem 1rem; border-radius: var(--pill); font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer;
}
.cart-btn:hover{ background: var(--primary-dark); }
.cart-count{
  background: var(--accent); color: var(--white);
  font-size: .72rem; font-weight: 700;
  min-width: 1.15rem; height: 1.15rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 .2rem;
}
.cart-count.bump{ animation: cart-bump .35s ease; }
@keyframes cart-bump{
  0%{ transform: scale(1); }
  40%{ transform: scale(1.5); background: var(--pink); }
  100%{ transform: scale(1); }
}
.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 38px; background: none; border: 1.5px solid var(--line); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span{ display:block; height: 2px; width: 18px; margin: 0 auto; background: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  padding: var(--sp-6) 0 var(--sp-5);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(680px 420px at 88% -10%, var(--accent-tint) 0%, transparent 60%),
    radial-gradient(620px 480px at 10% 10%, var(--pink-tint) 0%, transparent 55%),
    radial-gradient(600px 500px at -10% 60%, var(--primary-tint) 0%, transparent 55%),
    radial-gradient(520px 420px at 100% 90%, var(--blue-tint) 0%, transparent 55%);
}
.hero::before, .hero::after{
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  filter: blur(2px); opacity: .55; pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}
.hero::before{
  width: 140px; height: 140px; top: 8%; right: 10%;
  background: radial-gradient(circle at 30% 30%, var(--yellow), transparent 70%);
}
.hero::after{
  width: 110px; height: 110px; bottom: 2%; left: -3%;
  background: radial-gradient(circle at 30% 30%, var(--pink), transparent 70%);
  animation-delay: -4s;
}
.hero-grid{ position: relative; z-index: 1; }
@keyframes floaty{
  0%, 100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(-18px) translateX(10px); }
}
.hero-grid{
  display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--sp-5);
  align-items: center;
}
.eyebrow-text{ font-weight: 700; color: var(--accent-dark); font-size: .92rem; margin: 0 0 .6rem; }
.since-badge{
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; color: var(--primary-dark);
  background: var(--white); border: 1.5px solid var(--accent);
  padding: .3rem .8rem; border-radius: var(--pill); margin-bottom: var(--sp-2);
}
.since-badge .dot{
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(193,116,31,.5);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{
  0%{ box-shadow: 0 0 0 0 rgba(193,116,31,.45); }
  70%{ box-shadow: 0 0 0 7px rgba(193,116,31,0); }
  100%{ box-shadow: 0 0 0 0 rgba(193,116,31,0); }
}
.hero-actions{ display: flex; gap: var(--sp-2); margin-top: var(--sp-3); flex-wrap: wrap; }
.hero-stats{ display: flex; gap: var(--sp-4); margin-top: var(--sp-5); flex-wrap: wrap; }
.hero-stats div strong{ display:block; font-family: var(--font-head); font-size: 1.5rem; color: var(--primary-dark); }
.hero-stats div span{ font-size: .82rem; color: var(--muted); }

.hero-art{ position: relative; }
.hero-art svg, .hero-art img{ width: 100%; height: auto; animation: hero-float 5s ease-in-out infinite; }
@keyframes hero-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.step{
  background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg); padding: var(--sp-3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover{ transform: translateY(-4px); box-shadow: 0 16px 30px -20px rgba(15,46,32,.4); }
.step:nth-child(2){ border-top-color: var(--pink); }
.step:nth-child(3){ border-top-color: var(--blue); }
.step-num{ font-family: var(--font-head); font-size: 1.9rem; color: var(--accent); display:block; margin-bottom: .3rem; }
.step:nth-child(2) .step-num{ color: var(--pink); }
.step:nth-child(3) .step-num{ color: var(--blue); }

/* ==========================================================================
   Today's picks
   ========================================================================== */
.picks-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-3);
}
.pick-row{
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2);
  padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem;
}
.pick-row:last-child{ border-bottom: none; }
.pick-row .price{ font-weight: 700; color: var(--accent-dark); flex-shrink: 0; }

/* ==========================================================================
   Products
   ========================================================================== */
.product-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3);
}
.product-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.product-card.reveal-pending{ opacity: 0; transform: translateY(28px) scale(.97); }
.product-card.reveal-in{
  animation: card-in .55s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes card-in{
  from{ opacity: 0; transform: translateY(28px) scale(.97); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}
.product-card:hover{ box-shadow: 0 18px 36px -18px rgba(15,46,32,.4); transform: translateY(-6px); }
.product-card.just-added{ animation: card-in .55s cubic-bezier(.22,1,.36,1) forwards, card-pop .5s ease; }
@keyframes card-pop{
  0%{ box-shadow: 0 0 0 0 rgba(27,70,50,.35); }
  60%{ box-shadow: 0 0 0 14px rgba(27,70,50,0); }
  100%{ box-shadow: 0 0 0 0 rgba(27,70,50,0); }
}

.product-media{
  position: relative; padding: var(--sp-4) var(--sp-3) var(--sp-3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-height: 168px;
}
.product-media.tint-a{ background: linear-gradient(160deg, var(--card-a), var(--yellow-tint)); }
.product-media.tint-b{ background: linear-gradient(160deg, var(--card-b), var(--primary-tint)); }
.product-media.tint-c{ background: linear-gradient(160deg, var(--card-c), var(--pink-tint)); }
.product-media.tint-d{ background: linear-gradient(160deg, var(--card-d), var(--blue-tint)); }
.product-media .p-icon{ width: 76px; height: 76px; }
.product-photo{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease, filter .45s ease;
}
.product-card:hover .product-photo{ transform: scale(1.08); filter: saturate(1.12) brightness(1.03); }
.price-chip{
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  background: var(--white); color: var(--accent-dark);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: .25rem .65rem; border-radius: var(--pill);
  box-shadow: 0 4px 10px -4px rgba(15,46,32,.3);
}
.tag-pill{
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: linear-gradient(120deg, var(--accent), var(--pink));
  color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .02em;
  padding: .25rem .6rem; border-radius: var(--pill);
}
.product-body{ padding: 0 var(--sp-3) var(--sp-3); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-body h3{ margin: 0; font-size: 1.08rem; }
.product-body .unit{ font-size: .82rem; color: var(--muted); margin-top: -.4rem; }
.product-body .desc{ font-size: .87rem; color: var(--muted); margin: 0; }
.add-row{ display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: .4rem; }
.qty-stepper{ display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--pill); overflow: hidden; }
.qty-stepper button{ width: 30px; height: 34px; background: var(--bg-soft); border: none; cursor: pointer; font-size: 1rem; font-weight: 700; color: var(--primary-dark); transition: background-color .15s ease; }
.qty-stepper button:hover{ background: var(--accent-tint); color: var(--accent-dark); }
.qty-stepper span{ width: 28px; text-align: center; font-weight: 700; font-size: .9rem; }
.add-btn{ flex: 1; padding: .6rem 1rem; }
.add-btn:active{ transform: scale(.96); }

.notice-line{ font-size: .85rem; color: var(--muted); margin-top: var(--sp-3); }
.notice-line.form-error{ color: var(--danger); font-weight: 600; }

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.cart-overlay{
  position: fixed; inset: 0; background: rgba(15,26,17,.45);
  opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 50;
}
.cart-overlay.open{ opacity: 1; pointer-events: auto; }

#cart-drawer{
  position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 100%);
  background: var(--bg); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .25s ease;
  z-index: 51; display: flex; flex-direction: column;
}
#cart-drawer.open{ transform: translateX(0); }
.drawer-head{ display:flex; align-items:center; justify-content: space-between; padding: var(--sp-3); border-bottom: 1px solid var(--line); }
.drawer-close{ background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink); line-height: 1; }
.drawer-body{ padding: var(--sp-3); overflow-y: auto; flex: 1; }

.cart-line{ display:flex; justify-content: space-between; gap: var(--sp-2); padding: var(--sp-2) 0; border-bottom: 1px dashed var(--line); }
.cart-line .name{ font-weight: 700; font-size: .93rem; }
.cart-line .unit{ font-size: .78rem; color: var(--muted); }
.cart-line .line-right{ text-align: right; flex-shrink: 0; }
.cart-line .remove{ background:none; border:none; color: var(--danger); font-size: .78rem; cursor: pointer; text-decoration: underline; padding: 0; margin-top: .3rem; }
.cart-empty{ color: var(--muted); text-align: center; padding: var(--sp-5) 0; }

.summary-row{ display:flex; justify-content: space-between; font-size: .92rem; padding: .3rem 0; }
.summary-row.total{ font-weight: 700; font-size: 1.05rem; border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .6rem; }

.step-label{ font-size: .78rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .2rem; text-transform: none; }
.confirm-box{ text-align: center; padding: var(--sp-4) var(--sp-2); }
.confirm-box .p-icon{ color: var(--primary); margin: 0 auto var(--sp-2); }
.order-id{ font-family: var(--font-head); font-size: 1.15rem; color: var(--primary-dark); background: var(--primary-tint); padding: .5rem 1rem; display:inline-block; margin: var(--sp-2) 0; border: 1px dashed var(--primary); border-radius: var(--radius); }

/* ==========================================================================
   Trust / why-us
   ========================================================================== */
.trust-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.trust-item{ padding: var(--sp-3); background: var(--white); border-radius: var(--radius-lg); transition: transform .2s ease, box-shadow .2s ease; }
.trust-item:hover{ transform: translateY(-4px) rotate(-.5deg); box-shadow: 0 16px 30px -20px rgba(15,46,32,.35); }
.trust-item .p-icon{ color: var(--accent); margin-bottom: .6rem; width: 34px; height: 34px; transition: transform .25s ease; }
.trust-item:hover .p-icon{ transform: scale(1.15) rotate(6deg); }
.trust-item:nth-child(2) .p-icon{ color: var(--pink); }
.trust-item:nth-child(3) .p-icon{ color: var(--blue); }
.trust-item:nth-child(4) .p-icon{ color: var(--purple); }

/* ==========================================================================
   Visit-us band
   ========================================================================== */
.visit-band{ background: var(--primary-dark); color: #E9EFE6; }
.visit-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); align-items: center; }
.visit-band h2{ color: #FFFFFF; }
.visit-band h2::after{ background: var(--accent); }
.visit-card{ background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: var(--sp-3); }
.visit-card .p-icon{ color: var(--accent); width: 26px; height: 26px; margin-bottom: .4rem; }
.visit-row{ display: flex; gap: var(--sp-2); align-items: flex-start; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.visit-row:last-child{ border-bottom: none; }
.visit-row .p-icon{ width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: .1rem; }
.visit-row strong{ display:block; color: #FFFFFF; font-size: .92rem; }
.visit-row span{ color: #B7C4B0; font-size: .88rem; }

/* ==========================================================================
   Generic content page (about / contact / policies)
   ========================================================================== */
.page-hero{ padding: var(--sp-5) 0 var(--sp-4); border-bottom: 1px solid var(--line); background: var(--primary-tint); }
.page-hero .container{ max-width: 900px; }
.updated-note{ font-size: .85rem; color: var(--muted); }
.lang-note{ font-size: .88rem; color: var(--muted); background: var(--white); border: 1px dashed var(--line); border-radius: var(--radius); padding: .6rem .9rem; display: inline-block; margin-top: var(--sp-2); }

.prose{ max-width: 760px; }
.prose h2{ margin-top: var(--sp-5); font-size: 1.3rem; }
.prose h2:first-child{ margin-top: 0; }
.prose h3{ font-size: 1.05rem; margin-top: var(--sp-3); }
.prose p, .prose li{ max-width: 70ch; color: var(--ink); }
.prose ul, .prose ol{ margin: 0 0 var(--sp-2); padding-left: 1.3rem; }
.prose li{ margin-bottom: .4rem; list-style: disc; }
.prose ol li{ list-style: decimal; }
.toc{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); border-top: 4px solid var(--accent); padding: var(--sp-3); margin-bottom: var(--sp-4); max-width: 420px; }
.toc h4{ margin-bottom: .6rem; }
.toc li{ margin-bottom: .3rem; }
.toc a{ color: var(--primary-dark); font-weight: 600; font-size: .92rem; }
.toc a:hover{ color: var(--accent-dark); }

.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: start; }
.contact-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); border-top: 3px solid var(--primary); padding: var(--sp-3); margin-bottom: var(--sp-2); }
.contact-card h3{ font-size: 1rem; margin-bottom: .3rem; }
.contact-card a{ font-weight: 700; color: var(--primary-dark); }

.about-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.about-art{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-4); display:flex; align-items:center; justify-content:center; }
.fact-list{ margin-top: var(--sp-2); }
.fact-list li{ display:flex; justify-content: space-between; gap: var(--sp-2); padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.fact-list li span:first-child{ color: var(--muted); }
.fact-list li span:last-child{ font-weight: 700; text-align: right; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--primary-dark); color: #E9EFE6; }
.footer-grid{
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-3) var(--sp-4);
}
.footer-brand .logo-text, .footer-brand .logo-sub{ color: #E9EFE6; }
.footer-brand p{ color: #B7C4B0; font-size: .88rem; margin-top: .5rem; max-width: 26ch; }
.footer-col h4{ color: #E9EFE6; font-size: .82rem; letter-spacing: .03em; margin-bottom: .8rem; font-family: var(--font-body); font-weight: 700; }
.footer-col a, .footer-col p{ display:block; color: #B7C4B0; font-size: .9rem; margin-bottom: .55rem; }
.footer-col a:hover{ color: #FFFFFF; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.12); padding: var(--sp-2) var(--sp-3); }
.footer-bottom p{ color: #94A390; font-size: .82rem; margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px){
  .hero-grid, .about-grid, .contact-grid, .visit-grid{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; max-width: 320px; margin: 0 auto; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }

  .site-nav{
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column; align-items: flex-start;
    padding: var(--sp-3); gap: var(--sp-2);
    transform: translateY(-110%); transition: transform .2s ease;
    z-index: 39; border-top: 1px solid var(--line);
  }
  .site-nav.open{ transform: translateY(0); }
  .nav-toggle{ display: flex; }
}
@media (max-width: 640px){
  .product-grid{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  #cart-drawer{ width: 100%; }
  .lang-select{ padding: .32rem 1.6rem .32rem .6rem; font-size: .74rem; }
  .cart-btn span:not(.cart-count){ display: none; }
}
