/* ==========================================================================
   Freshova — shared stylesheet
   Design tokens replicate the Freshova Claude Design source 1:1
   (colors, spacing, radii, type scale). Fonts use a local system-font
   stack instead of a web-font CDN so the site is fully self-contained.
   ========================================================================== */

:root {
  --ink: #10231c;
  --muted: #4b6660;
  --muted-2: #33504a;
  --green: #2f8f6b;
  --blue: #4a92b8;
  --line: #e2ebe7;
  --line-2: #d7e7df;
  --surface-green: #f2f8f5;
  --surface-blue: #eef5fa;
  --surface-green-2: #f8fbf9;
  --white: #ffffff;

  --dark-bg: #10231c;
  --dark-line: #24413a;
  --dark-text-1: #eaf4ef;
  --dark-text-2: #dbeae3;
  --dark-text-3: #b9cdc4;
  --dark-text-4: #9fb8ad;
  --dark-text-5: #7d9a8f;
  --dark-text-6: #6f8c81;
  --dark-star: #8fd3b6;

  --font-heading: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, "Courier New", monospace;

  --radius-lg: 20px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; }
p { margin: 0; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--ink); }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { margin: 0; }
main { flex: 1; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 100;
  font-size: 14px;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

@keyframes fv-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fv-fade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy, .hero-media { animation: none; }
}

/* ---------- Layout containers ---------- */
.wrap { margin: 0 auto; padding: 0 24px; }
.wrap-1200 { max-width: 1200px; }
.wrap-1100 { max-width: 1100px; }
.wrap-1000 { max-width: 1000px; }
.wrap-820 { max-width: 820px; }
.wrap-760 { max-width: 760px; }

.section-lg { padding: 84px 0; }
.section-md { padding: 70px 0; }
.section-sm { padding: 60px 0; }
.section-xs { padding: 26px 0; }
.bordered-b { border-bottom: 1px solid var(--line); }
.bordered-t { border-top: 1px solid var(--line); }
.bg-green { background: var(--surface-green); }
.bg-blue { background: var(--surface-blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 30px;
  border: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-sm { padding: 13px 22px; font-size: 14px; }
.btn-xs { padding: 11px 20px; font-size: 14px; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--ink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line-2); }
.btn-outline:hover { border-color: var(--green); color: var(--ink); }
.btn-line { background: none; border: 1px solid var(--line-2); color: var(--ink); }
.btn-line:hover { border-color: var(--green); color: var(--ink); }
.btn-block { width: 100%; }
.btn-plain {
  background: none; border: none; padding: 4px 0; font-size: 15px; color: var(--muted);
}
.btn-plain:hover { color: var(--ink); }

/* ---------- Promo bar / header ---------- */
.promo-bar {
  background: var(--ink);
  color: #dff0e8;
  font-size: 13px;
  letter-spacing: .04em;
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-mono);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 28px; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 10px; background: none; border: none; padding: 0; }
.logo-dot { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--blue)); display: block; }
.logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.nav { display: flex; gap: 22px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav a.btn-plain[aria-current="page"] { color: var(--ink); font-weight: 600; }
.cart-btn {
  position: relative; background: var(--surface-green); border: 1px solid var(--line-2);
  border-radius: var(--radius-pill); padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.cart-btn:hover { background: #e6f2ec; }
.nav-toggle { display: none; }

/* ---------- Hero (home) ---------- */
.hero { background: linear-gradient(160deg, var(--surface-green) 0%, var(--surface-blue) 100%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 84px 0 90px; }
.hero-copy { animation: fv-up .6s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius-pill); padding: 7px 14px; font-size: 12px; font-family: var(--font-mono);
  letter-spacing: .05em; color: var(--green);
}
.hero h1 { font-size: 60px; line-height: 1.04; font-weight: 600; letter-spacing: -.03em; margin-top: 22px; }
.hero-lead { font-size: 19px; line-height: 1.6; color: var(--muted); margin-top: 22px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-heading); font-size: 30px; font-weight: 600; color: var(--ink); }
.stat-label { font-size: 13px; color: var(--muted); }
.hero-media { display: grid; gap: 16px; animation: fv-fade .9s ease both; }
.hero-media-main { height: 300px; border-radius: var(--radius-md); border: 1px solid var(--line-2); overflow: hidden; }
.hero-media-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-media-pair div { height: 170px; border-radius: var(--radius-md); border: 1px solid var(--line-2); overflow: hidden; }
.hero-media-pair img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */
.trust-bar { display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; font-size: 14px; color: var(--muted); }

/* ---------- Section headers ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--green); }
.eyebrow-blue { color: var(--blue); }
.section-title { font-size: 40px; font-weight: 600; letter-spacing: -.02em; margin-top: 12px; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mt-40 { margin-top: 40px; }

/* ---------- Service cards ---------- */
.service-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; background: #fff; transition: border-color .15s ease, background .15s ease; }
.service-card:hover { border-color: var(--green); background: var(--surface-green-2); }
.icon-chip { width: 40px; height: 40px; border-radius: 12px; background: var(--surface-green); border: 1px solid var(--line-2); }
.icon-chip.blue { background: var(--surface-blue); }
.service-card h3 { font-size: 21px; font-weight: 600; margin-top: 18px; }
.service-card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-top: 10px; }
.service-price { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--green); }

/* ---------- Steps ---------- */
.step-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-md); padding: 26px; }
.step-num { font-family: var(--font-mono); font-size: 13px; color: var(--blue); }
.step-card h3 { font-size: 19px; font-weight: 600; margin-top: 12px; }
.step-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 8px; }

/* ---------- Why / feature list ---------- */
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; padding: 84px 0; }
.why-media { height: 420px; border-radius: 22px; border: 1px solid var(--line-2); overflow: hidden; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-item { display: flex; gap: 14px; }
.feature-icon { color: var(--green); font-size: 18px; }
.feature-title { font-weight: 600; font-size: 17px; }
.feature-item p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 4px; }

/* ---------- Testimonials (dark) ---------- */
.dark-section { background: var(--dark-bg); color: var(--dark-text-1); }
.dark-section h2 { font-size: 38px; font-weight: 600; letter-spacing: -.02em; color: #fff; }
.testimonial-card { background: rgba(255,255,255,.06); border-radius: var(--radius-md); padding: 28px; }
.stars { color: var(--dark-star); font-size: 14px; }
.testimonial-card p { font-size: 16px; line-height: 1.65; margin-top: 14px; color: var(--dark-text-2); }
.testimonial-author { margin-top: 16px; font-size: 14px; color: var(--dark-text-4); }

/* ---------- Article / tip cards ---------- */
.article-card { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0; overflow: hidden; display: block; width: 100%; }
.article-card:hover { border-color: var(--green); }
.article-thumb { height: 170px; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 22px; }
.article-tag { font-family: var(--font-mono); font-size: 11px; color: var(--blue); }
.article-card h3 { font-size: 19px; font-weight: 600; margin-top: 10px; }
.article-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 8px; }

/* ---------- Shop teaser ---------- */
.shop-teaser { background: var(--surface-blue); border-top: 1px solid var(--line); }
.shop-teaser-row { padding: 70px 0; display: flex; gap: 40px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.shop-teaser h2 { font-size: 34px; font-weight: 600; letter-spacing: -.02em; }
.shop-teaser p { font-size: 17px; line-height: 1.6; color: var(--muted); margin-top: 12px; max-width: 620px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding-top: 64px; padding-bottom: 64px; }
.page-hero h1 { font-size: 46px; font-weight: 600; letter-spacing: -.03em; margin-top: 12px; }
.page-hero p { font-size: 17px; line-height: 1.65; color: var(--muted); margin-top: 16px; max-width: 720px; }
.page-hero.tight .wrap { padding-top: 70px; padding-bottom: 70px; }
.page-hero.tight h1 { font-size: 48px; }
.page-hero.tight p { font-size: 18px; max-width: 700px; }

/* ---------- Service detail blocks (usluge.html) ---------- */
.service-detail-list { display: grid; gap: 48px; }
.service-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: start; }
.service-detail-media { height: 220px; border-radius: var(--radius-md); border: 1px solid var(--line-2); overflow: hidden; }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail h2 { font-size: 30px; font-weight: 600; }
.service-detail > div p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-top: 12px; }
.service-detail ul { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 14px 0 0; padding-left: 20px; }
.service-detail-price { margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; margin-top: 28px; }
.faq-item { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 22px 24px; }
.faq-q { font-size: 17px; font-weight: 600; }
.faq-item p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-top: 8px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; background: #fff; }
.price-card.featured { border: 2px solid var(--green); background: var(--surface-green-2); position: relative; }
.price-badge {
  position: absolute; top: -12px; left: 32px; background: var(--green); color: #fff;
  font-size: 11px; font-family: var(--font-mono); letter-spacing: .08em; padding: 5px 12px; border-radius: var(--radius-pill);
}
.price-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); }
.price-card h3 { font-size: 26px; font-weight: 600; margin-top: 10px; }
.price-amount { font-family: var(--font-heading); font-size: 42px; font-weight: 600; margin-top: 12px; }
.price-meta { font-size: 14px; color: var(--muted); }
.price-card ul { font-size: 15px; line-height: 1.9; color: var(--muted); margin: 20px 0 0; padding-left: 20px; }

.addon-table { margin-top: 20px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.addon-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 16px 22px; border-top: 1px solid var(--line); font-size: 15px; }
.addon-row.head { padding: 14px 22px; background: var(--surface-green); font-size: 13px; font-family: var(--font-mono); letter-spacing: .06em; color: var(--muted); border-top: none; }
.addon-row span:nth-child(2) { color: var(--muted); }
.addon-row span:nth-child(3) { font-weight: 600; }
.addon-note { font-size: 14px; line-height: 1.7; color: var(--muted); margin-top: 18px; }

/* ---------- Shop ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--green); }
.product-media { height: 190px; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-tag { font-family: var(--font-mono); font-size: 11px; color: var(--blue); }
.product-body h3 { font-size: 19px; font-weight: 600; margin-top: 8px; }
.product-body p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 8px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 12px; }
.product-price { font-family: var(--font-heading); font-size: 24px; font-weight: 600; }

.shipping-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.shipping-card { border-radius: 16px; padding: 24px; }
.shipping-card.a { background: var(--surface-blue); }
.shipping-card.b { background: var(--surface-green); }
.shipping-card h4 { font-weight: 600; font-size: 17px; }
.shipping-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 6px; }

/* ---------- Savjeti / guide box ---------- */
.guide-box { margin-top: 56px; background: var(--surface-green); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 36px; }
.guide-box h2 { font-size: 28px; font-weight: 600; }
.guide-box > p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-top: 10px; max-width: 760px; }
.guide-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.guide-col { background: #fff; border-radius: var(--radius-sm); padding: 22px; }
.guide-col .tag { font-family: var(--font-mono); font-size: 11px; color: var(--green); }
.guide-col ul { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 10px 0 0; padding-left: 18px; }

/* ---------- Article page ---------- */
.article-page { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.back-link { background: none; border: none; padding: 0; font-size: 14px; color: var(--green); }
.article-meta { font-family: var(--font-mono); font-size: 11px; color: var(--blue); margin-top: 24px; }
.article-page h1 { font-size: 42px; font-weight: 600; letter-spacing: -.03em; margin-top: 12px; }
.article-hero { height: 300px; border-radius: var(--radius-md); margin-top: 28px; border: 1px solid var(--line-2); overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 17px; line-height: 1.8; color: var(--muted-2); display: grid; gap: 18px; margin-top: 30px; }
.article-body h2 { font-size: 26px; font-weight: 600; margin-top: 14px; }
.callout { background: var(--surface-green); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; padding: 22px 24px; }
.callout-plain { background: var(--surface-blue); border-radius: var(--radius-sm); padding: 22px 24px; }
.callout .callout-title, .callout-plain .callout-title { font-weight: 600; font-size: 17px; }
.callout p, .callout-plain p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-top: 6px; }
.article-cta {
  margin-top: 40px; background: var(--surface-blue); border-radius: var(--radius-md); padding: 30px;
  display: flex; gap: 22px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.article-cta-title { font-size: 20px; font-weight: 600; }
.article-cta p { font-size: 15px; color: var(--muted); margin-top: 6px; }

/* ---------- O nama ---------- */
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-stat { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; }
.about-stat .num { font-family: var(--font-heading); font-size: 34px; font-weight: 600; }
.about-stat .label { font-size: 15px; color: var(--muted); margin-top: 4px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; align-items: center; }
.about-media { height: 380px; border-radius: var(--radius-lg); border: 1px solid var(--line-2); overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.value-item + .value-item { margin-top: 16px; }
.value-title { font-weight: 600; font-size: 17px; }
.value-item p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-top: 4px; }
.company-info { margin-top: 56px; background: var(--surface-green); border-radius: var(--radius-lg); padding: 34px; }
.company-info h2 { font-size: 26px; font-weight: 600; }
.company-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px; margin-top: 18px; font-size: 15px; color: var(--muted); }
.company-info-grid strong { color: var(--ink); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; padding: 60px 0; }
.contact-form-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.success-box { background: var(--surface-green); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 28px; text-align: center; }
.success-box .title { font-size: 22px; font-weight: 600; }
.success-box p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-top: 8px; }
.form-grid { display: grid; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-2); border-radius: var(--radius-xs); padding: 13px 14px;
  font-size: 15px; font-family: var(--font-body); font-weight: 400; background: #fff; color: var(--ink); width: 100%;
}
.field select { appearance: auto; }
.field textarea { resize: vertical; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.55; color: var(--muted); }
.consent-row input { margin-top: 3px; }
.consent-row a, .consent-row button { background: none; border: none; padding: 0; color: var(--green); font-size: 13px; text-decoration: underline; cursor: pointer; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-info-card { background: var(--surface-green); border-radius: var(--radius-md); padding: 26px; }
.contact-info-card.alt { background: var(--surface-blue); }
.contact-info-card .kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--green); }
.contact-info-card.alt .kicker { color: var(--blue); }
.contact-info-card .body { font-size: 16px; line-height: 1.9; color: var(--muted-2); margin-top: 12px; }
.contact-info-stack { display: grid; gap: 18px; }
.map-card { height: 200px; border-radius: var(--radius-md); border: 1px solid var(--line-2); overflow: hidden; position: relative; }
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.map-card .cap {
  position: absolute; left: 14px; bottom: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 4px 8px;
}

/* ---------- Legal pages ---------- */
.legal-page { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.legal-page h1 { font-size: 40px; font-weight: 600; letter-spacing: -.03em; }
.legal-date { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-top: 10px; }
.legal-body { font-size: 16px; line-height: 1.8; color: var(--muted-2); display: grid; gap: 16px; margin-top: 28px; }
.legal-body h2 { font-size: 24px; font-weight: 600; margin-top: 12px; }
.legal-table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.legal-row { display: grid; grid-template-columns: 1fr 2fr 1fr; padding: 14px 18px; border-top: 1px solid var(--line); font-size: 14px; }
.legal-row.head { padding: 12px 18px; background: var(--surface-green); font-size: 12px; font-family: var(--font-mono); letter-spacing: .05em; color: var(--muted); border-top: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-bg); color: var(--dark-text-3); margin-top: auto; }
.footer-grid { padding: 60px 0 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-dot { width: 26px; height: 26px; }
.footer-brand-text { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-contact { font-size: 14px; line-height: 1.8; margin-top: 16px; color: var(--dark-text-2); }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-heading { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--dark-text-6); }
.footer-link { background: none; border: none; padding: 0; text-align: left; font-size: 14px; color: var(--dark-text-3); }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--dark-line); }
.footer-bottom .wrap { padding: 20px 24px; display: flex; gap: 20px; flex-wrap: wrap; justify-content: space-between; font-size: 13px; color: var(--dark-text-5); }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end;
}
.cart-overlay.open { display: flex; animation: fv-fade .2s ease both; }
.cart-scrim { position: absolute; inset: 0; background: rgba(16,35,28,.4); border: none; padding: 0; }
.cart-panel {
  position: relative; width: 420px; max-width: 100%; background: #fff; height: 100%;
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(16,35,28,.18);
}
.cart-panel-head { padding: 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cart-panel-head .title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; }
.cart-close { background: none; border: none; font-size: 22px; color: var(--muted); padding: 0 4px; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; display: grid; gap: 16px; align-content: start; }
.cart-empty { text-align: center; padding: 40px 10px; }
.cart-empty p { font-size: 16px; color: var(--muted); }
.cart-line { display: flex; gap: 14px; align-items: center; }
.cart-line-thumb { width: 62px; height: 62px; border-radius: 12px; background: var(--surface-green); flex-shrink: 0; overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; }
.cart-line-name { font-size: 15px; font-weight: 600; }
.cart-line-price { font-size: 13px; color: var(--muted); }
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--line-2); background: #fff; border-radius: 8px; font-size: 15px; color: var(--ink); }
.qty-val { font-size: 14px; min-width: 20px; text-align: center; }
.cart-remove { margin-left: auto; background: none; border: none; font-size: 13px; color: var(--muted); text-decoration: underline; }
.cart-line-total { font-size: 15px; font-weight: 600; }
.cart-panel-foot { border-top: 1px solid var(--line); padding: 22px 24px; display: grid; gap: 12px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 20px; font-weight: 600; }
.cart-link { background: none; border: none; font-size: 13px; color: var(--muted); text-decoration: underline; text-align: center; }

/* ---------- Cookie consent ---------- */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 70; display: none; justify-content: center; }
.cookie-banner.open { display: flex; }
.cookie-inner {
  max-width: 900px; width: 100%; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(16,35,28,.14); padding: 22px 24px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text .title { font-size: 16px; font-weight: 600; }
.cookie-text p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 6px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Checkout / order pages ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; padding: 60px 0; }
.order-summary { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; background: var(--surface-green); }
.order-summary h2 { font-size: 22px; font-weight: 600; }
.order-line { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted-2); padding: 10px 0; border-top: 1px solid var(--line-2); }
.order-line:first-of-type { border-top: none; }
.order-total { display: flex; justify-content: space-between; font-size: 19px; font-weight: 600; margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--line-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding: 56px 0 60px; }
  .hero h1 { font-size: 44px; }
  .why-grid { grid-template-columns: 1fr; padding: 56px 0; }
  .why-media { height: 300px; order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .shop-grid, .shipping-grid, .about-stats, .guide-cols { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .about-media { order: -1; height: 280px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-media { height: 200px; order: -1; }
  .contact-grid, .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav { position: fixed; top: 63px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 16px; margin-left: 0;
    max-height: calc(100vh - 63px); overflow-y: auto; display: none; }
  .nav.open { display: flex; }
  .nav .btn-plain, .nav .cart-btn, .nav .btn-dark { width: 100%; text-align: left; padding: 12px 0; border-radius: 0; }
  .nav .cart-btn, .nav .btn-dark { text-align: center; border-radius: var(--radius-pill); margin-top: 10px; padding: 12px 16px; }
  .nav-toggle {
    display: block; margin-left: auto; background: none; border: 1px solid var(--line-2); border-radius: 10px;
    width: 40px; height: 40px; font-size: 18px; color: var(--ink);
  }
  .header-row { flex-wrap: wrap; }
  .hero h1 { font-size: 34px; }
  .hero-lead { font-size: 17px; }
  .section-title, .page-hero h1, .page-hero.tight h1 { font-size: 30px; }
  .dark-section h2, .shop-teaser h2 { font-size: 28px; }
  .grid-3, .grid-4, .pricing-grid, .shop-grid, .shipping-grid, .about-stats, .guide-cols, .grid-2 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .company-info-grid { grid-template-columns: 1fr; }
  .addon-row, .legal-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 13px; padding: 12px 14px; }
  .article-page h1, .legal-page h1 { font-size: 30px; }
  .cart-panel { width: 100%; }
  .section-lg { padding: 56px 0; }
  .section-md { padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr; padding: 44px 0 24px; }
}
