@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --ink: #263226;
  --muted: #687267;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --green: #315c3b;
  --green-dark: #21452b;
  --gold: #d39b3d;
  --line: #e6e0d3;
  --shadow: 0 18px 45px rgba(38, 50, 38, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230,224,211,.8);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); }
.nav-links { display: flex; gap: 28px; color: var(--muted); font-size: .95rem; }
.nav-links a:hover { color: var(--green); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }

.hero {
  background:
    radial-gradient(circle at 85% 25%, rgba(211,155,61,.20), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(49,92,59,.10), transparent 30%),
    var(--cream);
  padding: 90px 0 85px;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--green); font-size: .75rem; font-weight: 700; letter-spacing: .14em; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; }
h1, h2 { font-family: "Playfair Display", serif; }
h1 { font-size: clamp(3rem, 6vw, 5.2rem); max-width: 760px; }
h1 em { color: var(--green); font-style: normal; }
h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
.hero-copy > p { color: var(--muted); font-size: 1.12rem; max-width: 650px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 25px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 10px;
  font-weight: 700; border: 1px solid transparent; cursor: pointer;
  font: inherit; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(38,50,38,.12); }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.55); }
.btn-light { background: white; color: var(--green-dark); }
.btn-full { width: 100%; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .83rem; }

.hero-card {
  min-height: 360px; padding: 42px; border-radius: 28px;
  background: rgba(255,253,248,.85); box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.8);
}
.basket { font-size: 7rem; text-align: center; margin-bottom: auto; }
.small-label { font-size: .7rem; letter-spacing: .13em; font-weight: 700; color: var(--muted); }

.section { padding: 90px 0; }
.section-soft { background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 35px; }
.section-heading p { color: var(--muted); max-width: 390px; margin: 0; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: white; border: 1px solid var(--line); border-radius: 20px;
  padding: 25px; display: flex; flex-direction: column; min-height: 290px;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-icon { font-size: 3.2rem; width: 78px; height: 78px; display: grid; place-items: center; background: var(--cream); border-radius: 18px; margin-bottom: 20px; }
.product-card h3 { font-size: 1.2rem; }
.product-description { color: var(--muted); font-size: .9rem; margin: 0 0 18px; }
.product-bottom { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.price { font-size: 1.35rem; font-weight: 700; }
.product-btn { min-height: 42px; padding: 0 15px; font-size: .9rem; }

.promo-section { padding: 55px 0; background: var(--green); color: white; }
.promo { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.promo .eyebrow { color: #d9e5d8; }
.promo h2 { margin-bottom: 8px; }
.promo p { margin: 0; color: #dce6dc; }

.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.feature { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.6); }
.feature-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.feature h3 { margin-bottom: 7px; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }

.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: start; }
.contact-grid > div { padding-top: 15px; }
.contact-grid p { color: var(--muted); max-width: 560px; margin-bottom: 25px; }

.order-card { border: 1px solid var(--line); border-radius: 20px; padding: 25px; background: var(--paper); box-shadow: var(--shadow); }
.order-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 17px; }
.order-head h3 { margin: 4px 0 0; }
.text-button { border: 0; background: none; color: var(--muted); cursor: pointer; font: inherit; font-size: .85rem; }
.cart-items { min-height: 100px; padding: 12px 0; }
.empty-cart { color: var(--muted); font-size: .9rem; text-align: center; padding: 20px 0; }
.cart-row { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); }
.cart-row-name { font-weight: 600; font-size: .9rem; }
.cart-row-price { color: var(--muted); font-size: .85rem; white-space: nowrap; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-controls button { width: 27px; height: 27px; border-radius: 7px; border: 1px solid var(--line); background: white; cursor: pointer; }
.cart-total { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding: 18px 0; margin-top: 8px; }
.cart-note { color: var(--muted); font-size: .72rem; text-align: center; margin: 10px 0 0 !important; }

.footer { background: #1f2c22; color: white; padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: #d6ddd5; font-size: .85rem; }
.footer strong { display: block; color: white; margin-bottom: 3px; }
.footer span { opacity: .9; }

@media (max-width: 850px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { min-height: 260px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .features { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 18px 20px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; gap: 15px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 65px 0; }
  .section { padding: 65px 0; }
  h1 { font-size: 3rem; }
  .product-grid { grid-template-columns: 1fr; }
  .promo, .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-card { padding: 28px; }
  .basket { font-size: 5rem; }
}
