:root {
  --bg: #f3eee4;
  --surface: #fcfaf6;
  --surface-2: #ebe4d6;
  --fg: #1c1917;
  --muted: #5c6b5a;
  --subtle: #8a9384;
  --primary: #1b4332;
  --primary-fg: #f4efe4;
  --accent: #2d6a4f;
  --leaf: #40916c;
  --border: #d4cbb8;
  --danger: #9b2c2c;
  --shadow: 0 0 0 1px rgb(28 25 23 / 0.06), 0 1px 2px -1px rgb(28 25 23 / 0.06), 0 2px 4px rgb(28 25 23 / 0.04);
  --shadow-lift: 0 0 0 1px rgb(28 25 23 / 0.06), 0 18px 40px -18px rgb(27 67 50 / 0.28);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; outline: 1px solid rgb(28 25 23 / 0.08); outline-offset: -1px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
button, [role="button"] { cursor: pointer; font-family: inherit; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4.25rem; }
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-mark { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--primary); display: grid; place-items: center; }
.logo-mark svg { width: 1.75rem; height: 1.75rem; fill: var(--primary-fg); }
.logo strong { display: block; font-family: var(--display); font-size: 1.125rem; }
.logo small { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; gap: 0.15rem; }
.nav a { padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.nav a:hover, .nav a.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 0.25rem; }
.icon-btn {
  width: 2.75rem; height: 2.75rem; border: 0; border-radius: 0.75rem;
  background: transparent; color: var(--fg); position: relative;
}
.icon-btn:hover { background: var(--surface-2); }
.badge {
  position: absolute; top: 0.35rem; right: 0.35rem; min-width: 1rem;
  background: var(--primary); color: var(--primary-fg); border-radius: 999px;
  font-size: 10px; font-weight: 600; line-height: 1rem; padding: 0 0.25rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 2.75rem; padding: 0 1.25rem; border-radius: 0.75rem; border: 0;
  font-weight: 500; font-size: 0.9rem; background: var(--primary); color: var(--primary-fg);
  transition: transform 150ms ease, background 150ms ease;
}
.btn:hover { background: var(--accent); }
.btn:active { transform: scale(0.96); }
.btn.secondary { background: var(--surface); color: var(--fg); box-shadow: var(--shadow); }
.btn.outline { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 1px var(--border); }
.btn.block { width: 100%; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }
.hero { display: grid; gap: 2rem; padding: 2.5rem 0 3rem; align-items: center; }
.hero img { border-radius: 1.5rem; aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow-lift); }
.kicker { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin-top: 1rem; }
.lede { font-size: 1.125rem; color: var(--muted); max-width: 32rem; }
.row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.ticker {
  overflow: hidden; background: var(--primary); color: var(--primary-fg);
  padding: 0.75rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ticker-track { display: flex; width: max-content; gap: 2.5rem; animation: ticker 36s linear infinite; white-space: nowrap; font-size: 0.9rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
.section { padding: 3.5rem 0; }
.grid-2 { display: grid; gap: 1rem; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1rem; }
.cat-card { position: relative; overflow: hidden; border-radius: 1.5rem; min-height: 14rem; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; transition: transform 500ms ease; }
.cat-card:hover img { transform: scale(1.03); }
.cat-card span { position: absolute; left: 1.25rem; bottom: 1.25rem; font-family: var(--display); font-size: 1.75rem; color: var(--surface); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: rgb(28 25 23 / 0.25); }
.card {
  background: var(--surface); border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform 250ms ease, box-shadow 250ms ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.card-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.chip { position: absolute; left: 0.75rem; top: 0.75rem; background: var(--primary); color: var(--primary-fg); border-radius: 0.5rem; padding: 0.2rem 0.5rem; font-size: 0.75rem; font-weight: 500; }
.card-media { position: relative; }
.price { font-weight: 600; font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.page-hero { background: var(--surface); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.5rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  height: 2.75rem; padding: 0 1rem; border-radius: 999px; border: 0; background: var(--surface);
  box-shadow: var(--shadow); color: var(--muted); font-weight: 500;
}
.pill.on { background: var(--primary); color: var(--primary-fg); }
input, textarea, select {
  width: 100%; height: 2.75rem; border: 0; border-radius: 0.75rem; background: var(--surface);
  box-shadow: var(--shadow); padding: 0 0.9rem; font: inherit; color: var(--fg);
}
textarea { min-height: 8rem; padding: 0.75rem 0.9rem; resize: vertical; }
label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.qty {
  display: inline-flex; height: 2.75rem; align-items: stretch; overflow: hidden;
  border-radius: 0.75rem; background: var(--surface); box-shadow: var(--shadow);
}
.qty button { width: 2.75rem; border: 0; background: transparent; color: var(--fg); }
.qty span { min-width: 2.5rem; display: grid; place-items: center; font-variant-numeric: tabular-nums; font-weight: 500; }
.panel { background: var(--surface); border-radius: 1.5rem; padding: 1.25rem; box-shadow: var(--shadow); }
.site-footer { background: var(--primary); color: var(--primary-fg); margin-top: auto; }
.footer-grid { display: grid; gap: 2rem; padding: 3.5rem 0; }
.footer-grid a:hover { text-decoration: underline; }
.wa {
  position: fixed; right: 1rem; bottom: 1.5rem; z-index: 30; width: 3rem; height: 3rem;
  border-radius: 999px; background: var(--accent); color: var(--primary-fg);
  display: grid; place-items: center; box-shadow: var(--shadow-lift);
}
.wa svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }
.menu-btn { display: none; }
.mobile-nav { display: none; }
.line { display: flex; gap: 0.75rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.line img { width: 5rem; height: 5rem; object-fit: cover; border-radius: 0.75rem; }
details { border-bottom: 1px solid var(--border); }
summary { cursor: pointer; list-style: none; padding: 1rem 0; font-weight: 500; display: flex; justify-content: space-between; }
summary::-webkit-details-marker { display: none; }
.legal { max-width: 42rem; }
@media (min-width: 768px) {
  .hero { grid-template-columns: 1fr 1fr; padding: 4rem 0; }
  .hero img { aspect-ratio: 1; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .search { max-width: 16rem; }
}
@media (max-width: 767px) {
  .nav, .phone-link { display: none; }
  .menu-btn { display: grid; }
  .mobile-nav.open { display: flex; flex-direction: column; padding: 0.5rem 1rem 1rem; border-top: 1px solid var(--border); background: var(--surface); }
  .mobile-nav a { padding: 0.75rem 0.5rem; font-weight: 500; }
  .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
