@import url('fonts.css');

:root {
  --bg: #f7f4ee;
  --ink: #16201c;
  --green-950: #0b241f;
  --green-900: #0d2b26;
  --green-800: #123b34;
  --green-800-border: #1d4f46;
  --green-700: #16413a;
  --green-600: #0d5a4a;
  --gold: #c8801f;
  --gold-dark: #ab6a15;
  --amber: #e9a13b;
  --amber-light: #f4bd6a;
  --amber-ink: #231803;
  --border: #e2ddd2;
  --border-strong: #d8d1c1;
  --panel-alt: #efeae0;
  --panel-input: #f9f7f2;
  --chip: #ece7dc;
  --text-muted-1: #41504a;
  --text-muted-2: #4b5a53;
  --text-muted-3: #5d6b63;
  --text-muted-4: #7b8880;
  --text-dark-2: #2b3833;
  --sand: #f3e7d2;
  --success-bg: #eef4ef;
  --success-border: #cfe0d3;
  --danger: #b3261e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-card: 0 14px 34px rgba(22,32,28,.10);
  --shadow-btn: 0 8px 20px rgba(200,128,31,.28);
  --shadow-drawer: -20px 0 50px rgba(11,36,31,.25);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', system-ui, sans-serif; margin: 0; text-wrap: balance; }
p { text-wrap: pretty; margin: 0; }
a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }
input[type=range] { accent-color: var(--gold); }
button { border: none; background: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

@keyframes slideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: none; } }
@keyframes sunPulse { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: .9; transform: scale(1.06); } }
.animate-in { animation: slideUp .5s ease both; }

/* Layout */
.page-shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow2 { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-about { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

section.section { padding: 84px 24px; }
section.section-tight { padding: 64px 24px 84px; }
@media (max-width: 900px) {
  section.section { padding: 56px 24px; }
  section.section-tight { padding: 40px 20px 56px; }
}

/* Promo bar */
.promo-bar {
  background: var(--green-900); color: var(--sand); font-size: 13.5px; letter-spacing: .02em;
  padding: 9px 24px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; text-align: center;
}
.promo-bar .accent { color: var(--amber); }
.promo-bar .close-x { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); cursor: pointer; opacity: .7; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(247,244,238,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.site-header .bar { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand .dot { width: 32px; height: 32px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #f4c46b, var(--gold)); animation: sunPulse 4s ease-in-out infinite; }
.brand .word { font-family: 'Sora'; font-weight: 700; font-size: 20px; letter-spacing: -.02em; color: var(--ink); }
.brand .word span { color: var(--gold); }
.main-nav { display: flex; gap: 2px; flex-wrap: wrap; flex: 1; }
.main-nav a { cursor: pointer; padding: 8px 12px; border-radius: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.main-nav a:hover, .main-nav a.active { background: var(--chip); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tel-link { font-size: 14.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.tel-link:hover { color: var(--gold); }
.cart-btn { position: relative; cursor: pointer; padding: 9px 16px; border-radius: 10px; background: var(--green-900); color: var(--bg); font-size: 14px; font-weight: 600; }
.cart-btn:hover { background: var(--green-700); }
.nav-toggle { display: none; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; cursor: pointer; }
  .nav-toggle svg { width: 22px; height: 22px; }
  .site-header .bar { flex-wrap: wrap; }
  .mobile-nav { display: none; flex-direction: column; gap: 2px; width: 100%; padding: 6px 0 12px; border-top: 1px solid var(--border); margin-top: 10px; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 600; color: var(--ink); }
  .mobile-nav a:hover, .mobile-nav a.active { background: var(--chip); }
}
@media (min-width: 981px) { .mobile-nav { display: none !important; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border-radius: 12px; font-weight: 700; font-size: 16px; padding: 15px 26px; transition: background .15s ease; text-align: center; }
.btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 10px; }
.btn-gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-btn); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--chip); color: var(--ink); }
.btn-dark { background: var(--green-900); color: var(--bg); }
.btn-dark:hover { background: var(--green-700); color: var(--bg); }
.btn-amber { background: var(--amber); color: var(--amber-ink); }
.btn-amber:hover { background: var(--amber-light); color: var(--amber-ink); }
.btn-block { width: 100%; }
.link-arrow { cursor: pointer; font-weight: 700; color: var(--green-600); border-bottom: 2px solid var(--green-600); padding-bottom: 2px; display: inline-block; }
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

/* Cards / generic */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.card:hover { border-color: var(--gold); }
.card-plain { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: var(--chip); font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted-3); }
.eyebrow { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted-4); font-weight: 700; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.ratio-4-5 { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-strong); background: var(--panel-alt); }
.ratio-4-3 { aspect-ratio: 4/3; overflow: hidden; background: var(--panel-alt); }
.ratio-16-9 { aspect-ratio: 16/9; overflow: hidden; background: var(--panel-alt); }
.ratio-1-1 { aspect-ratio: 1/1; overflow: hidden; background: var(--panel-alt); border-radius: 18px; }
.ratio-16-10 { aspect-ratio: 16/10; overflow: hidden; background: var(--panel-alt); border-radius: 18px; border: 1px solid var(--border-strong); }

/* Hero */
.hero { padding: 72px 24px 56px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; padding: 40px 20px 40px; } }
.hero h1 { font-size: 56px; line-height: 1.04; letter-spacing: -.03em; margin: 18px 0 0; }
.hero p.lead { font-size: 18.5px; line-height: 1.6; color: var(--text-muted-1); max-width: 560px; margin: 20px 0 0; }
.hero-figure { position: relative; }
.hero-stat-card { position: absolute; bottom: -22px; left: -22px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-card); max-width: 250px; }
@media (max-width: 560px) { .hero-stat-card { position: static; margin-top: 16px; max-width: none; } }
.stat-label { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted-4); font-weight: 600; }
.stat-value { font-family: 'Sora'; font-size: 26px; font-weight: 700; margin-top: 4px; }
.stat-note { font-size: 13px; color: var(--text-muted-3); margin-top: 2px; }

.stat-row { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.stat-row .num { font-family: 'Sora'; font-size: 28px; font-weight: 700; }
.stat-row .lbl { font-size: 13.5px; color: var(--text-muted-3); }

.trustbar { background: var(--green-900); color: #e9e3d6; }
.trustbar .container { padding: 26px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; font-size: 14.5px; }
@media (max-width: 900px) { .trustbar .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trustbar .container { grid-template-columns: 1fr; } }
.trustbar .item { display: flex; gap: 10px; align-items: flex-start; }
.trustbar .item .mark { color: var(--amber); font-size: 18px; }

/* section heading row */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-head h2 { font-size: 38px; letter-spacing: -.02em; margin-top: 10px; }

/* Service cards */
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; transition: border-color .15s, transform .15s; }
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-mark { width: 40px; height: 40px; border-radius: 10px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); }
.service-card h3 { font-size: 19px; margin-top: 16px; }
.service-card p { font-size: 15px; line-height: 1.6; color: var(--text-muted-2); margin: 8px 0 0; }
.service-from { margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--green-600); }

/* Steps */
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.step-no { font-family: 'JetBrains Mono'; font-size: 13px; color: var(--gold); font-weight: 500; }
.step-card h3 { font-size: 18px; margin-top: 10px; }
.step-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted-2); margin: 8px 0 0; }
.step-time { font-size: 13px; color: var(--text-muted-4); margin-top: 12px; font-family: 'JetBrains Mono'; }

/* Calculator */
.calc-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; }
.calc-dark { background: var(--green-900); color: #e9e3d6; border-radius: 20px; padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.calc-dark h2 { color: #fff; }
.calc-tile { background: var(--green-800); border-radius: 12px; padding: 18px; }
.calc-tile .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #8fb0a8; font-weight: 600; }
.calc-tile .val { font-family: 'Sora'; font-size: 26px; font-weight: 700; color: #fff; margin-top: 4px; }
.calc-row { display: flex; justify-content: space-between; font-size: 15.5px; }
.calc-row span { color: #c3cfc8; }
.calc-row b { color: #fff; }
.calc-summary { background: var(--bg); border-radius: 12px; padding: 16px; }
.calc-summary .lbl { font-size: 12.5px; color: var(--text-muted-4); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.calc-summary .val { font-family: 'Sora'; font-size: 26px; font-weight: 700; margin-top: 4px; }
.chip-option { cursor: pointer; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--border-strong); font-size: 14px; font-weight: 600; background: #fff; color: var(--text-muted-1); }
.chip-option.active { background: var(--green-900); color: var(--bg); }
.chip-option-pill { cursor: pointer; padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; border: 1px solid var(--border-strong); background: #fff; color: var(--text-muted-1); }
.chip-option-pill.active { background: var(--green-900); color: var(--bg); }
.chip-option-pill-sm { cursor: pointer; padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; border: 1px solid var(--border-strong); background: #fff; color: var(--text-muted-1); }
.chip-option-pill-sm.active { background: var(--green-900); color: var(--bg); }

input[type=range].slider { width: 100%; margin-top: 12px; height: 6px; border-radius: 999px; background: var(--border-strong); appearance: none; -webkit-appearance: none; }
input[type=range].slider::-webkit-slider-thumb { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.3); }
input[type=range].slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.3); }

/* Shop / trgovina */
.shop-tile { background: var(--green-800); border: 1px solid var(--green-800-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.shop-tile .body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-tile .cat { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.shop-tile .name { font-size: 15.5px; font-weight: 700; line-height: 1.35; color: #fff; }
.shop-tile .price { font-family: 'Sora'; font-size: 20px; font-weight: 700; margin-top: auto; color: #fff; }
.add-btn-light { cursor: pointer; text-align: center; padding: 10px; border-radius: 10px; background: var(--bg); color: var(--green-900); font-weight: 700; font-size: 14px; }
.add-btn-light:hover { background: var(--amber); }

.product-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.product-card .thumb { position: relative; }
.product-card .stock-badge { position: absolute; top: 12px; left: 12px; background: var(--green-900); color: #e9e3d6; font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 999px; }
.product-card .body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .cat { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.product-card .name { font-size: 17px; font-weight: 700; line-height: 1.35; }
.product-card .desc { font-size: 14.5px; color: var(--text-muted-2); line-height: 1.55; }
.product-card .sku { font-family: 'JetBrains Mono'; font-size: 12.5px; color: var(--text-muted-4); margin-top: 4px; }
.product-card .buy-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; }
.product-card .price { font-family: 'Sora'; font-size: 22px; font-weight: 700; }
.product-card .unit { font-size: 12px; color: var(--text-muted-4); }
.add-btn-dark { cursor: pointer; padding: 11px 18px; border-radius: 10px; background: var(--green-900); color: var(--bg); font-weight: 700; font-size: 14px; }
.add-btn-dark:hover { background: var(--gold); }

/* Reviews */
.review-card { background: var(--panel-alt); border: 1px solid var(--border); border-radius: 20px; padding: 26px; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: .2em; }
.review-card p { font-size: 16px; line-height: 1.6; color: var(--text-dark-2); margin: 10px 0 14px; }
.review-who { font-size: 13.5px; color: var(--text-muted-3); font-weight: 600; }

/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--gold), var(--amber)); border-radius: 24px; padding: 52px; display: flex; justify-content: space-between; align-items: center; gap: 36px; flex-wrap: wrap; color: var(--amber-ink); }
.cta-banner h2 { font-size: 34px; letter-spacing: -.02em; }
.cta-banner p { font-size: 17px; line-height: 1.6; margin: 12px 0 0; }
.cta-banner .btn { white-space: nowrap; background: var(--amber-ink); color: #f7e9cf; }
.cta-banner .btn:hover { background: #000; color: #f7e9cf; }
@media (max-width: 700px) { .cta-banner { padding: 32px 24px; } }

/* Blog cards */
.blog-card { cursor: pointer; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: block; }
.blog-card:hover { border-color: var(--gold); }
.blog-card .body { padding: 22px; }
.blog-card .date { font-size: 12.5px; color: var(--text-muted-4); font-family: 'JetBrains Mono'; }
.blog-card h3 { font-size: 18.5px; margin-top: 8px; line-height: 1.3; }
.blog-card p { font-size: 14.5px; color: var(--text-muted-2); line-height: 1.6; margin: 8px 0 0; }
.blog-card.lg .body { padding: 26px; }
.blog-card.lg h3 { font-size: 22px; }
.blog-card.lg p { font-size: 15px; line-height: 1.65; margin-top: 10px; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q { cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-weight: 700; font-size: 16.5px; width: 100%; text-align: left; color: var(--ink); background: none; border: none; }
.faq-sign { color: var(--gold); font-size: 20px; flex-shrink: 0; }
.faq-a { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.65; color: var(--text-muted-2); display: none; }
.faq-item.open .faq-a { display: block; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .field .flabel { font-size: 13.5px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border-strong); border-radius: 10px;
  font-size: 15px; background: var(--panel-input); color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.field-error { font-size: 12.5px; color: var(--danger); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .field-error { display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; opacity: 0; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-muted-2); line-height: 1.5; }
.checkbox-row input { margin-top: 3px; width: auto; }
.form-note { font-size: 12.5px; color: var(--text-muted-4); }
.success-box { padding: 24px; border-radius: 14px; background: var(--success-bg); border: 1px solid var(--success-border); }
.success-box h3 { font-size: 20px; }
.success-box p { font-size: 15.5px; line-height: 1.6; color: var(--text-muted-1); margin: 8px 0 0; }
.error-box { padding: 18px 20px; border-radius: 12px; background: #fdecea; border: 1px solid #f3c2bd; color: #7a1912; font-size: 14.5px; line-height: 1.5; }

/* Info cards (about/why-us) */
.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.why-item b { font-weight: 700; font-size: 16px; display: block; }
.why-item div.txt { font-size: 15px; color: var(--text-muted-2); line-height: 1.6; }

/* Footer */
.site-footer { background: var(--green-950); color: #b9c8c1; }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 64px 24px 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; font-size: 14.5px; }
.footer-links a { color: #b9c8c1; cursor: pointer; }
.footer-links a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .dot { width: 28px; height: 28px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #f4c46b, var(--gold)); }
.footer-brand .word { font-family: 'Sora'; font-weight: 700; font-size: 19px; color: #fff; }
.footer-brand .word span { color: var(--amber); }
.footer-desc { font-size: 14.5px; line-height: 1.65; margin: 16px 0 0; }
.footer-legalinfo { font-family: 'JetBrains Mono'; font-size: 12.5px; line-height: 1.9; margin-top: 18px; color: #8fa79f; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding: 20px 24px 40px; border-top: 1px solid #16403788; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #7d968e; }
.footer-bottom .pay { display: flex; gap: 16px; flex-wrap: wrap; }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-scrim { position: absolute; inset: 0; background: rgba(11,36,31,.5); }
.cart-panel { position: relative; width: 420px; max-width: 92vw; background: var(--bg); height: 100%; display: flex; flex-direction: column; animation: drawerIn .28s ease both; box-shadow: var(--shadow-drawer); }
.cart-head { padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head h3 { font-size: 20px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--text-muted-3); line-height: 1; background: none; border: none; }
.cart-body { flex: 1; overflow: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { text-align: center; padding: 50px 10px; color: var(--text-muted-3); }
.cart-empty p { font-size: 15.5px; line-height: 1.6; }
.cart-line { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px; display: flex; gap: 12px; }
.cart-line .thumb { width: 64px; height: 64px; border-radius: 10px; flex-shrink: 0; overflow: hidden; background: var(--panel-alt); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .name { font-size: 14.5px; font-weight: 700; line-height: 1.35; }
.cart-line .meta { font-size: 12.5px; color: var(--text-muted-4); margin-top: 2px; }
.cart-line .qty-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.qty-btn { cursor: pointer; width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-weight: 700; background: #fff; }
.cart-line .remove { cursor: pointer; color: #a3aca7; font-size: 16px; align-self: flex-start; background: none; border: none; }
.cart-line .remove:hover { color: var(--danger); }
.cart-foot { border-top: 1px solid var(--border); padding: 20px 24px; background: #fff; }
.cart-foot .row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text-muted-2); margin-top: 6px; }
.cart-foot .row:first-child { margin-top: 0; }
.cart-foot .total { font-size: 19px; font-weight: 700; margin-top: 12px; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 70; display: none; justify-content: center; }
.cookie-banner.show { display: flex; }
.cookie-inner { max-width: 1060px; width: 100%; background: var(--green-950); color: #dfe8e3; border-radius: 16px; padding: 22px 24px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; box-shadow: 0 18px 44px rgba(11,36,31,.35); }
.cookie-inner .txt { flex: 1; min-width: 280px; font-size: 14.5px; line-height: 1.6; }
.cookie-inner .txt b { color: #fff; display: block; margin-bottom: 4px; }
.cookie-inner .txt a { color: var(--amber); cursor: pointer; font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { cursor: pointer; padding: 12px 20px; border-radius: 10px; border: 1px solid #2c5a51; font-weight: 700; font-size: 14px; color: #dfe8e3; background: none; }
.cookie-btn.accept { background: var(--amber); color: var(--amber-ink); border-color: var(--amber); }

/* Legal / article typography */
.legal-blocks, .article-blocks { display: flex; flex-direction: column; gap: 22px; }
.legal-blocks h2 { font-size: 21px; margin-bottom: 10px; }
.legal-blocks p, .article-blocks p { font-size: 16px; line-height: 1.75; color: var(--text-dark-2); white-space: pre-line; }
.article-blocks p { font-size: 17px; line-height: 1.75; white-space: normal; }
.article-blocks h2 { font-size: 26px; letter-spacing: -.02em; margin-bottom: 10px; }
.legal-panel { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 36px; margin-top: 26px; }
@media (max-width: 640px) { .legal-panel { padding: 24px; } }

.back-link { cursor: pointer; font-size: 14px; font-weight: 700; color: var(--green-600); }

/* misc */
.text-muted { color: var(--text-muted-2); }
.divider-top { border-top: 1px solid var(--border); }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; } .mt-32 { margin-top: 32px; } .mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; } .mt-44 { margin-top: 44px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.tag-chip { padding: 6px 12px; border-radius: 999px; background: var(--panel-alt); font-size: 13px; font-weight: 600; color: var(--text-muted-1); }
.cert-chip { padding: 12px 18px; border: 1px solid var(--border-strong); border-radius: 12px; background: #fff; font-size: 14px; font-weight: 600; color: var(--text-muted-1); }

.dark-panel { background: var(--green-900); color: #e9e3d6; border-radius: 20px; padding: 36px; }
.dark-panel h3 { color: #fff; }
.dark-panel-flex { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }

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

noscript.noscript-banner { display: block; background: #fdecea; color: #7a1912; text-align: center; padding: 10px; font-size: 14px; }
