:root {
  --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;

  --color-bg: oklch(98% 0.012 75);
  --color-text: oklch(24% 0.02 260);
  --color-text-soft: oklch(42% 0.02 260);

  --color-accent: oklch(72% 0.14 35);
  --color-accent-dark: oklch(58% 0.14 35);
  --color-accent-link: oklch(50% 0.14 35);
  --color-accent-bg: oklch(94% 0.03 35);

  --color-green: oklch(60% 0.11 165);
  --color-green-dark: oklch(38% 0.11 165);
  --color-green-bg: oklch(92% 0.05 165);

  --color-border: oklch(91% 0.01 75);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

/* The [hidden] attribute must always win over component display rules
   (flex/grid classes reused for both shown and JS-hidden states). */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 { font-family: var(--font-heading); }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(99% 0.008 75);
  border-bottom: 1px solid oklch(90% 0.01 75);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  min-width: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.main-nav a.active {
  background: var(--color-accent-bg);
  color: var(--color-accent-link);
}
.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: oklch(96% 0.02 95);
  flex-shrink: 0;
  white-space: nowrap;
}
.cart-badge {
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 5px;
}
.cart-badge[hidden] { display: none; }

/* ---------- Buttons ---------- */
.btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-body);
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-secondary { background: #fff; border: 1px solid oklch(85% 0.01 75); color: var(--color-text); }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--color-green-bg);
  color: var(--color-green-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--color-accent-dark); }
.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img, .rect-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}
.rect-img { border-radius: 0; }

/* ---------- USP ---------- */
.usp-grid {
  padding: 8px 24px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.usp-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-heading);
}
.usp-title { font-weight: 700; font-size: 15px; }
.usp-desc { font-size: 13.5px; color: oklch(45% 0.02 260); line-height: 1.5; }

/* ---------- Section heading row ---------- */
.section {
  padding: 0 24px 56px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.section-head h2 { font-weight: 800; font-size: 28px; margin: 0; }
.section-link {
  color: var(--color-accent-link);
  font-weight: 700;
  text-decoration: none;
  font-size: 14.5px;
  white-space: nowrap;
}

/* ---------- Age tiles ---------- */
.age-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.age-tile {
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 22px 10px;
  text-align: center;
}
.age-tile .label { font-family: var(--font-heading); font-weight: 800; font-size: 17px; }
.age-tile .sub { font-size: 12.5px; color: oklch(38% 0.02 260); }

/* ---------- Seasonal banner (home) ---------- */
.seasonal-banner {
  text-decoration: none;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: oklch(93% 0.04 95);
}
.seasonal-banner .content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.seasonal-banner .eyebrow {
  font-weight: 700;
  font-size: 13px;
  color: oklch(45% 0.1 95);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seasonal-banner h3 { font-weight: 800; font-size: 30px; margin: 0; color: var(--color-text); }
.seasonal-banner p { margin: 0; color: oklch(38% 0.02 260); font-size: 15px; line-height: 1.6; max-width: 400px; }
.seasonal-banner .cta { color: oklch(40% 0.1 95); font-weight: 700; font-size: 14.5px; }
.seasonal-banner img { width: 100%; height: 280px; object-fit: cover; }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.product-media { position: relative; width: 100%; height: 220px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-age {
  position: absolute;
  top: 10px;
  left: 10px;
  background: oklch(96% 0.02 95);
  color: oklch(35% 0.02 260);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-type {
  font-size: 12.5px;
  font-weight: 700;
  color: oklch(55% 0.11 165);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.3;
  flex: 1;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.product-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text);
}
.add-btn {
  padding: 9px 14px;
  border-radius: 999px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  font-family: var(--font-body);
}
.add-btn.added { background: var(--color-green); }

/* ---------- Idea teasers ---------- */
.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.idea-card {
  text-decoration: none;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}
.idea-card img { width: 100%; height: 180px; object-fit: cover; }
.idea-card.big img { height: 200px; }
.idea-card .content { padding: 16px; }
.idea-card.big .content { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.idea-card .title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.idea-card .desc { font-size: 13.5px; color: oklch(45% 0.02 260); line-height: 1.5; }
.idea-tag {
  font-size: 12.5px;
  font-weight: 700;
  color: oklch(55% 0.11 165);
  text-transform: uppercase;
}
.idea-more {
  color: var(--color-accent-link);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stars { color: oklch(65% 0.1 95); font-size: 16px; }
.testimonial-card p { margin: 0; font-size: 14.5px; line-height: 1.7; color: oklch(32% 0.02 260); }
.testimonial-card .name { font-weight: 700; font-size: 14px; }

/* ---------- Newsletter ---------- */
.newsletter-box {
  background: oklch(94% 0.04 350);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-box h3 { font-weight: 800; font-size: 24px; margin: 0 0 8px; }
.newsletter-box p { margin: 0; font-size: 14.5px; color: oklch(32% 0.02 260); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid oklch(85% 0.02 350);
  font-size: 14.5px;
  min-width: 220px;
  font-family: var(--font-body);
}
.newsletter-form button {
  padding: 13px 22px;
  border-radius: 999px;
  border: none;
  background: var(--color-text);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
}
.newsletter-form button.done { background: var(--color-green); }

/* ---------- Footer ---------- */
.site-footer {
  background: oklch(22% 0.02 260);
  color: oklch(92% 0.01 75);
  margin-top: 60px;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer-brand { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 12px; }
.footer-desc { font-size: 14.5px; line-height: 1.7; color: oklch(78% 0.01 75); max-width: 320px; margin: 0 0 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: oklch(30% 0.02 260);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer-col-title { font-weight: 700; color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: oklch(80% 0.01 75); text-decoration: none; font-size: 14.5px; }
.footer-address { margin-top: 16px; font-size: 13.5px; color: oklch(70% 0.01 75); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid oklch(30% 0.02 260);
  padding: 18px 24px;
  max-width: 1240px;
  margin: 0 auto;
  font-size: 13px;
  color: oklch(65% 0.01 75);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: oklch(99% 0.008 75);
  border-top: 1px solid oklch(88% 0.01 75);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner .wrap {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.6; color: oklch(30% 0.02 260); max-width: 640px; }
.cookie-banner a { color: var(--color-accent-link); font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button { font-family: var(--font-body); border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer; padding: 10px 18px; }
.btn-reject { border: 1px solid oklch(80% 0.01 75); background: #fff; color: oklch(30% 0.02 260); }
.btn-accept { border: none; background: var(--color-accent); color: #fff; padding: 10px 20px; }

/* ---------- Generic page header ---------- */
.page-head { padding: 44px 24px 8px; }
.page-head.narrow { max-width: 900px; margin: 0 auto; }
.page-head h1 { font-weight: 800; font-size: 34px; margin: 0 0 8px; }
.page-head p { margin: 0; color: var(--color-text-soft); font-size: 15.5px; }

.page-body { min-height: 60vh; }

/* ---------- Products page (filters) ---------- */
.shop-layout {
  padding: 24px 24px 64px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.filters {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
}
.filters-title { font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-list label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; color: oklch(30% 0.02 260); }
.clear-filters-btn {
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid oklch(85% 0.01 75);
  background: oklch(97% 0.01 75);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  font-family: var(--font-body);
}
.empty-state {
  padding: 60px;
  text-align: center;
  color: oklch(45% 0.02 260);
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

/* ---------- About page ---------- */
.about-hero { padding: 48px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about-hero h1 { font-weight: 800; font-size: 36px; margin: 0 0 16px; line-height: 1.15; }
.about-hero p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.75; color: oklch(38% 0.02 260); }
.about-hero img { border-radius: 24px; width: 100%; height: 380px; object-fit: cover; }
.stats-grid { padding: 8px 24px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 26px; }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 30px; margin-bottom: 6px; }
.stat-label { font-size: 14.5px; color: oklch(40% 0.02 260); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { border-radius: var(--radius-md); padding: 24px; }
.value-card h3 { font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.value-card p { margin: 0; font-size: 14px; color: oklch(35% 0.02 260); line-height: 1.6; }

/* ---------- Seasonal page ---------- */
.season-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
}
.season-block img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.season-block .content { padding: 36px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.season-block .eyebrow { font-weight: 700; font-size: 13px; text-transform: uppercase; }
.season-block h2 { font-weight: 800; font-size: 26px; margin: 0; }
.season-block p { margin: 0; color: oklch(40% 0.02 260); font-size: 14.5px; line-height: 1.7; }
.season-block .cta { font-weight: 700; text-decoration: none; font-size: 14.5px; }
.season-block.reverse .content { order: 1; }
.season-block.reverse img { order: 2; }
.season-stack { display: flex; flex-direction: column; gap: 28px; }

/* ---------- Tips / articles page ---------- */
.article-list { display: flex; flex-direction: column; gap: 20px; }
.article-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.article-head { display: flex; align-items: center; gap: 12px; }
.article-num { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-family: var(--font-heading); font-size: 15px; flex-shrink: 0; }
.article-card h2 { font-weight: 700; font-size: 19px; margin: 0; }
.article-card p { margin: 0; font-size: 14.5px; line-height: 1.75; color: oklch(38% 0.02 260); }
.help-box { background: oklch(94% 0.03 165); border-radius: var(--radius-md); padding: 26px; margin-top: 8px; }
.help-box h3 { font-weight: 700; font-size: 17px; margin: 0 0 10px; }
.help-box p { margin: 0 0 14px; font-size: 14.5px; color: oklch(32% 0.02 260); line-height: 1.6; }
.help-box a { text-decoration: none; background: oklch(30% 0.08 165); color: #fff; font-weight: 700; padding: 11px 20px; border-radius: 999px; font-size: 14px; display: inline-block; }

/* ---------- Contact page ---------- */
.contact-grid { padding: 24px 24px 64px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; }
.contact-col { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; }
.info-card .label { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.info-card .value { font-size: 14.5px; color: oklch(40% 0.02 260); line-height: 1.7; }
.faq-card { background: oklch(94% 0.03 165); border-radius: var(--radius-md); padding: 22px; }
.faq-card .label { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.faq-card .value { font-size: 14.5px; color: oklch(32% 0.02 260); line-height: 1.7; }
.faq-card a { color: oklch(40% 0.11 165); font-weight: 700; }
.contact-form-wrap { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 13.5px; font-weight: 700; display: block; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid oklch(85% 0.01 75);
  font-size: 14.5px;
  font-family: var(--font-body);
  resize: vertical;
}
.form-check { display: flex; gap: 8px; font-size: 12.5px; color: var(--color-text-soft); align-items: flex-start; margin-bottom: 14px; }
.form-check input { margin-top: 2px; }
.form-check a { color: var(--color-accent-link); }
.form-submit {
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: var(--font-body);
}
.form-success { padding: 40px 10px; text-align: center; }
.form-success .title { font-weight: 800; font-family: var(--font-heading); font-size: 19px; margin-bottom: 8px; color: oklch(40% 0.11 165); }
.form-success p { margin: 0; color: var(--color-text-soft); font-size: 14.5px; }

/* ---------- Cart page ---------- */
.cart-section { max-width: 1000px; margin: 0 auto; padding: 44px 24px 64px; }
.cart-section h1 { font-weight: 800; font-size: 32px; margin: 0 0 24px; }
.cart-empty { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 64px; text-align: center; }
.cart-empty p { font-size: 16px; color: var(--color-text-soft); margin: 0 0 20px; }
.cart-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cart-item { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--color-border); border-radius: 14px; padding: 16px; }
.cart-item img { width: 76px; height: 76px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-item .info { flex: 1; }
.cart-item .name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.cart-item .unit { font-size: 13.5px; color: oklch(45% 0.02 260); }
.qty-group { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 30px; height: 30px; border-radius: 8px; border: 1px solid oklch(85% 0.01 75); background: oklch(97% 0.01 75); cursor: pointer; font-weight: 700; font-family: var(--font-body); }
.qty-val { min-width: 22px; text-align: center; font-weight: 700; }
.line-total { font-weight: 800; font-size: 15.5px; min-width: 90px; text-align: right; }
.remove-btn { border: none; background: transparent; color: oklch(55% 0.02 260); cursor: pointer; font-size: 13px; font-weight: 700; }
.cart-summary { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--color-text-soft); }
.summary-divider { height: 1px; background: var(--color-border); }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-heading); font-weight: 800; font-size: 19px; }
.order-btn { margin-top: 8px; padding: 14px; border-radius: 999px; border: none; background: var(--color-accent); color: #fff; font-weight: 700; font-size: 15.5px; cursor: pointer; font-family: var(--font-body); }
.order-success { padding: 14px; border-radius: 12px; background: oklch(94% 0.05 165); color: oklch(30% 0.1 165); font-weight: 700; text-align: center; }
.cart-legal { margin: 4px 0 0; font-size: 12.5px; color: oklch(55% 0.02 260); text-align: center; }
.cart-legal a { color: var(--color-accent-link); }

/* ---------- Legal pages ---------- */
.legal-section { max-width: 760px; margin: 0 auto; padding: 48px 24px 64px; }
.legal-section.narrow { max-width: 760px; }
.legal-section h1 { font-weight: 800; font-size: 30px; margin: 0 0 8px; }
.legal-date { font-size: 13.5px; color: oklch(50% 0.02 260); margin: 0 0 28px; }
.legal-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; gap: 16px; font-size: 14.5px; line-height: 1.8; color: oklch(32% 0.02 260); }
.legal-body { display: flex; flex-direction: column; gap: 22px; font-size: 14.5px; line-height: 1.8; color: oklch(32% 0.02 260); }
.legal-body h2 { font-weight: 700; font-size: 18px; color: var(--color-text); margin: 0 0 6px; }
.legal-body a { color: var(--color-accent-link); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table td { padding: 10px 0; border-bottom: 1px solid oklch(88% 0.01 75); }
.legal-table td:first-child { font-weight: 700; width: 40%; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { height: 300px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .age-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .idea-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .seasonal-banner { grid-template-columns: 1fr; }
  .seasonal-banner img { height: 200px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .about-hero { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .season-block, .season-block.reverse { grid-template-columns: 1fr; }
  .season-block .content, .season-block.reverse .content { order: initial; }
  .season-block img, .season-block.reverse img { order: initial; min-height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .usp-grid { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .product-grid.cols-3 { grid-template-columns: 1fr; }
  .idea-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { flex-wrap: wrap; }
}
