:root {
  --bg: #eef4dc;
  --leaf: #597b31;
  --deep: #21311a;
  --mist: #f7faef;
  --line: rgba(33, 49, 26, 0.14);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Manrope", sans-serif; color: var(--deep); background: linear-gradient(180deg, #f8fbf1, #dcebb8 45%, #f4f5ef); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.site-header, .site-nav, .hero-actions, .band, .filters, .row { display: flex; align-items: center; }
.site-header { justify-content: space-between; padding: 1rem 4vw; position: sticky; top: 0; backdrop-filter: blur(14px); background: rgba(248, 251, 241, 0.78); z-index: 10; }
.brand, h1, h2 { font-family: "Cormorant Garamond", serif; }
.brand { font-size: 2rem; font-weight: 700; }
.site-nav { gap: 0.8rem; }
.pill, .outline, .solid, .site-nav a { border-radius: 999px; padding: 0.8rem 1rem; border: 1px solid var(--line); background: transparent; }
.site-nav a.active, .solid, .pill.active { background: var(--leaf); color: white; }
.menu-toggle { display: none; }
.hero, .page { padding: 4rem 4vw; }
.hero { min-height: 75vh; display: grid; grid-template-columns: 1fr 0.9fr; gap: 2rem; align-items: center; background: radial-gradient(circle at top, rgba(255,255,255,0.8), transparent 55%); }
.eyebrow { text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.22em; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.95; margin: 0.6rem 0 1rem; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 0.95; margin: 0 0 0.8rem; }
p { line-height: 1.7; color: rgba(33,49,26,0.78); }
.capsule-art { min-height: 420px; border-radius: 2rem; background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(239, 245, 214, 0.95)); display: grid; place-items: center; position: relative; overflow: hidden; }
.capsule { width: 260px; height: 120px; border-radius: 999px; position: absolute; transform: rotate(-25deg); }
.capsule.top { background: linear-gradient(90deg, #ffcf53, #f2a100); top: 38%; left: 28%; }
.capsule.bottom { background: linear-gradient(90deg, white, #f3f3ea); top: 48%; left: 40%; }
.band, .feature-grid, .product-grid, .article-grid { gap: 1.2rem; }
.band { padding: 0 4vw 3rem; justify-content: space-between; flex-wrap: wrap; }
.band article, .card, .product-card, .contact-form, .basket-inner { background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.45); border-radius: 1.6rem; padding: 1.4rem; backdrop-filter: blur(14px); }
.feature-grid, .article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 4vw 4rem; }
.products { display: grid; align-content: start; gap: 1rem; }
.mini-product, .row { justify-content: space-between; gap: 1rem; }
.mini-product { display: flex; align-items: center; padding: 1rem; border-radius: 1rem; background: var(--mist); }
.mini-product button, .product-card button { border: 0; border-radius: 999px; padding: 0.7rem 1rem; background: var(--leaf); color: white; cursor: pointer; }
.page-head { margin-bottom: 2rem; }
.filters { gap: 0.7rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.contact-form { max-width: 700px; display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.4rem; }
.contact-form input, .contact-form textarea { border-radius: 1rem; border: 1px solid var(--line); padding: 0.9rem 1rem; background: white; }
.basket { position: fixed; inset: 0 0 0 auto; width: min(400px, 100%); transform: translateX(100%); transition: transform 0.3s ease; background: rgba(16,22,12,0.25); }
.basket.open { transform: translateX(0); }
.basket-inner { height: 100%; border-radius: 0; background: #f7fbef; display: grid; grid-template-rows: auto 1fr auto; }
[data-cart-items] { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: 0.8rem; }
[data-cart-items] li { background: white; padding: 0.9rem 1rem; border-radius: 1rem; display: flex; justify-content: space-between; }
@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 0.8rem 1rem; }
  .site-nav { display: none; position: absolute; top: calc(100% + 0.6rem); left: 4vw; right: 4vw; padding: 1rem; flex-direction: column; align-items: stretch; background: #f7faef; border-radius: 1rem; }
  .site-nav.open { display: flex; }
  .hero, .feature-grid, .article-grid { grid-template-columns: 1fr; }
}
