/* Mobitel Fix — Zadar. Design tokens 1:1 iz Claude Design projekta. */

:root {
  --bg: oklch(98% 0.004 95);
  --surface: oklch(99% 0.002 95);
  --ink: oklch(23% 0.015 260);
  --muted: oklch(48% 0.02 260);
  --border: oklch(89% 0.01 260);
  --accent: oklch(50% 0.14 235);
  --cta: oklch(50% 0.14 45);
  --cta-soft: oklch(96% 0.03 45);
  --ink-80: oklch(96% 0.01 260);
  --ink-75: oklch(75% 0.01 260);
  --ink-40: oklch(40% 0.01 260);
  --ink-35: oklch(35% 0.01 260);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; }

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

.heading-font { font-family: "Space Grotesk", Helvetica, Arial, sans-serif; }

.mono { font-family: "JetBrains Mono", "Courier New", monospace; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.wrap-doc { max-width: 760px; margin: 0 auto; padding: 0 24px; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--ink-80);
  font-size: 13px;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { color: var(--ink-80); text-decoration: underline; }

/* ---------- header / nav ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-mark span { width: 16px; height: 22px; border: 2px solid white; border-radius: 4px; display: block; }
.brand-name { font-family: "Space Grotesk", Helvetica, Arial, sans-serif; font-weight: 700; font-size: 20px; }

.main-nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: 15px; }
.main-nav a { text-decoration: none; color: var(--ink); }
.main-nav a.active { font-weight: 600; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-cart {
  position: relative; text-decoration: none; color: var(--ink); font-size: 14px;
  display: flex; gap: 6px; align-items: center; border: 1px solid var(--border);
  padding: 8px 12px; border-radius: 10px; background: var(--surface); cursor: pointer;
  font-family: inherit;
}
.btn-cart .icon-cart { width: 14px; height: 14px; border: 2px solid var(--ink); border-radius: 3px; display: block; }
.cart-badge {
  position: absolute; top: -8px; right: -8px; background: var(--cta); color: #fff;
  font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-call {
  background: var(--cta); color: #fff; text-decoration: none; padding: 10px 18px;
  border-radius: 10px; font-weight: 600; font-size: 14px;
}
.nav-toggle {
  display: none; border: 1px solid var(--border); background: var(--surface);
  border-radius: 10px; padding: 8px 10px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; padding: 14px 26px; border-radius: 12px;
  font-weight: 600; font-size: 16px; border: 1px solid transparent; cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-ghost { background: var(--surface); border: 1px solid var(--border); color: var(--ink); }
.btn-white { background: #fff; color: var(--accent); font-weight: 700; }
.btn-outline-white { border: 1px solid #fff; color: #fff; font-weight: 600; }
.btn-dark { background: var(--ink); color: #fff; }

/* ---------- eyebrow / section heading ---------- */
.eyebrow {
  color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 10px;
}
.section-title { font-size: 30px; margin: 0; }
.page-hero { text-align: center; padding: 50px 24px 30px; }
.page-hero h1 { font-size: 38px; margin: 0 0 14px; }
.page-hero p { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- hero ---------- */
.hero {
  padding: 40px 24px 60px; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--cta-soft);
  color: var(--cta); font-size: 13px; font-weight: 600; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 18px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cta); animation: pulse 2s infinite; }
.hero h1 { font-size: 48px; line-height: 1.1; margin: 0 0 20px; font-weight: 700; }
.hero-lead { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat-num { font-size: 26px; font-weight: 700; }
.stat-label { font-size: 13px; color: var(--muted); }
.hero-media, .photo-box {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 4 / 3.4; position: relative;
}
.hero-media img, .photo-box img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- trust strip ---------- */
.trust-strip {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-strip .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--muted); }

/* ---------- generic sections ---------- */
section.pad { padding: 70px 24px; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head-row { display: flex; justify-content: space-between; align-items: end; margin-bottom: 30px; flex-wrap: wrap; gap: 12px; }
.link-more { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ---------- grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

.card {
  text-decoration: none; color: var(--ink); background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px; display: block;
}
.card .card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--cta-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card h3 { font-size: 18px; margin: 0 0 8px; }
.card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- process ---------- */
.process { background: var(--ink); color: var(--ink-80); padding: 70px 24px; }
.process h2 { text-align: center; margin: 0 0 44px; }
.process-num { font-size: 32px; font-weight: 700; color: var(--cta); margin-bottom: 10px; }
.process h4 { margin: 0 0 6px; font-size: 16px; }
.process p { font-size: 14px; color: var(--ink-75); margin: 0; }

/* ---------- product tiles ---------- */
.product-tile { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.product-thumb { aspect-ratio: 1; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 13px; color: var(--muted); }
.product-name { font-weight: 600; font-size: 15px; }
.product-price { font-family: "Space Grotesk", Helvetica, Arial, sans-serif; font-weight: 700; font-size: 17px; margin-top: auto; }
.product-add {
  background: var(--ink); color: #fff; border: none; padding: 10px; border-radius: 8px;
  font-weight: 600; font-size: 13px; cursor: pointer; font-family: inherit; margin-top: 6px; width: 100%;
}

/* ---------- testimonials ---------- */
.testimonials { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 70px 24px; }
.testimonial { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.stars { color: var(--cta); margin-bottom: 10px; }
.testimonial p { font-size: 14px; margin: 0 0 14px; color: var(--ink); }
.testimonial-author { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---------- brands ---------- */
.brands { padding: 50px 24px; text-align: center; }
.brands-label { font-size: 13px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px; }
.brands-list { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; font-family: "Space Grotesk", Helvetica, Arial, sans-serif; font-weight: 700; font-size: 20px; color: var(--muted); }

/* ---------- cta banner ---------- */
.cta-banner { background: var(--accent); color: #fff; padding: 56px 24px; text-align: center; }
.cta-banner h2 { margin: 0 0 14px; }
.cta-banner p { margin: 0 0 26px; opacity: .9; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--ink-75); padding: 56px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand { font-weight: 700; font-size: 19px; color: #fff; margin-bottom: 12px; }
.footer-col-title { color: #fff; font-weight: 600; margin-bottom: 14px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: var(--ink-75); text-decoration: none; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social span {
  width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--ink-40);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid var(--ink-35);
  font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-contact { font-size: 14px; display: flex; flex-direction: column; gap: 8px; }

/* simple footer used on inner pages */
.site-footer-simple { background: var(--ink); color: var(--ink-75); padding: 32px 24px; text-align: center; font-size: 13px; }
.site-footer-simple .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.site-footer-simple .flinks { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer-simple a { color: var(--ink-75); text-decoration: none; }

/* ---------- doc pages (legal) ---------- */
.doc-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; flex-wrap: wrap; gap: 16px; }
.doc-header .brand-mark { width: 34px; height: 34px; border-radius: 9px; }
.doc-header .brand-mark span { width: 14px; height: 20px; }
.doc-header .brand-name { font-size: 18px; }
.back-link { color: var(--accent); text-decoration: none; font-size: 14px; font-weight: 600; }
.doc-body { line-height: 1.65; }
.doc-body h1 { font-size: 32px; margin: 20px 0 6px; }
.doc-updated { color: var(--muted); font-size: 14px; margin: 0 0 30px; }
.doc-body h2 { font-size: 19px; margin: 32px 0 12px; }
.doc-body p, .doc-body li { color: var(--muted); font-size: 15px; }
.doc-body ul, .doc-body ol { padding-left: 20px; }
.doc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; font-size: 15px; color: var(--muted); display: flex; flex-direction: column; gap: 8px; }
.doc-card strong { color: var(--ink); }
.doc-table-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
.doc-table-row { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.doc-table-row:last-child { border-bottom: none; }
.doc-table-row strong { font-size: 15px; }
.doc-table-row p { margin: 6px 0 0; }

/* ---------- services list ---------- */
.service-row {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 28px; align-items: center;
}
.service-row.reverse { grid-template-columns: 1.6fr 1fr; }
.service-row.reverse .service-media { order: 2; }
.service-media { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-row h2 { font-size: 22px; margin: 0 0 10px; }
.service-row p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }
.service-row ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; display: flex; flex-direction: column; gap: 6px; }

/* ---------- pricing tables ---------- */
.price-table { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
.price-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 14px 20px; border-top: 1px solid var(--border); font-size: 14px;
}
.price-row.head {
  background: var(--bg); border-top: none; font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .03em;
}
.price-row.cols-2 { grid-template-columns: 1.4fr 1fr; }
.price-row.cols-3 { grid-template-columns: 1.4fr 1fr 1fr; }
.price-note { font-size: 13px; color: var(--muted); margin-top: 24px; }

/* ---------- team ---------- */
.team-photo { aspect-ratio: 1; border-radius: 16px; overflow: hidden; margin-bottom: 12px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 600; font-size: 15px; }
.team-role { font-size: 13px; color: var(--muted); }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.value-card h4 { margin: 0 0 8px; font-size: 16px; }
.value-card p { font-size: 14px; color: var(--muted); margin: 0; }
.stat-block { text-align: center; padding: 20px; }
.stat-block .num { font-size: 30px; font-weight: 700; color: var(--accent); }
.stat-block .label { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ---------- articles (savjeti) ---------- */
.article { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.article-tag { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.article h2 { font-size: 24px; margin: 0 0 14px; }
.article p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }
.article ul { color: var(--muted); font-size: 15px; padding-left: 22px; margin: 0 0 14px; display: flex; flex-direction: column; gap: 8px; }
.article strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 15px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); font-size: 14px; margin: 12px 0 0; }

/* ---------- contact ---------- */
.contact-grid { padding: 20px 24px 70px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-col { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.info-card h3 { margin: 0 0 14px; font-size: 17px; }
.info-list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--muted); }
.info-list strong { color: var(--ink); }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; }
.hours-row + .hours-row { margin-top: 8px; }
.hours-label { color: var(--muted); }
.contact-photo { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-card h3 { margin: 0 0 6px; font-size: 19px; }
.form-card > p { font-size: 14px; color: var(--muted); margin: 0 0 20px; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-group label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; box-sizing: border-box; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); font-size: 14px; font-family: inherit; background: #fff; color: var(--ink);
}
.form-group textarea { resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--muted); }
.form-check input { margin-top: 2px; }
.form-check a { color: var(--accent); text-decoration: none; }
.form-submit {
  background: var(--cta); color: #fff; border: none; padding: 14px 26px; border-radius: 10px;
  font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit;
}
.form-note { font-size: 13px; margin-top: 12px; }
.form-note.ok { color: oklch(45% 0.13 150); }
.form-note.err { color: oklch(50% 0.18 25); }
.form-note.hidden { display: none; }

/* ---------- cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: oklch(20% 0 0 / 0.4); z-index: 40; display: none; }
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 92vw; background: var(--bg);
  z-index: 41; box-shadow: -10px 0 30px oklch(0% 0 0 / 0.15); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { padding: 20px 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-head h3 { font-family: "Space Grotesk", Helvetica, Arial, sans-serif; margin: 0; font-size: 18px; }
.cart-close { border: none; background: none; font-size: 20px; cursor: pointer; color: var(--muted); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { color: var(--muted); font-size: 14px; text-align: center; margin-top: 40px; }
.cart-row { display: flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.cart-row-thumb { width: 52px; height: 52px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--border); }
.cart-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-info { flex: 1; }
.cart-row-name { font-size: 14px; font-weight: 600; }
.cart-row-price { font-size: 13px; color: var(--muted); }
.cart-row-qty { display: flex; align-items: center; gap: 8px; }
.cart-row-qty button { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 14px; }
.cart-row-qty span { font-size: 13px; width: 16px; text-align: center; }
.cart-footer { padding: 20px 22px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.cart-checkout {
  width: 100%; background: var(--cta); color: #fff; border: none; padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit;
}
.cart-footnote { font-size: 12px; color: var(--muted); margin: 10px 0 0; text-align: center; }
.order-modal {
  position: fixed; inset: 0; background: oklch(20% 0 0 / 0.5); z-index: 50; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.order-modal.open { display: flex; }
.order-modal-box { background: #fff; border-radius: 16px; padding: 36px; max-width: 380px; text-align: center; }
.order-check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--cta-soft); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--cta); font-size: 26px;
}
.order-modal-box h3 { margin: 0 0 10px; }
.order-modal-box p { font-size: 14px; color: var(--muted); margin: 0 0 20px; }
.order-close { background: var(--ink); color: #fff; border: none; padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer; font-family: inherit; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 640px; margin: 0 auto;
  background: var(--ink); color: var(--ink-80); border-radius: 16px; padding: 20px 22px;
  display: none; gap: 14px; align-items: center; flex-wrap: wrap; z-index: 60; box-shadow: 0 10px 30px oklch(0% 0 0 / .2);
}
.cookie-banner.open { display: flex; }
.cookie-banner p { margin: 0; font-size: 13px; flex: 1 1 260px; }
.cookie-banner a { color: var(--ink-80); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; border: 1px solid transparent;
}
.cookie-accept { background: var(--cta); color: #fff; }
.cookie-decline { background: transparent; border: 1px solid var(--ink-40); color: var(--ink-80); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-media { order: 0; }
  .price-row, .price-row.head { grid-template-columns: 1.2fr 1fr 1fr; font-size: 13px; }
}

@media (max-width: 640px) {
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border: 1px solid var(--border);
    border-radius: 12px; flex-direction: column; padding: 16px; display: none; margin: 8px 24px 0; z-index: 30; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions .btn-cart span.cart-label { display: none; }
  .hero h1 { font-size: 34px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-row, .price-row.head { grid-template-columns: 1.4fr 1fr; }
  .price-row span:nth-child(3), .price-row.head span:nth-child(3) { display: none; }
}
