/* ============================================================
   PARNAR INTERNATIONAL — Core Stylesheet
   Design tokens: warm kraft-paper / ayurvedic botanical system
   ============================================================ */

:root {
  /* --- Color tokens --- */
  --cream:        #F8F3E9;
  --cream-deep:   #F1E8D8;
  --kraft:        #E3C9A0;
  --kraft-deep:   #C9A871;
  --kraft-line:   #A9824F;
  --ink:          #3D2817;
  --ink-soft:     #5C4631;
  --forest:       #146235;
  --forest-deep:  #0E4A27;
  --forest-soft:  #DCE9DD;
  --terracotta:   #C4631C;
  --terracotta-soft: #F0D2B8;
  --rose:         #A8425C;
  --rose-soft:    #F3DCE3;
  --paper:        #FFFDF8;
  --line:         rgba(61,40,23,0.14);

  /* --- Type --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* --- Shape --- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --shadow-soft: 0 8px 30px rgba(61,40,23,0.10);
  --shadow-deep: 0 20px 60px rgba(61,40,23,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.12;
  font-weight: 600;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2.5px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   TORN PAPER DIVIDER — signature motif
   ============================================================ */
.torn-divider {
  position: relative;
  height: 46px;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
}
.torn-divider svg { width: 100%; height: 100%; display: block; }
.torn-divider.flip { transform: scaleY(-1); }

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  font-weight: 500;
}
.announce-bar strong { font-weight: 700; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,243,233,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-link img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.15s, background 0.2s;
}
.nav-cart-btn:hover { background: var(--forest-deep); transform: translateY(-1px); }
.cart-count {
  background: var(--terracotta);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -6px;
  border: 2px solid var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-row { padding: 14px 20px; }
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-drawer.open { display: block; }
.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,40,23,0.45);
}
.mobile-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 84vw);
  height: 100%;
  background: var(--paper);
  padding: 28px 26px;
  box-shadow: var(--shadow-deep);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-drawer-panel a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20,98,53,0.28);
}
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(20,98,53,0.34); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-terracotta {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 10px 24px rgba(196,99,28,0.3);
}
.btn-terracotta:hover { background: #A8511A; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-soft);
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
}
.hero p.lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--forest); flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .hero-visual { order: -1; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-header p { color: var(--ink-soft); font-size: 16.5px; }
.section-header.left { text-align: left; margin: 0 0 44px; }

.bg-cream-deep { background: var(--cream-deep); }
.bg-forest { background: var(--forest); color: #fff; }
.bg-forest h2, .bg-forest h3 { color: #fff; }
.bg-paper { background: var(--paper); }

/* ============================================================
   PRODUCT CARDS (grid)
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2,1fr); gap: 18px; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

.product-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.product-card-media {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--cream-deep), var(--kraft) 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
}
.product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.35s; }
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--terracotta);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}
.product-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--forest); }
.product-card-body h3 { font-size: 19px; }
.product-card-body p { font-size: 13.5px; color: var(--ink-soft); margin: 0; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.price-row { display: flex; align-items: baseline; gap: 8px; }
.price-now { font-size: 20px; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.price-was { font-size: 14px; color: var(--ink-soft); text-decoration: line-through; opacity: 0.7; }
.add-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--forest-deep); transform: scale(1.08); }
.add-btn svg { width: 19px; height: 19px; }

/* ============================================================
   ICON FEATURE GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--forest-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--forest); }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   STORY / SPLIT SECTION
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) {
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: -1; }
}
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; }
.split-copy h2 { margin-bottom: 18px; font-size: clamp(26px,3.6vw,38px); }
.split-copy p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.split-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.split-list-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.split-list-item svg { width: 22px; height: 22px; color: var(--forest); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.stars { color: var(--terracotta); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--forest-deep); font-size: 15px;
  font-family: var(--font-display);
}
.testimonial-author strong { font-size: 14.5px; display: block; }
.testimonial-author span { font-size: 12.5px; color: var(--ink-soft); }

/* ============================================================
   NEWSLETTER / CTA BAND
   ============================================================ */
.cta-band {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(24px,3vw,32px); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 15.5px; max-width: 420px; }
.cta-band .btn-terracotta { flex-shrink: 0; }
@media (max-width: 720px) { .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.78); padding: 68px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14.5px; max-width: 280px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--forest); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; color: rgba(255,255,255,0.7); }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--terracotta); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 13px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 22px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--ink-soft);
  padding: 22px 0 0;
}
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  padding: 30px 0 50px;
  text-align: center;
}
.page-header h1 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 14px; }
.page-header p { color: var(--ink-soft); font-size: 16.5px; max-width: 560px; margin: 0 auto; }

/* ============================================================
   SHOP FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--forest); color: var(--forest); }
.filter-chip.active { background: var(--forest); color: #fff; border-color: var(--forest); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 36px 0 70px;
  align-items: start;
}
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 32px; } }

.pdp-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream-deep), var(--kraft) 160%);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.pdp-gallery-main img { max-height: 100%; object-fit: contain; }
.pdp-thumbs { display: flex; gap: 12px; }
.pdp-thumb {
  width: 84px; height: 84px;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
  border: 2px solid transparent;
  padding: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pdp-thumb.active { border-color: var(--forest); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }

.pdp-info-tag { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--forest); margin-bottom: 10px; display: block; }
.pdp-info h1 { font-size: clamp(28px,3.6vw,38px); margin-bottom: 12px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pdp-rating .stars { margin: 0; }
.pdp-rating span { font-size: 13.5px; color: var(--ink-soft); }
.pdp-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.pdp-price-now { font-size: 32px; font-weight: 700; font-family: var(--font-display); }
.pdp-price-was { font-size: 18px; text-decoration: line-through; color: var(--ink-soft); opacity: 0.7; }
.pdp-save { background: var(--terracotta-soft); color: var(--terracotta); font-size: 12.5px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.pdp-tax-note { font-size: 13px; color: var(--ink-soft); margin-bottom: 26px; }
.pdp-desc { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 26px; }

.qty-row { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.qty-stepper { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 42px; height: 42px; background: var(--cream-deep); border: none; font-size: 18px; font-weight: 700; color: var(--ink); }
.qty-stepper button:hover { background: var(--kraft); }
.qty-stepper input { width: 46px; text-align: center; border: none; background: transparent; font-size: 15px; font-weight: 700; font-family: inherit; }
.pdp-actions { display: flex; gap: 14px; margin-bottom: 30px; }
.pdp-actions .btn { flex: 1; }

.pdp-trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 30px; }
.pdp-trust-item { display: flex; gap: 10px; align-items: center; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.pdp-trust-item svg { width: 20px; height: 20px; color: var(--forest); flex-shrink: 0; }

.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 2px;
  background: none; border: none;
  font-size: 15.5px; font-weight: 700; color: var(--ink);
  text-align: left;
}
.accordion-trigger svg { width: 18px; height: 18px; transition: transform 0.25s; flex-shrink: 0; }
.accordion-item.open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.accordion-item.open .accordion-panel { max-height: 600px; }
.accordion-panel-inner { padding: 0 2px 20px; }
.accordion-panel-inner ul { display:flex; flex-direction:column; gap:8px; }
.accordion-panel-inner li { padding-left: 18px; position: relative; }
.accordion-panel-inner li::before { content:'•'; position:absolute; left:0; color: var(--forest); font-weight:700; }

.use-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 760px) { .use-steps { grid-template-columns: repeat(2,1fr); } }
.use-step { background: var(--cream-deep); border-radius: var(--radius-sm); padding: 18px; }
.use-step .num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--forest); margin-bottom: 8px; display:block; }
.use-step p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

.related-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 900px) { .related-strip { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer-overlay {
  position: fixed; inset: 0; background: rgba(61,40,23,0.45);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(420px, 92vw);
  background: var(--paper);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-deep);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.cart-drawer-head h3 { font-size: 19px; }
.cart-drawer-head button { background: none; border: none; font-size: 24px; color: var(--ink); }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-line { display: flex; gap: 14px; align-items: flex-start; }
.cart-line img { width: 64px; height: 64px; border-radius: 10px; background: var(--cream-deep); object-fit: contain; padding: 6px; flex-shrink: 0; }
.cart-line-info { flex: 1; }
.cart-line-info h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.cart-line-info .meta { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 8px; }
.cart-line-controls { display: flex; align-items: center; justify-content: space-between; }
.cart-line-qty { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 3px 4px; }
.cart-line-qty button { width: 22px; height: 22px; background: none; border: none; font-size: 14px; font-weight: 700; }
.cart-line-qty span { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }
.cart-line-remove { background: none; border: none; color: var(--ink-soft); font-size: 12.5px; text-decoration: underline; }
.cart-line-price { font-weight: 700; font-size: 14px; white-space: nowrap; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.cart-empty svg { width: 56px; height: 56px; color: var(--kraft-line); margin-bottom: 16px; }
.cart-drawer-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-subtotal-row { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cart-shipping-note { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 16px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: var(--shadow-deep);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast svg { width: 18px; height: 18px; color: #8FD19E; }

/* ============================================================
   CART / CHECKOUT PAGE
   ============================================================ */
.cart-page-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .cart-page-grid { grid-template-columns: 1fr; } }
.cart-table-head { display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr auto; gap: 14px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); padding: 0 0 16px; border-bottom: 1.5px solid var(--line); }
.cart-table-row { display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr auto; gap: 14px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-table-product { display: flex; gap: 16px; align-items: center; }
.cart-table-product img { width: 72px; height: 72px; border-radius: 12px; background: var(--cream-deep); object-fit: contain; padding: 8px; }
.cart-table-product h4 { font-size: 15px; margin-bottom: 4px; }
.cart-table-product span { font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 700px) {
  .cart-table-head { display: none; }
  .cart-table-row { grid-template-columns: 1fr; gap: 10px; }
}
.summary-card { background: var(--cream-deep); border-radius: var(--radius-md); padding: 28px; }
.summary-card h3 { font-size: 19px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 12px; color: var(--ink-soft); }
.summary-row.total { font-size: 18px; font-weight: 700; color: var(--ink); border-top: 1.5px solid var(--line); padding-top: 16px; margin-top: 6px; }
.promo-row { display: flex; gap: 8px; margin: 18px 0; }
.promo-row input { flex: 1; padding: 11px 14px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 13.5px; background: var(--paper); }

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding-bottom: 40px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: 112px; top: 8px; bottom: -4px;
  width: 2px; background: var(--line);
}
.timeline-item:last-child::before { display: none; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--forest); text-align: right; padding-top: 2px; }
.timeline-item h4 { font-size: 17px; margin-bottom: 6px; }
.timeline-item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 560px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-item::before { display: none; }
  .timeline-year { text-align: left; }
}

.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 20px; }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2,1fr); } }
.stat-num { font-family: var(--font-display); font-size: clamp(32px,5vw,48px); font-weight: 700; color: var(--forest); }
.stat-label { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--forest); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.78); font-size: 14.5px; margin-bottom: 30px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-item svg { width: 22px; height: 22px; color: #C9F5C9; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h5 { font-size: 14px; margin-bottom: 4px; font-weight: 700; }
.contact-info-item p { font-size: 14px; color: rgba(255,255,255,0.78); margin: 0; }
.contact-form { background: var(--paper); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid var(--line); font-size: 14.5px; font-family: inherit;
  background: var(--cream);
  color: var(--ink);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--forest); }

.faq-list { max-width: 760px; margin: 0 auto; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.in-view { opacity: 1; transform: translateY(0); }
/* If JS never runs (disabled/blocked), CSS alone must not hide content */
.fade-in { animation: fadeInFallback 0s 1.2s forwards; }
@keyframes fadeInFallback { to { opacity: 1; transform: none; } }
