:root {
  --peach: #FEECE7;
  --peach-mid: #F8D9D0;
  --peach-deep: #F3C4B6;
  --cream: #FFF9F7;
  --white: #FFFFFF;
  --salmon: #E9967A;
  --salmon-btn: #D47358;
  --salmon-hover: #C45E42;
  --charcoal: #3A322E;
  --text: #4A413C;
  --muted: #7A6E68;
  --line: #EEDFD8;
  --gold: #C5A059;
  --gold-soft: #D4AF37;
  --green: #2D5A27;
  --green-soft: #3D7A36;
  --star: #E0A106;
  --shadow: 0 10px 30px rgba(212, 115, 88, 0.12);
  --shadow-soft: 0 6px 20px rgba(58, 50, 46, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 78px;
  --topbar-h: 40px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
button { cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--salmon);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--charcoal);
  color: #fff;
  padding: 8px 14px;
  z-index: 10000;
  border-radius: 6px;
}
.skip-link:focus { top: 8px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ========== TOP BAR (scrolling ticker) ========== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 80;
}
.topbar {
  background: var(--peach);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  height: var(--topbar-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.topbar-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.topbar-group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  white-space: nowrap;
}
.topbar-group span,
.topbar-group a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 600;
}
.topbar-group a:hover { color: var(--salmon-hover); }
.topbar-group svg {
  width: 14px;
  height: 14px;
  color: var(--salmon-btn);
  flex-shrink: 0;
}
.topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
}
.topbar:hover .topbar-track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 62px;
  width: auto;
}
.brand-text { line-height: 1.15; }
.brand-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.18em;
  color: #111;
  font-weight: 700;
}
.brand-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--green);
  font-weight: 600;
  margin-top: 3px;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav a, .nav-drop > button {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  padding: 10px 9px;
  background: none;
  border: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav a:hover, .nav-drop > button:hover,
.nav a.is-active, .nav-drop > button.is-active {
  color: var(--salmon-btn);
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 4px;
  height: 2px;
  background: var(--salmon);
  border-radius: 2px;
}
.nav-drop { position: relative; }
.nav-drop svg { width: 12px; height: 12px; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 10px 12px;
  letter-spacing: 0.06em;
  border-radius: 8px;
}
.nav-drop-menu a:hover { background: var(--peach); color: var(--charcoal); }
.nav-drop-menu a::after { display: none; }

.header-utils {
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
}
.icon-btn:hover { background: var(--peach); color: var(--salmon-btn); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--salmon-btn);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}
.menu-toggle { display: none; }

/* ========== HERO ========== */
.hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(233, 150, 122, 0.18), transparent 50%),
    linear-gradient(180deg, var(--peach) 0%, #FFF3EE 55%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 520px;
  height: 520px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path fill='none' stroke='%23E9967A' stroke-width='0.6' opacity='0.35' d='M40 180 C60 80 90 40 120 20'/><path fill='none' stroke='%232D5A27' stroke-width='0.5' opacity='0.2' d='M80 190 C90 110 140 70 170 40'/></svg>") no-repeat;
  background-size: contain;
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 48px 0 28px;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--salmon-btn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  color: var(--charcoal);
  font-weight: 600;
  margin: 18px 0 10px;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 10px;
}
.hero p {
  max-width: 520px;
  color: var(--muted);
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1.5px solid transparent;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--salmon-btn);
  color: #fff;
  box-shadow: 0 8px 18px rgba(212, 115, 88, 0.28);
}
.btn-primary:hover {
  background: var(--salmon-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: #fff;
  color: var(--charcoal);
  border-color: var(--peach-deep);
}
.btn-outline:hover {
  border-color: var(--salmon-btn);
  color: var(--salmon-hover);
}
.btn-block { width: 100%; }
.btn:active { transform: translateY(0); }

.hero-visual {
  position: relative;
  min-height: 460px;
}
.hero-woman {
  width: min(100%, 420px);
  margin-left: auto;
  border-radius: 180px 180px 28px 28px;
  object-fit: cover;
  height: 500px;
  box-shadow: 0 24px 50px rgba(212, 115, 88, 0.22);
}
.hero-products {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 240px;
  background: radial-gradient(circle at 50% 70%, #fff 0%, var(--peach) 72%);
  border-radius: 50%;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-products img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 8px 0 36px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px;
}
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--salmon);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--salmon-btn);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-item p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  max-width: 140px;
  line-height: 1.35;
}

/* ========== SECTIONS ========== */
.section { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }
.section-peach { background: var(--peach); }

.section-head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-head h2::before,
.section-head h2::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5A27' stroke-width='1.8'><path d='M12 21C12 21 5 14.5 5 9.5C5 6.5 7.5 5 10 5C11.2 5 12 5.8 12 5.8C12 5.8 12.8 5 14 5C16.5 5 19 6.5 19 9.5C19 14.5 12 21 12 21Z'/></svg>") center / contain no-repeat;
}
.section-head.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.section-head.row h2::before, .section-head.row h2::after { display: none; }
.link-all {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--salmon-btn);
  border: 1.5px solid var(--peach-deep);
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
}
.link-all:hover { background: var(--peach); }

/* ========== CATEGORIES ========== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 10px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--peach-deep);
  box-shadow: var(--shadow);
}
.cat-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--peach);
  display: grid;
  place-items: center;
  color: var(--salmon-btn);
}
.cat-icon svg { width: 36px; height: 36px; }
.cat-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

/* ========== PRODUCTS ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid #F3E7E1;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-media {
  background: linear-gradient(180deg, #FFF6F2, var(--peach));
  height: 240px;
  display: grid;
  place-items: center;
  position: relative;
  padding: 16px;
}
.product-media img {
  max-height: 210px;
  width: auto;
  object-fit: contain;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--salmon-btn);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  border-radius: 999px;
}
.badge.green { background: var(--green); }
.product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-serif);
}
.stars { color: var(--star); font-size: 13px; letter-spacing: 1px; }
.stars span { color: var(--muted); font-size: 11px; letter-spacing: 0; margin-left: 4px; }
.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}
.price s {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}
.product-body .btn { margin-top: auto; }

/* ========== TESTIMONIALS ========== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid #F3E7E1;
}
.review-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--peach);
}
.review-card p {
  color: var(--text);
  font-size: 14px;
  margin: 10px 0 14px;
}
.review-card strong {
  display: block;
  color: var(--charcoal);
  font-size: 14px;
}
.review-card small {
  color: var(--muted);
  font-size: 12px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--peach);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--salmon-btn);
}

/* ========== INGREDIENTS / BENEFITS ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ing-item {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--line);
}
.ing-item b { display: block; color: var(--charcoal); font-size: 14px; }
.ing-item span { font-size: 12px; color: var(--muted); }
.ing-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ing-dot svg { width: 20px; height: 20px; }
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg { width: 12px; height: 12px; }

.panel-copy h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.panel-copy p { color: var(--muted); }

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(180deg, var(--peach), var(--cream));
  padding: 48px 0 36px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 8px;
  color: var(--charcoal);
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--salmon-btn); }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.info-card, .form-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.info-row svg { width: 22px; height: 22px; color: var(--salmon-btn); flex-shrink: 0; }
.info-row b { display: block; color: var(--charcoal); }
.form-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  color: var(--charcoal);
}
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--charcoal);
}
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: 2px solid var(--salmon);
  border-color: var(--salmon);
  background: #fff;
}

.map-wrap {
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--peach);
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; }

/* ========== ABOUT ========== */
.about-lead {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  background: #fff;
  border-radius: 16px;
  padding: 22px 10px;
  text-align: center;
  border: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--salmon-btn);
}
.stat span { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--peach);
  padding: 56px 0 0;
  color: var(--text);
  overflow: hidden;
}
.site-footer svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(140px, 1fr)) minmax(200px, 1.15fr);
  gap: 32px 28px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.footer-brand img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left top;
}
.footer-address {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  max-width: 260px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.footer-contact a:hover { color: var(--salmon-hover); }
.footer-contact svg,
.footer-brand > a svg,
.footer-brand p svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
  color: var(--salmon-btn);
}
.footer-col p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--salmon-btn);
}
.socials a:hover { background: var(--salmon-btn); color: #fff; }
.socials svg { width: 16px; height: 16px; }
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
}
.footer-col a:hover { color: var(--salmon-hover); }
.newsletter {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--peach-deep);
}
.newsletter input {
  border: 0;
  padding: 12px 14px;
  flex: 1;
  min-width: 0;
  background: transparent;
}
.newsletter button {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--salmon-btn);
  color: #fff;
  display: grid;
  place-items: center;
}
.newsletter button:hover { background: var(--salmon-hover); }
.newsletter button svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid var(--peach-deep);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.pay-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-pill {
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  border: 1px solid var(--line);
}

/* ========== CART / SEARCH / ACCOUNT ========== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 28, 24, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 210;
  transform: translateX(100%);
  transition: transform 260ms ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,0.12);
}
.drawer.is-open { transform: none; }
.drawer-head, .modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3, .modal-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
}
.drawer-body { padding: 16px 20px; overflow: auto; flex: 1; }
.drawer-foot {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--peach);
  border-radius: 10px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: #fff;
}
.qty span { min-width: 24px; text-align: center; font-size: 13px; font-weight: 700; }
.remove {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 12px;
}
.cart-empty { text-align: center; padding: 40px 10px; color: var(--muted); }
.totals { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 12px; color: var(--charcoal); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.is-open { display: grid; }
.modal-card {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 18px;
  position: relative;
  z-index: 2;
  max-height: 90vh;
  overflow: auto;
}
.search-list { padding: 8px 12px 16px; }
.search-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
.search-item:hover { background: var(--peach); }
.search-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 8px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  z-index: 400;
  transition: 220ms ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 90;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 86%);
  background: #fff;
  z-index: 230;
  padding: 24px 18px;
  transform: translateX(100%);
  transition: transform 240ms ease;
  overflow: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav a, .mobile-nav button.sub {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 8px;
  border: 0;
  background: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

.policy h3 { font-family: var(--font-serif); color: var(--charcoal); }
.policy p, .policy li { color: var(--muted); }

.reveal-ready .hero-copy > *,
.reveal-ready .hero-visual,
.reveal-ready .feature-item,
.reveal-ready .section-head,
.reveal-ready .cat-card,
.reveal-ready .product-card,
.reveal-ready .review-card,
.reveal-ready .ing-item,
.reveal-ready .benefit-list li,
.reveal-ready .stat,
.reveal-ready .trust-item,
.reveal-ready .page-hero .container > *,
.reveal-ready .footer-grid > * {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .topbar-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 28px;
  }
  .footer-address { max-width: 320px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-woman { margin: 0 auto; height: 420px; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .brand-text { display: none; }
  .mobile-nav { display: block; }
}

@media (max-width: 720px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-media { height: 180px; }
  .trust-grid { grid-template-columns: 1fr 1fr; row-gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-col h4 { margin-bottom: 10px; }
  .hero { padding-top: 8px; }
  .hero-products { width: 170px; }
  .hero-products img { height: 120px; }
  .section { padding: 48px 0; }
  .container, .header-inner { width: min(var(--max), calc(100% - 28px)); }
}
