/* Domáce Omáčky — shared stylesheet */

:root {
  --cream: #F6EFE2;
  --cream-card: #FFFDF7;
  --cream-card-alt: #FBF5E8;
  --border: #E2D5BE;
  --border-alt: #EFE3CD;
  --ink: #241C14;
  --ink-soft: #33291F;
  --ink-soft2: #3A2E22;
  --body-muted: #6E6154;
  --muted: #8A7B69;
  --muted-strong: #4A3D30;

  --red: #B0341F;
  --red-hover: #8E2716;
  --red-hover2: #7E2314;

  --green: #46603A;
  --green-hover: #374C2D;
  --green-dark-bg: #3C5231;
  --green-dark-border: #56704A;

  --gold: #C38A21;
  --gold-hover: #A9741A;

  --dark: #241C14;
  --dark-2: #2E2417;
  --dark-3: #332818;
  --dark-4: #312619;
  --dark-5: #3A2E1F;
  --dark-6: #4A3D2D;
  --dark-7: #6A5B47;

  --on-dark: #EDE2CE;
  --on-dark-muted: #C6B79E;
  --on-dark-muted2: #A9997F;
  --on-dark-muted3: #D9CCB6;
  --cream-text: #FFF8EC;

  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-s: 6px;
  --radius-m: 9px;
  --radius-l: 12px;
  --radius-xl: 16px;

  --wrap: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover2); }

::selection { background: var(--gold); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; letter-spacing: -0.01em; }

p { margin: 0; }

button { font-family: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--ink); color: var(--cream); padding: 10px 16px; z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: var(--on-dark);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar .wrap {
  padding: 9px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.topbar-left, .topbar-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.topbar .accent { color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(36,28,20,0.04);
}
.site-header .wrap {
  padding: 14px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-family: var(--font-serif); font-weight: 700; font-size: 19px;
  flex: none;
}
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 20px; line-height: 1.05; letter-spacing: -0.01em; }
.brand-domain { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  color: var(--ink); font-size: 15px; font-weight: 500; border-radius: 6px;
  padding: 8px 11px; display: block; position: relative;
}
.main-nav a:hover { background: #F1E7D4; color: var(--ink); }
.main-nav a.active::after {
  content: ""; display: block; height: 2px; background: var(--red); margin-top: 4px; border-radius: 2px;
}

.cart-btn {
  cursor: pointer; display: flex; gap: 10px; align-items: center;
  background: var(--green); color: var(--cream); padding: 10px 16px; border-radius: 999px;
  font-weight: 700; font-size: 14px; border: none;
}
.cart-btn:hover { background: var(--green-hover); }
.cart-count {
  background: var(--gold); color: var(--ink); border-radius: 999px;
  min-width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border); border-radius: 8px;
  width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 8px; font-weight: 700; font-size: 16px; padding: 15px 26px;
  text-align: center; text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--cream-text); }
.btn-primary:hover { background: var(--red-hover); color: var(--cream-text); }
.btn-outline-dark { border: 1px solid var(--dark-7); color: var(--cream); background: transparent; }
.btn-outline-dark:hover { background: var(--dark-4); color: var(--cream); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-hover); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 9px 14px; border-radius: 7px; font-size: 13.5px; }

/* ---------- Sections ---------- */
main { flex: 1; }
.section { padding: 70px 24px; }
.section-tight { padding: 26px 24px; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red);
  margin-bottom: 10px; display: block;
}
.section-head {
  display: flex; gap: 20px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; margin-bottom: 28px;
}
.section-head h2 { font-size: 34px; }
.section-lead { max-width: 480px; margin: 0; color: var(--body-muted); font-size: 16px; line-height: 1.6; }
.link-arrow { font-weight: 700; color: var(--red); white-space: nowrap; }
.link-arrow:hover { color: var(--red-hover2); }

/* ---------- Hero ---------- */
.hero { background: var(--dark); color: var(--cream); overflow: hidden; }
.hero .wrap {
  padding: 72px 24px 80px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-block; padding: 6px 13px; border: 1px solid var(--gold); color: var(--gold);
  border-radius: 999px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { font-size: 56px; line-height: 1.04; margin: 0 0 22px; letter-spacing: -0.02em; }
.hero h1 span { color: var(--gold); }
.hero p.lead { font-size: 19px; line-height: 1.62; color: var(--on-dark-muted3); margin: 0 0 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-serif); font-size: 28px; color: var(--gold); }
.hero-stat-label { font-size: 13px; color: var(--on-dark-muted2); }

.hero-media { position: relative; }
.hero-photo {
  aspect-ratio: 4/5; border-radius: 14px; border: 1px solid var(--dark-6); overflow: hidden;
  background: var(--dark-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-tip {
  position: absolute; bottom: -26px; left: -26px; background: var(--cream-card); color: var(--ink);
  border-radius: 12px; padding: 18px 20px; width: 250px; box-shadow: 0 14px 34px rgba(20,14,8,0.35);
}
.hero-tip-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hero-tip-text { font-family: var(--font-serif); font-size: 17px; margin-top: 6px; line-height: 1.3; }

/* ---------- USP strip ---------- */
.usp-strip { background: var(--cream-card); border-bottom: 1px solid var(--border); }
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.usp-item { display: flex; gap: 12px; align-items: flex-start; }
.usp-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex: none; }
.usp-title { font-weight: 700; font-size: 15px; }
.usp-desc { font-size: 13.5px; color: var(--body-muted); line-height: 1.5; }

/* ---------- Builder tool ---------- */
.builder-section { background: var(--cream); }
.builder-box {
  background: var(--cream-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
}
.builder-form { padding: 34px; border-right: 1px solid var(--border); }
.builder-step-title { font-family: var(--font-serif); font-size: 15px; letter-spacing: 0.02em; margin-bottom: 14px; }

.pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
.pick-card {
  cursor: pointer; border: 1px solid var(--border); border-radius: 10px; padding: 13px 14px;
  background: var(--cream-card); text-align: left; font: inherit; color: inherit; width: 100%;
}
.pick-card:hover, .pick-card.is-selected { border-color: var(--red); }
.pick-row { display: flex; gap: 9px; align-items: center; }
.pick-radio {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--red); flex: none;
  display: flex; align-items: center; justify-content: center;
}
.pick-radio-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: none; }
.pick-card.is-selected .pick-radio-dot { display: block; }
.pick-name { font-weight: 700; font-size: 15px; }
.pick-desc { font-size: 12.5px; color: var(--muted); margin-top: 5px; line-height: 1.45; }

.pill-row { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.pill {
  cursor: pointer; padding: 10px 15px; border-radius: 999px; border: 1px solid var(--border);
  font-size: 14px; font-weight: 700; display: flex; gap: 8px; align-items: center;
  background: var(--cream-card); color: inherit; font-family: inherit;
}
.pill:hover, .pill.is-selected { border-color: var(--red); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); display: none; }
.pill.is-selected .pill-dot { display: block; }
.pill-sub { font-size: 12px; color: var(--muted); font-weight: 400; }

.dish-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
.dish-card {
  cursor: pointer; border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
  display: flex; gap: 9px; align-items: center; background: var(--cream-card); width: 100%; font: inherit; color: inherit;
}
.dish-card:hover, .dish-card.is-selected { border-color: var(--red); }
.dish-label { font-size: 14.5px; font-weight: 500; }

.jar-row { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.jar-btn {
  cursor: pointer; width: 46px; height: 42px; border-radius: 9px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-weight: 700; background: var(--cream-card);
  position: relative; font: inherit; color: inherit;
}
.jar-btn:hover, .jar-btn.is-selected { border-color: var(--red); }
.jar-btn.is-selected::after {
  content: ""; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; background: var(--red);
}
.builder-hint { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }

.builder-result { padding: 34px; background: var(--cream-card-alt); }
.builder-placeholder {
  height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 40px 10px;
}
.builder-placeholder-icon {
  width: 76px; height: 76px; border-radius: 50%; border: 1px dashed #C3B49B;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif);
  color: var(--red); font-size: 26px; margin-bottom: 18px;
}
.builder-placeholder h3 { font-size: 21px; margin-bottom: 8px; }
.builder-placeholder p { color: var(--muted); font-size: 14.5px; max-width: 330px; line-height: 1.6; margin: 0 auto; }

.recipe-eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.recipe-title { font-size: 29px; margin: 8px 0 8px; line-height: 1.18; letter-spacing: -0.01em; }
.recipe-sub { margin: 0 0 18px; color: var(--body-muted); font-size: 15px; line-height: 1.6; }
.recipe-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.recipe-tag { background: var(--border-alt); padding: 7px 12px; border-radius: 7px; font-size: 13px; }
.recipe-h { font-family: var(--font-serif); font-size: 16px; margin-bottom: 10px; }
.recipe-ing-list { border-top: 1px solid var(--border); margin-bottom: 24px; }
.recipe-ing-row {
  display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.recipe-ing-row span:last-child { font-weight: 700; white-space: nowrap; }
.recipe-steps { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.recipe-step { display: flex; gap: 12px; align-items: flex-start; }
.recipe-step-num {
  width: 23px; height: 23px; border-radius: 50%; background: var(--green); color: var(--cream);
  font-size: 12.5px; display: flex; align-items: center; justify-content: center; flex: none; font-weight: 700;
}
.recipe-step-text { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft2); }
.recipe-kit { background: var(--dark); color: var(--on-dark); border-radius: 12px; padding: 20px; }
.recipe-kit-title { font-family: var(--font-serif); font-size: 16px; margin-bottom: 12px; }
.recipe-kit-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.recipe-kit-row {
  display: flex; justify-content: space-between; gap: 12px; font-size: 14px; border-bottom: 1px solid var(--dark-5);
  padding-bottom: 9px;
}
.recipe-kit-name { font-weight: 700; }
.recipe-kit-why { font-size: 12.5px; color: var(--on-dark-muted2); }
.recipe-kit-price { white-space: nowrap; color: var(--gold); font-weight: 700; }

/* ---------- Grids ---------- */
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ---------- Photo placeholders / cards ---------- */
.ph-photo { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.ph-photo img { width: 100%; height: 100%; object-fit: cover; }
.ph-photo.ratio-43 { aspect-ratio: 4/3; }
.ph-photo.ratio-169 { aspect-ratio: 16/9; }
.ph-photo.ratio-1610 { aspect-ratio: 16/10; }
.ph-photo.ratio-168 { aspect-ratio: 16/8; }

.family-card, .product-card, .article-card, .recipe-card {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--cream-card-alt);
  display: flex; flex-direction: column; height: 100%;
}
.product-card { background: var(--cream-card); }
.article-card { background: var(--cream-card-alt); }
.family-card a, .article-card a { display: contents; color: inherit; }
.family-card:hover, .article-card:hover, .recipe-card-link:hover .recipe-card { border-color: var(--red); }

.family-body { padding: 15px; }
.family-name { font-family: var(--font-serif); font-size: 18px; margin-bottom: 6px; }
.family-desc { font-size: 13px; color: var(--body-muted); line-height: 1.5; }

.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.product-name { font-family: var(--font-serif); font-size: 17px; line-height: 1.25; }
.product-desc { font-size: 13px; color: var(--body-muted); line-height: 1.5; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.product-price { font-family: var(--font-serif); font-size: 19px; }
.product-badge {
  position: absolute; top: 10px; left: 10px; background: var(--red); color: var(--cream-text);
  font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 5px; letter-spacing: 0.06em;
}
.add-to-cart {
  cursor: pointer; background: var(--green); color: var(--cream); padding: 9px 14px; border-radius: 7px;
  font-size: 13.5px; font-weight: 700; border: none;
}
.add-to-cart:hover { background: var(--green-hover); }

.article-body-c { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.article-cat { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.article-title { font-family: var(--font-serif); font-size: 20px; line-height: 1.27; }
.article-lead { font-size: 14px; color: var(--body-muted); line-height: 1.55; flex: 1; }
.article-read { font-size: 13.5px; font-weight: 700; color: var(--red); }

.recipe-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.recipe-tags-sm { display: flex; gap: 8px; flex-wrap: wrap; }
.recipe-tag-sm { background: var(--border-alt); padding: 4px 9px; border-radius: 5px; font-size: 11.5px; }
.recipe-card-title { font-family: var(--font-serif); font-size: 21px; line-height: 1.25; }
.recipe-card-lead { font-size: 14px; color: var(--body-muted); line-height: 1.55; flex: 1; }
.recipe-base { border-top: 1px solid var(--border); padding-top: 12px; }
.recipe-base-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.recipe-base-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 3px 0; }
.recipe-base-row span:last-child { font-weight: 700; }

/* ---------- Heat scale (green section) ---------- */
.heat-section { background: var(--green); color: var(--on-dark); }
.heat-section .wrap { padding: 64px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.heat-section h2 { font-size: 34px; margin: 0 0 14px; }
.heat-section p { font-size: 16px; line-height: 1.65; color: #D6E0CC; margin: 0 0 20px; }
.heat-list { display: flex; flex-direction: column; gap: 12px; }
.heat-row {
  background: var(--green-dark-bg); border: 1px solid var(--green-dark-border); border-radius: 10px;
  padding: 16px 18px; display: flex; gap: 16px; align-items: center;
}
.heat-lvl { font-family: var(--font-serif); font-size: 22px; color: #E8C87A; width: 38px; flex: none; }
.heat-name { font-weight: 700; font-size: 15.5px; }
.heat-desc { font-size: 13px; color: #C7D3BC; line-height: 1.5; }

/* ---------- Reviews / FAQ preview ---------- */
.review-card {
  background: var(--cream-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.review-stars { color: var(--gold); letter-spacing: 0.16em; margin-bottom: 8px; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--ink-soft2); margin-bottom: 10px; }
.review-who { font-size: 13px; color: var(--muted); }

.faq-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; }
.faq-q { font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.faq-a { font-size: 14px; color: var(--body-muted); line-height: 1.6; }
.faq-card-lg { border-radius: 11px; padding: 20px 22px; }
.faq-q-lg { font-family: var(--font-serif); font-size: 18px; margin-bottom: 7px; }
.faq-a-lg { font-size: 15px; color: var(--muted-strong); line-height: 1.65; }

/* ---------- Page header (breadcrumb + title) ---------- */
.page-head { padding: 54px 24px 0; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.page-head h1 { font-size: 42px; margin: 0 0 10px; }
.page-lead { color: var(--body-muted); max-width: 700px; font-size: 16.5px; line-height: 1.62; margin: 0 0 30px; }

/* ---------- Shop ---------- */
.cat-row { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-pill {
  cursor: pointer; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--cream-card); font-size: 14px; font-weight: 500; display: flex; gap: 8px; align-items: center;
  color: inherit; font-family: inherit;
}
.cat-pill:hover, .cat-pill.is-active { border-color: var(--red); }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); display: none; }
.cat-pill.is-active .cat-dot { display: block; }

.shop-notes {
  margin-top: 44px; background: var(--dark); color: var(--on-dark); border-radius: 14px; padding: 32px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 26px;
}
.shop-note-title { font-family: var(--font-serif); font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.shop-note-desc { font-size: 14px; line-height: 1.6; color: var(--on-dark-muted); }

/* ---------- Article page ---------- */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 54px 24px 80px; }
.back-link { cursor: pointer; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; display: inline-block; }
.article-meta { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.article-h1 { font-size: 40px; line-height: 1.15; margin: 0 0 18px; letter-spacing: -0.02em; }
.article-lead-p { font-size: 19px; line-height: 1.6; color: var(--muted-strong); margin: 0 0 28px; }
.article-hero-photo { aspect-ratio: 16/8; border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.article-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-content { display: flex; flex-direction: column; gap: 22px; }
.body-h { font-family: var(--font-serif); font-size: 25px; margin-bottom: 2px; letter-spacing: -0.01em; }
.body-p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.body-q {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 18px; font-family: var(--font-serif); font-size: 20px;
  line-height: 1.45; color: var(--green); margin: 0;
}
.article-cta {
  margin-top: 44px; background: var(--cream-card); border: 1px solid var(--border); border-radius: 13px;
  padding: 26px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: space-between;
}
.article-cta-title { font-family: var(--font-serif); font-size: 21px; margin-bottom: 6px; }
.article-cta-desc { color: var(--body-muted); font-size: 15px; }

/* ---------- About ---------- */
.about-hero { background: var(--dark); color: var(--cream); }
.about-hero .wrap { padding: 64px 24px; }
.about-hero h1 { font-size: 44px; margin: 0 0 14px; }
.about-hero p { font-size: 18px; line-height: 1.65; color: var(--on-dark-muted3); max-width: 720px; margin: 0; }
.about-grid { max-width: var(--wrap); margin: 0 auto; padding: 60px 24px 80px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; }
.about-body-col { display: flex; flex-direction: column; gap: 20px; }
.about-side { display: flex; flex-direction: column; gap: 16px; }
.about-photo { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.facts-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.facts-title { font-family: var(--font-serif); font-size: 19px; margin-bottom: 14px; }
.facts-row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border-alt); }
.facts-k { color: var(--muted); }
.facts-v { font-weight: 700; text-align: right; }

/* ---------- Contact ---------- */
.contact-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 13px; padding: 28px; }
.contact-card h2 { font-size: 22px; margin-bottom: 18px; }
.contact-row { padding: 11px 0; border-bottom: 1px solid var(--border-alt); }
.contact-k { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-v { font-size: 15.5px; }
.contact-photo {
  margin-top: 22px; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; position: relative;
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo-caption {
  position: absolute; left: 12px; bottom: 12px; background: rgba(20,14,8,0.65); color: var(--cream);
  font-size: 12px; padding: 6px 10px; border-radius: 6px;
}

/* ---------- Forms ---------- */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; color: var(--body-muted); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border); border-radius: 8px; padding: 13px 14px; font-size: 15px;
  background: var(--cream-card-alt); font-family: inherit; color: var(--ink); width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--red); outline-offset: 1px;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--body-muted); line-height: 1.5; }
.form-consent input { width: 16px; height: 16px; margin-top: 2px; flex: none; accent-color: var(--red); }
.form-consent a { color: var(--red); font-weight: 700; }
.form-msg { font-size: 14px; padding: 12px 14px; border-radius: 8px; display: none; }
.form-msg.is-success { display: block; background: #E4EDDE; color: var(--green-hover); }
.form-msg.is-error { display: block; background: #F6DCD5; color: var(--red-hover2); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FAQ page ---------- */
.faq-page-list { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Legal / doc page ---------- */
.doc-updated { font-size: 13.5px; color: var(--muted); margin-bottom: 30px; }
.doc-card {
  background: var(--cream-card); border: 1px solid var(--border); border-radius: 13px; padding: 34px;
  display: flex; flex-direction: column; gap: 20px;
}
.doc-h { font-family: var(--font-serif); font-size: 22px; margin-bottom: 2px; }
.doc-p { font-size: 15.5px; line-height: 1.72; color: var(--ink-soft); }
.doc-l { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.doc-l-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 9px; flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark-muted); margin-top: auto; }
.footer-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 58px 24px 26px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
}
.footer-brand { display: flex; gap: 11px; align-items: center; margin-bottom: 14px; }
.footer-brand-mark {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; color: var(--cream);
  font-family: var(--font-serif); font-weight: 700;
}
.footer-brand-name { font-family: var(--font-serif); font-size: 19px; color: var(--cream); }
.footer-desc { font-size: 14px; line-height: 1.65; margin: 0 0 16px; max-width: 330px; }
.footer-legal-block { font-size: 13px; line-height: 1.8; }
.footer-col-title {
  color: var(--cream); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-links a { color: var(--on-dark-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-news-text { font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.footer-news-note { font-size: 12px; margin-top: 10px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid var(--dark-5); }
.footer-bottom .wrap {
  padding: 18px 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom-right { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 70; display: none; justify-content: flex-end;
}
.cart-overlay.is-open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(20,14,8,0.5); border: none; padding: 0; cursor: pointer; }
.cart-panel {
  position: relative; width: 440px; max-width: 100%; background: var(--cream-card); height: 100%;
  display: flex; flex-direction: column; box-shadow: -14px 0 40px rgba(20,14,8,0.3);
}
.cart-panel-head {
  padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;
}
.cart-panel-head h2 { font-size: 22px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--muted); line-height: 1; background: none; border: none; }
.cart-body { flex: 1; overflow: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--muted); }
.cart-empty-title { font-family: var(--font-serif); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.cart-empty-desc { font-size: 14.5px; line-height: 1.6; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; }
.cart-line { display: flex; gap: 14px; border-bottom: 1px solid var(--border-alt); padding-bottom: 14px; }
.cart-line-thumb { width: 66px; height: 66px; border-radius: 8px; flex: none; overflow: hidden; background: var(--border-alt); }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-main { flex: 1; }
.cart-line-name { font-weight: 700; font-size: 15px; line-height: 1.3; }
.cart-line-price { font-size: 13px; color: var(--muted); margin: 3px 0 8px; }
.cart-line-qty { display: flex; gap: 10px; align-items: center; }
.qty-btn {
  cursor: pointer; width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; background: var(--cream-card); font: inherit;
}
.qty-val { font-weight: 700; min-width: 18px; text-align: center; }
.cart-line-rm { cursor: pointer; font-size: 13px; color: var(--red); margin-left: auto; background: none; border: none; font: inherit; }
.cart-line-total { font-family: var(--font-serif); font-size: 16px; white-space: nowrap; }
.cart-panel-foot { border-top: 1px solid var(--border); padding: 20px 24px; background: var(--cream-card-alt); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 7px; }
.cart-summary-row .k { color: var(--body-muted); }
.cart-summary-total {
  display: flex; justify-content: space-between; font-family: var(--font-serif); font-size: 21px;
  padding-top: 9px; border-top: 1px solid var(--border); margin-bottom: 14px;
}
.cart-note { font-size: 12.5px; color: var(--muted); margin-top: 11px; line-height: 1.5; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--dark); color: var(--on-dark);
  border-top: 2px solid var(--gold); display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner .wrap {
  padding: 20px 24px; display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-text { max-width: 640px; }
.cookie-title { font-family: var(--font-serif); font-size: 17px; margin-bottom: 6px; }
.cookie-desc { font-size: 13.5px; line-height: 1.6; color: var(--on-dark-muted); }
.cookie-desc a { color: var(--gold); font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { cursor: pointer; padding: 12px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; border: none; font: inherit; }
.cookie-btn-reject { border: 1px solid var(--dark-7); color: var(--on-dark); background: transparent; }
.cookie-btn-reject:hover { background: var(--dark-4); }
.cookie-btn-accept { background: var(--gold); color: var(--ink); padding: 12px 22px; }
.cookie-btn-accept:hover { background: var(--gold-hover); }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
.summary-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 13px; padding: 24px; height: fit-content; }

/* ---------- Utility ---------- */
.mono-tag { font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; color: #7C6C56; }
.text-center { text-align: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(3,1fr); }
  .hero h1 { font-size: 46px; }
}

@media (max-width: 900px) {
  .builder-box { grid-template-columns: 1fr; }
  .builder-form { border-right: none; border-bottom: 1px solid var(--border); }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .heat-section .wrap { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-nav-open .main-nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream-card);
    border-bottom: 1px solid var(--border); flex-direction: column; padding: 10px 24px 16px; gap: 2px;
  }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: 36px; }
  .hero p.lead { font-size: 17px; }
  .hero-tip { position: static; margin-top: 20px; width: auto; }
  .section-head h2, .page-head h1 { font-size: 28px; }
  .article-h1 { font-size: 30px; }
  .shop-notes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 24px 20px; }
  .pick-grid, .dish-grid { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; }
  .topbar .wrap { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
}
