/* Trave Skota — háztáji gazdaság | traveskota.shop
   Self-contained stylesheet (no external font/CSS CDN). */

:root {
  --bg: #f4efe4;
  --cream: #fbf8f1;
  --sand2: #efe8d8;
  --ink: #2b2418;
  --text2: #3a3225;
  --text3: #5f5544;
  --muted: #6f6450;
  --muted2: #8a7c62;
  --border: #ded3bf;
  --border2: #e2d8c3;
  --green: #3f5d34;
  --green-dark: #33491f;
  --green-tint: #e9eede;
  --olive: #6b8f4e;
  --gold: #e3b33d;
  --gold-dark: #d3a32e;
  --brown: #7a5230;
  --footer-bg: #2b2418;
  --footer-text: #e6ddca;
  --footer-muted: #b6ab95;
  --footer-border: #453b2a;
  --promo-bg: #2f4526;
  --promo-text: #eef2e2;

  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--brown); }
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-sans); cursor: pointer; }
input, textarea, select { font-family: var(--font-sans); }
::selection { background: #cfdcb9; }
.page-body { flex: 1; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.container-doc { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--promo-bg);
  color: var(--promo-text);
  font-size: 13px;
  letter-spacing: .02em;
  padding: 9px 20px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  text-align: center;
}
.promo-bar .dot { opacity: .5; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-family: var(--font-serif); font-weight: 700; font-size: 17px;
  flex: 0 0 auto;
}
.brand-name { line-height: 1.1; }
.brand-title { font-family: var(--font-serif); font-weight: 700; font-size: 19px; letter-spacing: -.01em; }
.brand-sub { font-size: 11px; color: var(--muted2); letter-spacing: .06em; text-transform: uppercase; }

.main-nav {
  display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; justify-content: flex-end;
}
.main-nav a {
  border: 0; background: transparent; color: var(--ink);
  font-size: 14px; font-weight: 600; padding: 9px 11px; border-radius: 8px;
  text-decoration: none; display: inline-block;
}
.main-nav a:hover, .main-nav a.active { background: #eee7d7; color: var(--ink); }

.cart-btn {
  border: 1px solid var(--green); background: var(--green); color: #f6f3e9;
  font-size: 14px; font-weight: 700; padding: 10px 15px; border-radius: 9px;
  display: flex; align-items: center; gap: 8px; flex: 0 0 auto;
  text-decoration: none;
}
.cart-btn:hover { background: var(--green-dark); color: #f6f3e9; }
.cart-badge {
  background: var(--gold); color: var(--ink); border-radius: 20px;
  min-width: 22px; padding: 1px 7px; font-size: 12px; font-weight: 700; text-align: center;
}

/* ---------- Buttons ---------- */
.btn { border-radius: 10px; font-weight: 700; font-size: 15px; padding: 14px 24px; border: 0; text-decoration: none; display: inline-block; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); color: var(--ink); }
.btn-green { background: var(--green); color: #f6f3e9; }
.btn-green:hover { background: var(--green-dark); color: #f6f3e9; }
.btn-outline-cream { border: 1px solid rgba(243,239,226,.5); background: transparent; color: #f3efe2; }
.btn-outline-cream:hover { background: rgba(243,239,226,.12); color: #f3efe2; }
.btn-outline-green { border: 1px solid var(--green); background: transparent; color: var(--green); }
.btn-outline-green:hover { background: var(--green-tint); color: var(--green); }
.btn-outline-tan { border: 1px solid #cbbfa6; background: transparent; color: var(--green); }
.btn-outline-tan:hover { background: #efe8d8; color: var(--green); }
.btn-outline-tan-cream { border: 1px solid #cbbfa6; background: var(--cream); color: var(--green); }
.btn-outline-tan-cream:hover { background: #fff; color: var(--green); }
.btn-sm { font-size: 13px; padding: 9px 14px; border-radius: 8px; }
.btn-block { width: 100%; text-align: center; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

.pill {
  border: 1px solid #cbbfa6; font-weight: 600; font-size: 13px; padding: 9px 15px; border-radius: 20px;
  background: var(--cream); color: var(--text2); text-decoration: none; display: inline-block;
}
.pill.active { background: var(--green); color: #f6f3e9; border-color: var(--green); }
.pill-square { border-radius: 9px; }

/* ---------- Layout helpers ---------- */
.eyebrow { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); margin-bottom: 8px; }
.section { padding: 58px 0 10px; }
.section-tight { padding: 44px 0 10px; }
.h2 { font-size: 32px; font-weight: 700; letter-spacing: -.01em; }
.row-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }

.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

/* ---------- Cards ---------- */
.card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.card-link { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.card-link:hover, .card.hoverable:hover { border-color: var(--olive); }

.thumb { width: 100%; object-fit: cover; display: block; background: #e9e1cd; }
.thumb-cat { height: 132px; }
.thumb-prod { height: 150px; }
.thumb-art { height: 158px; }
.thumb-art-lg { height: 300px; border-radius: 14px; border: 1px solid var(--border); }
.thumb-portrait { height: 150px; }
.thumb-wide { height: 280px; border-radius: 14px; border: 1px solid var(--border); }
.thumb-map { height: 220px; border-radius: 16px; border: 1px solid var(--border); }

.cat-card-body, .prod-card-body, .art-card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.prod-card-body, .art-card-body { padding: 15px; gap: 9px; flex: 1; }
.art-card-body { padding: 18px; }
.card-title { font-family: var(--font-serif); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

.thumb-wrap { position: relative; }
.badge-cat {
  position: absolute; top: 10px; left: 10px; background: var(--green); color: #f3efe2;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px;
}

.prod-name { font-family: var(--font-serif); font-weight: 600; font-size: 16px; line-height: 1.3; }
.prod-short { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.prod-stock { font-size: 12px; color: var(--brown); font-weight: 700; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.prod-price { font-family: var(--font-serif); font-weight: 700; font-size: 19px; color: var(--ink); }

.art-topic { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--brown); font-weight: 700; }
.art-title { font-size: 19px; font-weight: 700; line-height: 1.28; }
.art-lead { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.art-more { font-size: 14px; font-weight: 700; color: var(--green); }

/* ---------- Hero ---------- */
.hero {
  background: var(--green); color: #f3efe2; position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; min-height: 480px;
}
.hero-copy { padding: 64px 0; }
.hero-badge {
  display: inline-block; border: 1px solid rgba(243,239,226,.35); border-radius: 20px;
  padding: 5px 13px; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { font-size: 52px; line-height: 1.06; font-weight: 700; letter-spacing: -.02em; margin-bottom: 20px; }
.hero-sub { font-size: 18px; line-height: 1.6; color: #dfe6d0; max-width: 520px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 38px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-serif); font-size: 26px; font-weight: 700; }
.hero-stat-label { font-size: 13px; color: #c6d1b2; }
.hero-photo {
  height: 100%; min-height: 480px; border-left: 1px solid rgba(243,239,226,.18);
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); }
.trust-grid { padding: 26px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; gap: 11px; align-items: flex-start; }
.trust-dot { width: 9px; height: 9px; background: var(--olive); border-radius: 2px; margin-top: 6px; flex: 0 0 auto; }
.trust-title { font-weight: 700; font-size: 14px; }
.trust-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Calendar promo (home) ---------- */
.calendar-promo {
  background: var(--cream); border: 1px solid var(--border); border-radius: 18px; padding: 34px;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px;
}
.calendar-promo h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.calendar-promo p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0 0 18px; }
.task-tile { background: var(--bg); border: 1px solid var(--border2); border-radius: 12px; padding: 15px; }
.task-tag { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--brown); font-weight: 700; margin-bottom: 6px; }
.task-text { font-size: 14px; line-height: 1.55; color: var(--text2); }

/* ---------- Magazine section (home) ---------- */
.section-alt { background: var(--sand2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-alt .section { padding: 56px 0; }

/* ---------- Why-us / reviews ---------- */
.review-card { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.review-text { margin: 0 0 10px; font-family: var(--font-serif); font-size: 16px; line-height: 1.6; font-style: italic; color: var(--text2); }
.review-who { font-size: 13px; color: var(--muted2); }
.value-list { margin: 0; padding-left: 20px; color: var(--text3); font-size: 15px; line-height: 1.85; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--brown); color: #f6efe1; }
.newsletter-grid { padding: 46px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.newsletter h2 { font-size: 27px; font-weight: 700; margin-bottom: 10px; }
.newsletter p { font-size: 15px; line-height: 1.6; color: #e8d9c4; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 220px; border: 1px solid rgba(246,239,225,.4); background: rgba(246,239,225,.1);
  color: #f6efe1; font-size: 15px; padding: 13px 15px; border-radius: 9px; outline: none;
}
.newsletter-form input::placeholder { color: #e8d9c4; }
.newsletter-note { font-size: 12px; color: #e8d9c4; margin-top: 10px; line-height: 1.5; }

/* ---------- Forms (generic) ---------- */
.field { border: 1px solid #cbbfa6; background: var(--bg); font-size: 15px; padding: 12px; border-radius: 9px; outline: none; width: 100%; }
.field:focus { border-color: var(--green); }
textarea.field { min-height: 130px; resize: vertical; }
.form-grid { display: grid; gap: 11px; }
.form-note { font-size: 12px; color: var(--muted2); margin-top: 8px; line-height: 1.55; }
.form-success { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 10px; }
.form-error { font-size: 13px; color: #a33636; font-weight: 600; margin-top: 10px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Page heads ---------- */
.page-head { padding: 44px 0 26px; }
.page-head h1 { font-size: 40px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; }
.page-head-lead { font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 720px; }

/* ---------- Filters ---------- */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.sort-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.select-field { border: 1px solid #cbbfa6; background: var(--cream); color: var(--ink); font-size: 14px; padding: 10px 12px; border-radius: 9px; }
.result-label { font-size: 14px; color: var(--muted2); }

/* ---------- Shop info strip ---------- */
.shop-info { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 26px; margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cart-items-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.shop-info-title { font-family: var(--font-serif); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.shop-info p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---------- Cart ---------- */
.cart-panel { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.cart-line { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 16px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cart-line-thumb { width: 78px; height: 78px; flex: 0 0 auto; border-radius: 10px; object-fit: cover; border: 1px solid var(--border2); }
.cart-line-name { font-family: var(--font-serif); font-weight: 600; font-size: 17px; line-height: 1.3; }
.cart-line-meta { font-size: 13px; color: var(--muted2); margin-top: 4px; }
.qty-group { display: flex; align-items: center; gap: 8px; }
.qty-btn { border: 1px solid #cbbfa6; background: var(--bg); color: var(--ink); font-weight: 700; font-size: 15px; width: 32px; height: 32px; border-radius: 8px; }
.qty-btn:hover { background: #e9e1cd; }
.qty-val { min-width: 26px; text-align: center; font-weight: 700; font-size: 15px; }
.line-sum { min-width: 104px; text-align: right; font-family: var(--font-serif); font-weight: 700; font-size: 18px; }
.line-remove { border: 0; background: transparent; color: var(--muted2); font-size: 13px; font-weight: 600; text-decoration: underline; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; padding: 6px 0; color: var(--text2); }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-serif); font-size: 22px; font-weight: 700; }
.hr { height: 1px; background: var(--border2); margin: 12px 0; }
.empty-box, .success-box {
  background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 40px; text-align: center;
}
.success-box { border-color: var(--olive); padding: 34px; }
.success-box h2, .empty-box h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; margin-bottom: 10px; }

/* ---------- Article ---------- */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.article-body h2 { font-size: 24px; font-weight: 700; margin: 8px 0 12px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--text2); }
.article-block { margin-bottom: 22px; }
.article-lead { font-size: 19px; line-height: 1.65; color: var(--text3); margin: 0 0 24px; }
.summary-box { background: var(--sand2); border: 1px solid var(--border); border-radius: 14px; padding: 22px; margin-top: 8px; }
.summary-box-title { font-family: var(--font-serif); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.summary-box ul { margin: 0; padding-left: 20px; font-size: 15px; line-height: 1.8; color: var(--text2); }
.related-wrap { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.related-card { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-decoration: none; color: inherit; display: block; }
.related-card:hover { border-color: var(--olive); }
.aside { display: grid; gap: 16px; position: sticky; top: 96px; }
.aside-box { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.aside-title { font-family: var(--font-serif); font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.aside-prod { display: flex; gap: 11px; align-items: center; }
.aside-prod-thumb { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 9px; object-fit: cover; border: 1px solid var(--border2); }
.aside-cta { background: var(--green); color: #eef2e2; border-radius: 14px; padding: 20px; }
.aside-cta .aside-title { color: #eef2e2; }
.aside-cta p { font-size: 14px; line-height: 1.6; color: #d7e0c6; margin: 0 0 14px; }
.back-link { border: 0; background: transparent; color: var(--green); font-weight: 700; font-size: 14px; padding: 6px 0; margin-bottom: 18px; display: inline-block; text-decoration: none; }

/* ---------- About ---------- */
.stat-box { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.stat-num { font-family: var(--font-serif); font-size: 26px; font-weight: 700; }
.stat-label { font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: 4px; }
.team-role { font-size: 13px; color: var(--brown); font-weight: 600; margin: 3px 0 8px; }
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- Contact ---------- */
.contact-panel { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.contact-panel-title { font-family: var(--font-serif); font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.contact-info-block { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.contact-info-title { font-family: var(--font-serif); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.contact-info { font-size: 15px; line-height: 1.9; color: var(--text2); }
.contact-info-alt { font-size: 14px; line-height: 1.85; color: var(--text3); }

/* ---------- Docs / legal ---------- */
.doc-updated { font-size: 14px; color: var(--muted2); margin: 0 0 26px; }
.doc-block h2 { font-size: 22px; font-weight: 700; margin: 10px 0 10px; }
.doc-block p { font-size: 16px; line-height: 1.75; color: var(--text2); }
.doc-help { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-top: 10px; }
.doc-help p { font-size: 15px; line-height: 1.7; color: var(--text3); margin: 0; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  padding: 18px 20px; display: flex; justify-content: space-between; gap: 16px; cursor: pointer; align-items: center;
  list-style: none; font-family: var(--font-serif); font-weight: 600; font-size: 17px; line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #f7f2e6; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--green); font-weight: 700; flex: 0 0 auto; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 20px 20px; font-size: 16px; line-height: 1.7; color: var(--text2); }

/* ---------- Calendar ---------- */
.month-panel { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.month-panel h2 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.month-panel > p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0 0 22px; max-width: 760px; }
.month-row { background: var(--bg); border: 1px solid var(--border2); border-radius: 12px; padding: 18px; }
.month-row ul { margin: 0; padding-left: 18px; font-size: 14px; line-height: 1.75; color: var(--text2); }
.legal-note { background: var(--sand2); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-top: 20px; }
.legal-note-title { font-family: var(--font-serif); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.legal-note p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--text3); }

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--cream);
  border-top: 2px solid var(--green); box-shadow: 0 -8px 30px rgba(43,36,24,.14); display: none;
}
.cookie-bar.visible { display: block; }
.cookie-inner { max-width: 1180px; margin: 0 auto; padding: 18px 20px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 280px; font-size: 14px; line-height: 1.6; color: var(--text2); }
.cookie-text strong { font-family: var(--font-serif); font-size: 16px; display: block; margin-bottom: 4px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: auto; }
.footer-grid { max-width: 1180px; margin: 0 auto; padding: 48px 20px 20px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; color: #1f1a11; font-family: var(--font-serif); font-weight: 700; font-size: 15px; }
.footer-title { font-family: var(--font-serif); font-weight: 700; font-size: 18px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: var(--footer-muted); margin: 0 0 14px; max-width: 320px; }
.footer-contact { font-size: 14px; line-height: 1.8; color: var(--footer-muted); }
.footer-col-title { font-family: var(--font-serif); font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 14px; color: var(--footer-muted); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding: 18px 20px 40px; border-top: 1px solid var(--footer-border);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #8d8371;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { min-height: 260px; border-left: 0; border-top: 1px solid rgba(243,239,226,.18); }
  .hero-photo img { min-height: 260px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-promo { grid-template-columns: 1fr; }
  .newsletter-grid { grid-template-columns: 1fr; padding: 34px 0; }
  .article-layout { grid-template-columns: 1fr; }
  .aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-info { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cart-items-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .header-inner { gap: 12px; }
  .brand-sub { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-copy { padding: 40px 0; }
  .h2, .page-head h1 { font-size: 28px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-line { flex-direction: column; align-items: stretch; }
  .line-sum { text-align: left; }
}
