/* Petvaria — fő stíluslap */
:root {
  --bg: #FAF6EF;
  --ink: #1F2B22;
  --ink-soft: #33422F;
  --muted: #4A5A4D;
  --muted-2: #6B7A6E;
  --muted-3: #8A7F6B;
  --border: #E6DFD2;
  --border-soft: #F0EBE0;
  --white: #FFFFFF;
  --input-bg: #FCFAF6;
  --orange: #C8582F;
  --orange-dark: #9E4223;
  --green: #2F6B4F;
  --green-bg: #EAF0EA;
  --green-bg-2: #F4F8F3;
  --gold: #E0B26A;
  --dark: #1F2B22;
  --dark-2: #33452F;
  --dark-3: #2A3A2C;
  --dark-ink: #F7F2E8;
  --dark-muted: #C7D2C6;
  --dark-muted-2: #93A492;
  --font-display: 'Bricolage Grotesque', 'Segoe UI Semibold', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', 'SFMono-Regular', Menlo, monospace;
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 22px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); text-decoration: underline; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; }
button { cursor: pointer; }

@keyframes pvIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
main { flex: 1; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--dark-ink); padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100; }
.skip-link:focus { left: 0; }

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(250,246,239,.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.site-header .container { padding: 14px 24px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; background: none; border: none; cursor: pointer; padding: 0; color: inherit; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px; background: var(--green); display: flex; align-items: center;
  justify-content: center; color: var(--bg); font-family: var(--font-display); font-weight: 800; font-size: 19px; flex: none;
}
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--ink); }
.main-nav { display: flex; gap: 22px; align-items: center; margin-left: 8px; flex-wrap: wrap; }
.main-nav a { background: none; border: none; cursor: pointer; font-size: 15px; font-weight: 500; color: var(--ink); padding: 4px 0; text-decoration: none; }
.main-nav a:hover, .main-nav a.active { color: var(--orange); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.hours-tag { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); }
.cart-btn {
  display: flex; align-items: center; gap: 9px; background: var(--ink); color: var(--dark-ink); border: none;
  border-radius: var(--radius-pill); padding: 11px 20px; cursor: pointer; font-weight: 600; font-size: 14px;
}
.cart-btn:hover { background: var(--green); }
.cart-count {
  background: var(--orange); color: #fff; border-radius: var(--radius-pill); min-width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; padding: 0 6px;
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--radius-pill); font-weight: 700; cursor: pointer; border: none; text-decoration: none; }
.btn:hover { text-decoration: none; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-md { padding: 13px 24px; font-size: 15px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-dark { background: var(--ink); color: var(--dark-ink); }
.btn-dark:hover { background: var(--green); color: #fff; }
.btn-outline { background: none; color: var(--ink); border: 1.5px solid var(--ink); font-weight: 600; }
.btn-outline:hover { background: var(--ink); color: var(--dark-ink); }
.btn-outline-soft { background: none; color: var(--ink); border: 1.5px solid var(--border); font-weight: 600; }
.btn-outline-soft:hover { border-color: var(--ink); }
.btn-soft { background: var(--green-bg); color: var(--green); border: none; font-weight: 700; }
.btn-soft:hover { background: var(--green); color: #fff; }
.btn-gold { background: var(--gold); color: var(--ink); border: none; font-weight: 700; }
.btn-text { background: none; border: none; color: var(--muted-2); cursor: pointer; padding: 0; font-size: 14px; }
.btn-block { width: 100%; }
.chip { border-radius: var(--radius-pill); padding: 11px 20px; font-weight: 600; cursor: pointer; font-size: 15px; border: 1.5px solid var(--border); background: transparent; color: var(--ink); text-decoration: none; display: inline-flex; }
.chip.active, .chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--dark-ink); }

/* Layout helpers */
.section { padding: 64px 24px; }
.section-tight { padding: 44px 24px 70px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.eyebrow {
  display: inline-block; background: var(--green-bg); color: var(--green); border-radius: var(--radius-pill);
  padding: 7px 15px; font-size: 13px; font-weight: 600; letter-spacing: .02em;
}
.lead { font-size: 19px; line-height: 1.65; color: var(--muted); }

/* Hero */
.hero { padding: 60px 24px 40px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 60px; line-height: 1.02; margin: 20px 0 18px; text-wrap: balance; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.hero-stats .label { font-size: 13px; color: var(--muted-2); }
.hero-media { position: relative; border-radius: var(--radius-l); overflow: hidden; height: 460px; border: 1px solid var(--border); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 16px 20px; box-shadow: 0 12px 30px rgba(31,43,34,.08); max-width: 220px;
}
.hero-badge .small { font-size: 12px; color: var(--muted-2); font-weight: 600; }
.hero-badge .big { font-family: var(--font-display); font-size: 18px; font-weight: 700; }

/* Photo placeholder frame (used before real photo swapped in — kept as fallback style) */
.photo-frame { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border); background: var(--border-soft); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Perks strip */
.perks { background: #fff; border-block: 1px solid var(--border); }
.perks .grid-4 { padding: 34px 24px; gap: 28px; }
.perk-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.perk-desc { font-size: 14px; color: var(--muted-2); line-height: 1.5; }

/* Section headers */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.section-head h2 { font-size: 38px; margin-bottom: 8px; }
.section-head p { color: var(--muted-2); font-size: 16px; }

/* Cards */
.card { background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.category-card { text-align: left; padding: 0; overflow: hidden; display: block; color: inherit; }
.category-card:hover { border-color: var(--green); text-decoration: none; }
.category-card .thumb { height: 150px; }
.category-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-card .body { padding: 18px 20px 20px; }
.category-card .name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.category-card .desc { font-size: 14px; color: var(--muted-2); line-height: 1.5; }

.product-card { padding: 14px; display: flex; flex-direction: column; gap: 12px; color: inherit; }
.product-card .thumb { height: 180px; border-radius: 14px; overflow: hidden; display: block; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat { font-size: 12px; color: var(--green); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.product-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; line-height: 1.25; min-height: 44px; color: var(--ink); text-decoration: none; display: block; }
.product-short { font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; }
.price { font-size: 19px; font-weight: 700; }
.price-old { font-size: 14px; color: #9AA79C; text-decoration: line-through; }
.add-form { margin-top: auto; }

.review-card { padding: 26px; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { margin: 0 0 18px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.review-who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 38px; height: 38px; border-radius: var(--radius-pill); background: var(--green-bg); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green); flex: none; }
.review-name { font-weight: 700; font-size: 15px; }
.review-city { font-size: 13px; color: var(--muted-2); }

/* Club / dark band */
.band-dark { background: var(--dark); color: var(--dark-ink); }
.band-dark .grid-2 { padding: 66px 24px; gap: 56px; align-items: center; }
.band-dark h2 { font-size: 36px; margin-bottom: 16px; }
.band-dark p { font-size: 17px; line-height: 1.65; color: var(--dark-muted); margin-bottom: 22px; }
.band-dark ul { margin: 0 0 26px; padding-left: 20px; color: var(--dark-muted); line-height: 2; font-size: 16px; }
.band-media { height: 340px; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--dark-2); }
.band-media img { width: 100%; height: 100%; object-fit: cover; }

/* Newsletter */
.newsletter { background: var(--green-bg); border-radius: 24px; padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter h2 { font-size: 30px; margin-bottom: 10px; }
.newsletter p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }

/* Forms */
.field {
  border: 1px solid var(--border); border-radius: 12px; padding: 14px 15px; outline: none; background: var(--input-bg);
  width: 100%;
}
.field:focus { border-color: var(--green); }
textarea.field { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.checkbox-row input { margin-top: 3px; flex: none; }
.radio-row { display: flex; gap: 10px; align-items: center; border: 1px solid var(--border); border-radius: 12px; padding: 14px 15px; cursor: pointer; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.form-note { font-size: 13px; color: var(--muted-2); }
.form-msg { display: none; border-radius: 12px; padding: 14px 16px; font-size: 14px; font-weight: 600; }
.form-msg.show { display: block; }
.form-msg.ok { background: var(--green-bg); color: var(--green); }
.form-msg.err { background: #FBE7E1; color: var(--orange-dark); }

/* Product detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product-media { height: 460px; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--border); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.spec-box { border: 1px solid var(--border); border-radius: 18px; background: #fff; padding: 22px; margin-top: 26px; }
.spec-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 12px; }
.spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--border-soft); font-size: 15px; }
.spec-row span:first-child { color: var(--muted-2); }
.spec-row span:last-child { font-weight: 600; text-align: right; }
.stock-note { margin-top: 14px; font-size: 14px; color: var(--green); font-weight: 600; }

/* Services */
.service-card { padding: 28px; }
.service-no {
  width: 42px; height: 42px; border-radius: 12px; background: var(--green-bg); color: var(--green); display: flex;
  align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 500; margin-bottom: 16px;
}
.service-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-desc { margin: 0 0 14px; font-size: 15px; line-height: 1.65; color: var(--muted); }
.service-price { font-size: 14px; font-weight: 700; color: var(--orange); }
.club-plan { border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
.club-plan.featured { border: 2px solid var(--green); background: var(--green-bg-2); }
.club-plan .tag { font-size: 13px; color: var(--muted-2); font-weight: 600; margin-bottom: 8px; }
.club-plan.featured .tag { color: var(--green); font-weight: 700; }
.club-plan .pct { font-family: var(--font-display); font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.club-plan p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Blog */
.blog-card { overflow: hidden; display: block; color: inherit; }
.blog-card:hover { border-color: var(--green); text-decoration: none; }
.blog-card .thumb { height: 170px; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; }
.blog-tag { font-size: 12px; color: var(--green); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; color: var(--ink); }
.blog-lead { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.post-media { height: 280px; border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border); margin-bottom: 30px; }
.post-media img { width: 100%; height: 100%; object-fit: cover; }
.post-body p { font-size: 18px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 20px; }
.post-author { border-top: 1px solid var(--border); margin-top: 30px; padding-top: 22px; display: flex; align-items: center; gap: 14px; }
.post-author .avatar { width: 46px; height: 46px; font-size: 15px; }

/* Shipping table */
.ship-table { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; margin-bottom: 30px; }
.ship-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--border-soft); font-size: 15px; align-items: center; }
.ship-row:last-child { border-bottom: none; }
.ship-row .name { font-weight: 700; }
.ship-row .note { color: var(--muted-2); font-size: 14px; }
.ship-row .time { color: var(--muted); }
.ship-row .price { font-weight: 700; text-align: right; }
.info-box { background: var(--green-bg); border-radius: 18px; padding: 26px; }
.info-box .title { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.info-box p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }

/* FAQ (native details/summary, no JS needed) */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item summary {
  list-style: none; width: 100%; text-align: left; padding: 20px 24px; cursor: pointer; font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange); font-size: 22px; font-family: var(--font-body); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer { margin: 0; padding: 0 24px 22px; font-size: 16px; line-height: 1.75; color: var(--muted); }

/* Contact */
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px; }
.contact-card .title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.contact-card .details { font-size: 16px; line-height: 1.9; color: var(--muted); }
.map-photo { height: 200px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.map-photo img { width: 100%; height: 100%; object-fit: cover; }
.map-photo .tag { position: absolute; left: 14px; bottom: 14px; background: rgba(255,255,255,.92); border-radius: 999px; padding: 8px 14px; font-size: 12px; font-weight: 700; }

/* About */
.about-media { height: 300px; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--border); margin-bottom: 34px; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text { font-size: 19px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 20px; }
.about-text-sm { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 0 0 20px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.value-card .t { font-weight: 700; font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.value-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.store-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; }
.store-card .t { font-weight: 700; margin-bottom: 6px; }
.store-card .a { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Legal */
.legal-date { font-family: var(--font-mono); font-size: 12px; color: var(--muted-3); margin-bottom: 30px; }
.legal-block { margin-bottom: 26px; }
.legal-block h2 { font-size: 22px; margin-bottom: 10px; font-weight: 700; letter-spacing: -.01em; }
.legal-block p { font-size: 16px; line-height: 1.8; color: var(--muted); margin: 0 0 12px; }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-overlay .backdrop { position: absolute; inset: 0; background: rgba(31,43,34,.42); border: none; cursor: pointer; padding: 0; }
.cart-panel {
  position: relative; width: 420px; max-width: 92vw; background: var(--bg); height: 100%; display: flex; flex-direction: column;
  animation: pvIn .25s ease both; box-shadow: -20px 0 50px rgba(31,43,34,.18);
}
.cart-head { padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head .title { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted-2); }
.cart-body { flex: 1; overflow: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--muted-2); }
.cart-empty .msg { font-size: 17px; margin-bottom: 14px; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #EDE6D9; }
.cart-line .thumb { width: 72px; height: 72px; flex: none; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--border-soft); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; }
.cart-line .name { font-weight: 700; font-size: 15px; line-height: 1.3; margin-bottom: 4px; }
.cart-line .price { font-size: 13px; color: var(--muted-2); margin-bottom: 8px; font-weight: 400; }
.qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.qty-val { min-width: 20px; text-align: center; font-weight: 600; }
.remove-btn { margin-left: auto; background: none; border: none; color: var(--orange-dark); font-size: 13px; cursor: pointer; }
.cart-line .total { font-weight: 700; font-size: 15px; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border); background: #fff; }
.cart-foot .note { font-size: 14px; color: var(--green); margin-bottom: 10px; }
.cart-foot .sum { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 14px; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 20px; bottom: 20px; z-index: 70; max-width: 460px; background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 24px; box-shadow: 0 18px 50px rgba(31,43,34,.16); display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .title { font-family: var(--font-display); font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.cookie-banner p { margin: 0 0 16px; font-size: 14px; line-height: 1.65; color: var(--muted); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 32px; align-items: start; }
.summary-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px; position: sticky; top: 100px; }
.summary-title { font-family: var(--font-display); font-size: 19px; font-weight: 800; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
.summary-line span:first-child { color: var(--muted); }
.summary-line span:last-child { font-weight: 600; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; padding: 4px 0; color: var(--muted); }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 22px; font-weight: 800; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 8px; }
.success-box { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 60px; text-align: center; }
.success-icon { width: 60px; height: 60px; border-radius: var(--radius-pill); background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }
.success-box h1 { font-size: 34px; margin-bottom: 12px; }
.success-box p { margin: 0 0 24px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.empty-cart-box { text-align: center; padding: 70px 20px; color: var(--muted-2); }

/* Footer */
.site-footer { background: var(--dark); color: var(--dark-muted); margin-top: auto; }
.footer-grid { padding: 56px 24px 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-brand .name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--dark-ink); }
.footer-about { margin: 0 0 16px; font-size: 15px; line-height: 1.7; max-width: 320px; }
.footer-contact { font-size: 14px; line-height: 1.8; color: var(--dark-muted-2); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { color: var(--dark-ink); font-weight: 700; margin-bottom: 4px; font-family: var(--font-display); }
.footer-col a { background: none; border: none; color: var(--dark-muted); text-align: left; cursor: pointer; padding: 0; font-size: 15px; text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom-inner { max-width: 1240px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--dark-muted-2); }
.footer-bottom { border-top: 1px solid var(--dark-2); }
.footer-payments { display: flex; gap: 16px; flex-wrap: wrap; }

/* Back link */
.back-link { background: none; border: none; color: var(--muted-2); cursor: pointer; padding: 0; margin-bottom: 22px; font-size: 14px; display: inline-block; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* Utility widths */
.w-narrow { max-width: 1000px; margin: 0 auto; }
.w-text { max-width: 760px; margin: 0 auto; }
.w-legal { max-width: 820px; margin: 0 auto; }
.w-mid { max-width: 900px; margin: 0 auto; }
.max-lead { max-width: 660px; }
.max-lead-2 { max-width: 700px; }
.max-lead-3 { max-width: 520px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .band-dark .grid-2 { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ship-row { grid-template-columns: 1fr; text-align: left; }
  .ship-row .price { text-align: left; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 30px; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; }
}
