/* Malá Záhradka — shared stylesheet */

:root {
  --bg: #FBF8F2;
  --ink: #23302A;
  --ink-soft: #3B4A40;
  --green: #3F6B4A;
  --green-dark: #345B3E;
  --green-deep: #23302A;
  --green-panel: #2C3B33;
  --terracotta: #C0674A;
  --terracotta-dark: #A9573C;
  --border: #E4DAC6;
  --border-strong: #D6C9AE;
  --border-dashed: #C2B393;
  --muted: #6B7469;
  --muted-2: #7C7460;
  --muted-3: #8A8069;
  --tint-green: #EFE6D4;
  --tint-green-2: #E9EFE4;
  --tint-green-3: #DCE5D6;
  --tint-terracotta: #F6E7DF;
  --tint-terracotta-2: #F8EAE3;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: Karla, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --max: 1180px;
  --max-narrow: 1000px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(63,107,74,0.35); }
a:hover { color: var(--terracotta); border-bottom-color: rgba(192,103,74,0.6); }
a.no-underline, .site-logo a, .card a, .btn, nav a, .footer a, .article-card, .product-card a { border-bottom: none; }
button { font-family: var(--sans); cursor: pointer; }
input, select, textarea { font-family: var(--sans); font-size: 16px; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: #D9E4D3; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 820px; margin: 0 auto; padding: 0 24px; }

@keyframes mzFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes mzPop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.fade-in { animation: mzFade 0.6s ease both; }
.pop-in { animation: mzPop 0.7s ease both; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--green-deep);
  color: var(--tint-green);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 9px 0;
}
.topbar .container {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: space-between;
}
.topbar span { font-family: var(--mono); }
.topbar .muted { opacity: 0.75; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,248,242,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 14px; padding-bottom: 14px;
  display: flex; align-items: center; gap: 28px;
}
.site-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.site-logo .mark {
  width: 38px; height: 38px; border-radius: 12px; background: var(--green);
  display: grid; place-items: center; color: var(--tint-green);
  font-family: var(--serif); font-size: 20px; font-weight: 700; flex-shrink: 0;
}
.site-logo .name-block { display: flex; flex-direction: column; line-height: 1.05; }
.site-logo .name { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); }
.site-logo .domain { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted-3); text-transform: uppercase; }

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto; }
.main-nav a {
  background: none; border: none; padding: 8px 12px; border-radius: 9px;
  font-size: 15.5px; font-weight: 500; color: var(--ink-soft); display: inline-block;
}
.main-nav a:hover, .main-nav a.active { background: var(--tint-green); color: var(--ink); }

.cart-btn {
  display: flex; align-items: center; gap: 9px; background: var(--green); color: var(--bg);
  border: none; padding: 10px 16px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--green-dark); }
.cart-btn .badge {
  background: var(--terracotta); border-radius: 20px; min-width: 24px; padding: 1px 7px; text-align: center;
  font-family: var(--mono); font-size: 13px;
}

.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 11px; font-weight: 700; font-size: 16.5px; padding: 15px 26px; border: none;
  font-family: var(--sans);
}
.btn-sm { padding: 9px 15px; border-radius: 9px; font-weight: 600; font-size: 14.5px; }
.btn-md { padding: 11px 18px; border-radius: 10px; font-weight: 600; font-size: 15.5px; }
.btn-primary { background: var(--terracotta); color: var(--bg); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-green { background: var(--green); color: var(--bg); }
.btn-green:hover { background: var(--green-dark); }
.btn-dark { background: var(--green-deep); color: var(--tint-green); }
.btn-dark:hover { background: var(--green); }
.btn-outline { background: none; border: 1.5px solid var(--green); color: var(--green); }
.btn-outline:hover { background: #EDF2EA; }
.btn-outline-muted { background: none; border: 1.5px solid var(--border-strong); color: var(--muted); }
.btn-text { background: none; border: none; color: var(--green); font-size: 14.5px; padding: 0; }
.btn-text.danger { color: var(--terracotta-dark); text-decoration: underline; font-size: 13.5px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terracotta); background: var(--tint-terracotta);
  padding: 6px 12px; border-radius: 20px;
}
.eyebrow-plain {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terracotta);
}

/* ---------- hero ---------- */
.hero {
  padding: 60px 24px 20px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(32px, 5vw, 58px); margin: 22px 0 0; max-width: 15em; }
.hero .lead { font-size: 20px; color: #4A5A50; margin-top: 20px; max-width: 32em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--border); }
.hero-stats .num { font-family: var(--serif); font-size: 30px; font-weight: 700; }
.hero-stats .label { font-size: 14px; color: var(--muted-2); }
.hero-media img { border-radius: 20px; border: 1px solid var(--border); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.hero-media-grid img { border-radius: 16px; border: 1px solid var(--border); aspect-ratio: 1/1; object-fit: cover; width: 100%; }

/* ---------- planner ---------- */
.planner-section { padding: 56px 24px; }
.planner-box { background: var(--green-deep); border-radius: var(--radius-lg); padding: 40px; color: var(--tint-green); }
.planner-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 20px; justify-content: space-between; }
.planner-head h2 { font-size: 38px; margin-top: 10px; color: var(--bg); }
.planner-head .lead-text { max-width: 34em; color: #C5CFC3; font-size: 16px; }
.planner-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #C9A88F; }
.planner-grid { display: grid; grid-template-columns: 340px 1fr; gap: 32px; margin-top: 32px; align-items: start; }
.planner-controls { background: var(--green-panel); border-radius: 18px; padding: 26px; }
.planner-controls label { display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #A7BBA9; }
.planner-controls label:not(:first-child) { margin-top: 24px; }
.area-value { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; }
.area-value .num { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--bg); }
.area-value .unit { font-family: var(--mono); color: #A7BBA9; }
input[type="range"] { width: 100%; margin-top: 6px; accent-color: var(--terracotta); }
.range-scale { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: #7F9182; }
.light-options { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.light-option {
  text-align: left; border: 1px solid #3F5045; background: transparent; color: var(--tint-green);
  padding: 11px 14px; border-radius: 10px; font-size: 15px; display: flex; justify-content: space-between; gap: 10px; width: 100%;
}
.light-option .hint { font-family: var(--mono); font-size: 12px; color: #A7BBA9; }
.light-option.active { border-color: #5C8B63; background: var(--green); }
.crop-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.crop-chip {
  border: 1px solid #3F5045; background: transparent; color: #C5CFC3;
  padding: 8px 13px; border-radius: 20px; font-size: 14.5px; font-weight: 600;
}
.crop-chip.active { border-color: var(--tint-green); background: var(--tint-green); color: var(--ink); }
.crop-note { font-size: 13.5px; color: #8FA391; margin-top: 16px; }

.planner-result { background: var(--bg); color: var(--ink); border-radius: 18px; padding: 28px; }
.planner-result-empty { padding: 40px 10px; text-align: center; }
.plan-head { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.plan-head h3 { font-size: 24px; }
.plan-summary { font-family: var(--mono); font-size: 13px; color: var(--muted-2); }
.plan-rows { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 18px; }
.plan-row { border-radius: 14px; padding: 14px; border: 1px solid var(--border); }
.plan-row .row-head { display: flex; align-items: center; gap: 8px; }
.plan-row .dot { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.plan-row .lines { font-family: var(--mono); font-size: 12.5px; color: #5F6A5F; margin-top: 8px; line-height: 1.5; }
.plan-row .tip { font-size: 13px; color: var(--muted-2); margin-top: 8px; }

.calendar-wrap { overflow-x: auto; margin-top: 14px; }
.calendar-inner { min-width: 560px; }
.calendar-months, .calendar-line { display: grid; grid-template-columns: 120px repeat(12, 1fr); gap: 3px; }
.calendar-months { font-family: var(--mono); font-size: 11px; color: var(--muted-2); }
.calendar-months span { text-align: center; }
.calendar-line { margin-top: 3px; align-items: center; }
.calendar-line .crop-name { font-size: 13.5px; font-weight: 600; }
.calendar-cell { height: 22px; border-radius: 5px; }
.calendar-legend { display: flex; gap: 18px; margin-top: 14px; font-size: 13px; color: #5F6A5F; flex-wrap: wrap; }
.calendar-legend .swatch { display: flex; align-items: center; gap: 7px; }
.calendar-legend .swatch span.box { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }

.shopping-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.shopping-item {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px; border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px; background: #fff;
}
.shopping-item img { width: 42px; height: 42px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.shopping-item .info { flex: 1; min-width: 180px; }
.shopping-item .reason { display: block; font-size: 13.5px; color: var(--muted-2); }
.shopping-item .price { font-family: var(--mono); font-weight: 500; }

/* ---------- steps ---------- */
.steps-section { padding: 20px 24px 10px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { border: 1px solid var(--border); border-radius: 16px; padding: 22px; background: #fff; }
.step-card .num { font-family: var(--mono); font-size: 12px; color: var(--terracotta); }
.step-card h3 { font-size: 19px; margin-top: 8px; }
.step-card p { font-size: 14.5px; color: #6B7469; margin-top: 8px; }

/* ---------- product cards ---------- */
.section-pad { padding: 50px 24px; }
.section-head-row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.product-card {
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: #fff;
  display: flex; flex-direction: column;
}
.product-card .thumb { aspect-ratio: 4/3; width: 100%; object-fit: cover; background: var(--tint-green); }
.product-card .body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .cat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); }
.product-card .name { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.product-card .desc { font-size: 14px; color: #6B7469; flex: 1; }
.product-card .stock { font-family: var(--mono); font-size: 12px; color: #7C9A7F; }
.product-card .row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.product-card .price { font-family: var(--mono); font-size: 17px; font-weight: 500; }

/* ---------- magazine / newsletter section ---------- */
.magazine-section { background: var(--tint-green); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.magazine-grid { padding: 56px 24px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.newsletter-box { margin-top: 30px; border: 1px dashed var(--border-dashed); border-radius: 16px; padding: 20px; background: var(--bg); }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 170px; border: 1px solid var(--border-strong); border-radius: 9px; padding: 11px 13px; background: #fff; }
.newsletter-note { font-size: 12.5px; color: var(--muted-3); margin-top: 10px; }
.article-row-list { display: flex; flex-direction: column; gap: 14px; }
.article-row {
  text-align: left; background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 18px; display: flex; gap: 16px; align-items: center; width: 100%;
}
.article-row:hover { border-color: var(--green); }
.article-row img { width: 74px; height: 74px; border-radius: 12px; flex-shrink: 0; object-fit: cover; }
.article-row .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }
.article-row .title { display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; margin-top: 5px; }
.article-row .excerpt { display: block; font-size: 14px; color: #6B7469; margin-top: 5px; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.review-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; background: #fff; }
.review-card .stars { color: var(--terracotta); letter-spacing: 0.2em; font-size: 14px; }
.review-card p { font-family: var(--serif); font-size: 18.5px; line-height: 1.45; margin-top: 12px; }
.review-card .author { font-size: 13.5px; color: var(--muted-3); margin-top: 14px; }

/* ---------- shop page ---------- */
.shop-header p { color: var(--muted); margin-top: 14px; max-width: 46em; }
.category-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.category-chip {
  border: 1px solid var(--border-strong); background: #fff; color: var(--ink-soft);
  padding: 10px 16px; border-radius: 22px; font-weight: 600; font-size: 15px;
}
.category-chip.active { background: var(--green-deep); color: var(--bg); border-color: var(--green-deep); }
.category-chip .count { font-family: var(--mono); font-size: 12.5px; opacity: 0.65; }
.shop-info-grid { margin-top: 34px; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; background: var(--tint-green); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-info-grid p { font-size: 14.5px; color: var(--muted); margin-top: 6px; }

/* ---------- cart page ---------- */
.cart-empty { border: 1px dashed var(--border-strong); border-radius: var(--radius-md); padding: 46px; text-align: center; margin-top: 22px; background: #fff; }
.cart-empty p:first-child { font-size: 18px; }
.cart-empty .hint { color: var(--muted-2); margin-top: 8px; }
.cart-layout { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 28px; margin-top: 22px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; border: 1px solid var(--border); border-radius: 14px; padding: 14px; background: #fff; }
.cart-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-item .info { flex: 1; min-width: 160px; }
.cart-item .unit-price { display: block; font-family: var(--mono); font-size: 13px; color: var(--muted-2); }
.qty-controls { display: flex; align-items: center; gap: 6px; }
.qty-controls button { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--border-strong); background: var(--bg); font-size: 18px; }
.qty-controls .qty { font-family: var(--mono); min-width: 26px; text-align: center; }
.cart-item .sum { font-family: var(--mono); min-width: 76px; text-align: right; font-weight: 500; }
.cart-summary { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; background: var(--tint-green); }
.summary-row { display: flex; justify-content: space-between; margin-top: 14px; font-size: 15.5px; }
.summary-row.total { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-strong); font-size: 19px; font-weight: 700; }
.summary-row span:last-child, .summary-row.total span:last-child { font-family: var(--mono); }
.checkout-form { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.checkout-form input, .checkout-form textarea { border: 1px solid var(--border-strong); border-radius: 9px; padding: 11px 13px; background: #fff; }
.checkout-note { font-size: 13px; color: var(--muted-2); margin-top: 10px; }
.checkout-fineprint { font-size: 12.5px; color: var(--muted-3); margin-top: 10px; }
.order-note { font-size: 14px; color: var(--green); margin-top: 10px; min-height: 1.4em; }

/* ---------- blog / articles ---------- */
.blog-header p { color: var(--muted); margin-top: 14px; max-width: 46em; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.article-card {
  text-align: left; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; padding: 0; display: flex; flex-direction: column; width: 100%;
}
.article-card:hover { border-color: var(--green); }
.article-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.article-card .body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.article-card .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }
.article-card .title { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.2; }
.article-card .excerpt { font-size: 14.5px; color: #6B7469; }
.article-card .meta { font-size: 13px; color: var(--muted-3); }

.article-page { max-width: 780px; margin: 0 auto; padding: 40px 24px 70px; }
.article-page .back { background: none; border: none; color: var(--green); font-size: 14.5px; padding: 0; }
.article-page .tag-line { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); margin-top: 20px; }
.article-page h1 { font-size: clamp(28px, 4vw, 42px); margin-top: 12px; }
.article-page .meta { font-size: 14px; color: var(--muted-3); margin-top: 12px; }
.article-page .cover { width: 100%; border-radius: 18px; margin-top: 24px; aspect-ratio: 16/9; object-fit: cover; }
.article-page .lead { font-size: 20px; line-height: 1.55; margin-top: 26px; color: #3B4A40; }
.article-page section { margin-top: 30px; }
.article-page section h2 { font-size: 27px; }
.article-page section p { margin-top: 12px; font-size: 17.5px; line-height: 1.68; }
.article-box { margin-top: 34px; border: 1px solid var(--border); border-radius: 16px; padding: 22px; background: var(--tint-green); }
.article-box strong { font-family: var(--serif); font-size: 20px; }
.article-box p { font-size: 15.5px; color: #5F6A5F; margin-top: 8px; }
.related-wrap { margin-top: 40px; border-top: 1px solid var(--border); padding-top: 24px; }
.related-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.related-item { text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; width: 100%; }
.related-item:hover { border-color: var(--green); }
.related-item strong { font-family: var(--serif); font-size: 18px; }
.related-item span { display: block; font-size: 13.5px; color: var(--muted-2); margin-top: 4px; }

/* ---------- about ---------- */
.about-lead { font-size: 20px; color: #4A5A50; margin-top: 16px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 34px; }
.about-grid h2 { font-size: 26px; }
.about-grid p { margin-top: 12px; color: #4A5A50; }
.team-list { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.team-item { display: flex; gap: 14px; align-items: center; border: 1px solid var(--border); border-radius: 14px; padding: 14px; background: #fff; }
.team-item img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.team-item .role { display: block; font-size: 14px; color: var(--muted-2); }
.company-box { margin-top: 36px; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; background: var(--tint-green); }
.company-box h2 { font-size: 24px; }
.company-rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 30px; margin-top: 14px; font-size: 15.5px; }
.company-row { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px dotted var(--border-dashed); padding-bottom: 7px; }
.company-row .k { color: var(--muted-2); }
.company-row .v { font-weight: 600; text-align: right; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 26px; }
.contact-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; background: #fff; }
.contact-form { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { border: 1px solid var(--border-strong); border-radius: 9px; padding: 11px 13px; }
.contact-form select { background: #fff; }
.contact-note { font-size: 13.5px; color: var(--green); min-height: 1.3em; }
.contact-side .contact-info { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; background: var(--tint-green); }
.contact-side .contact-info p { margin-top: 12px; font-size: 15.5px; line-height: 1.7; }
.contact-side .contact-info .small { font-size: 14px; color: var(--muted-2); }
.map-embed { margin-top: 16px; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: none; padding: 17px 20px;
  display: flex; justify-content: space-between; gap: 16px; font-size: 17px; font-weight: 600;
}
.faq-item .sign { color: var(--terracotta); font-family: var(--mono); flex-shrink: 0; }
.faq-item .answer { padding: 0 20px 18px; color: #5F6A5F; font-size: 16px; display: none; }
.faq-item.open .answer { display: block; }

/* ---------- legal pages ---------- */
.legal-page { padding: 46px 24px 70px; }
.legal-page h1 { font-size: 40px; margin-top: 10px; }
.legal-page .updated { font-size: 14px; color: var(--muted-3); margin-top: 10px; }
.legal-page .lead { font-size: 18.5px; color: #3B4A40; margin-top: 20px; line-height: 1.6; }
.legal-page section { margin-top: 26px; }
.legal-page section h2 { font-size: 24px; }
.legal-page section p { margin-top: 10px; font-size: 16.5px; line-height: 1.68; color: #3B4A40; }
.legal-footnote { margin-top: 34px; border-top: 1px solid var(--border); padding-top: 18px; font-size: 14.5px; color: var(--muted-2); }

/* ---------- footer ---------- */
.site-footer { background: var(--green-deep); color: #C5CFC3; margin-top: 20px; }
.footer-grid { padding: 50px 24px 26px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand .mark { width: 34px; height: 34px; border-radius: 11px; background: var(--green); display: grid; place-items: center; color: var(--tint-green); font-family: var(--serif); font-weight: 700; }
.footer-brand strong { font-family: var(--serif); font-size: 19px; color: var(--bg); }
.footer-col p { font-size: 14.5px; margin-top: 14px; max-width: 30em; }
.footer-legal-id { font-size: 13.5px; margin-top: 14px; font-family: var(--mono); color: #8FA391; }
.footer-col-title { color: var(--bg); font-family: var(--serif); font-size: 17px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.footer-links a { background: none; border: none; padding: 0; text-align: left; color: #C5CFC3; font-size: 14.5px; }
.footer-links a:hover { color: var(--bg); }
.footer-bottom-bar { border-top: 1px solid #37473D; }
.footer-bottom { padding: 16px 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 13px; color: #8FA391; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: var(--bg); border: 1px solid var(--border-dashed); border-radius: 16px;
  padding: 18px 20px; box-shadow: 0 18px 40px rgba(35,48,42,0.18);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; max-width: 1000px; margin: 0 auto;
  animation: mzFade 0.4s ease both;
}
.cookie-banner.hidden { display: none; }
.cookie-banner .text { flex: 1; min-width: 240px; }
.cookie-banner .text strong { font-family: var(--serif); font-size: 18px; }
.cookie-banner .text p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.cookie-banner .actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- toast ---------- */
.form-status { font-size: 14px; margin-top: 10px; min-height: 1.3em; }
.form-status.error, [data-form-status].is-error { color: var(--terracotta-dark); }
.form-status.ok, [data-form-status].is-ok { color: var(--green); font-weight: 600; }

/* ---------- breadcrumb-ish page header ---------- */
.page-header { padding: 46px 24px 60px; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: auto; background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .planner-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .magazine-grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .shop-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header .container { flex-wrap: wrap; gap: 12px 20px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; margin-left: auto;
    background: none; border: 1px solid var(--border-strong); border-radius: 9px; width: 40px; height: 40px; order: 2;
  }
  .main-nav {
    order: 4; width: 100%; margin-left: 0; display: none; flex-direction: column; gap: 2px;
    border-top: 1px solid var(--border); padding-top: 10px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .cart-btn { order: 3; }
  .steps-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 20px 20px; }
  .company-rows { grid-template-columns: 1fr; }
  .hero-media-grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
}
