:root {
  --bg: #f2f6f7;
  --fg: #0f2a33;
  --muted: #5e7580;
  --orange: #f5941f;        /* amber (toplota) — glavni akcenat/CTA */
  --orange-hover: #e8871a;
  --amber-2: #ffb44d;
  --dark: #0a2a38;          /* duboki tirkiz-navy (voda) — header */
  --deep: #06212c;
  --nav: #0d3242;           /* nav / footer traka */
  --teal: #12808f;
  --teal-soft: #1aa0b0;
  --border: #e1e9eb;
  --link: #12808f;
  --link-hover: #0d5f6b;
  --ok: #177e55;
  --sale: #c0392b;          /* akcijska cena / sticker */
  --max: 1500px;
  --header-h: 112px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; min-height: 100vh; display: flex; flex-direction: column;
  background: var(--bg); color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; }
.header-main { background: var(--dark); color: #fff; }
.header-main-inner {
  display: flex; align-items: center; gap: 0.75rem;
  max-width: var(--max); margin: 0 auto; padding: 0.7rem 0.75rem;
}
.logo { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; padding-right: 0.5rem; }
.logo-b {
  font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1;
  width: 2rem; height: 2rem; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal), var(--teal-soft)); border-radius: 0.5rem;
}
.logo-text { display: none; font-size: 1.05rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.logo-text span { color: var(--orange); }
@media (min-width: 640px) { .logo-text { display: block; } }

.header-ship { display: none; max-width: 150px; flex-shrink: 0; }
.header-ship p { margin: 0; }
.header-ship .small { font-size: 0.72rem; color: #9fc0c8; }
.header-ship .bold { font-size: 0.85rem; font-weight: 700; }
@media (min-width: 1024px) { .header-ship { display: block; } }

.search-form { display: flex; flex: 1; min-width: 0; background: #fff; border-radius: 0.7rem; overflow: hidden; }
.search-form input { height: 2.6rem; flex: 1; border: 0; padding: 0 1rem; color: var(--fg); outline: none; min-width: 0; }
.search-form button { height: 2.6rem; border: 0; background: var(--orange); padding: 0 1.1rem; cursor: pointer; }
.search-form button:hover { background: var(--orange-hover); }

.header-link { display: none; flex-shrink: 0; padding: 0 0.5rem; }
.header-link .small { margin: 0; font-size: 0.72rem; color: #9fc0c8; }
.header-link .bold { margin: 0; font-size: 0.85rem; font-weight: 700; }
@media (min-width: 640px) { .header-link { display: block; } }

.cart-link { position: relative; display: flex; align-items: flex-end; gap: 0.25rem; flex-shrink: 0; padding: 0 0.5rem; color: #fff; }
.cart-badge {
  position: absolute; top: -0.25rem; right: -0.25rem; min-width: 1.25rem; height: 1.25rem;
  display: none; align-items: center; justify-content: center; border-radius: 999px;
  background: var(--orange); color: var(--deep); font-size: 0.75rem; font-weight: 700;
}
.cart-badge.show { display: flex; }
.cart-label { display: none; padding-bottom: 0.15rem; font-size: 0.85rem; font-weight: 700; }
@media (min-width: 640px) { .cart-label { display: inline; } }

.header-nav { background: var(--nav); color: #fff; font-size: 0.875rem; }
.header-nav-inner { max-width: var(--max); margin: 0 auto; padding: 0.5rem 0.75rem; }
.nav-links { display: flex; gap: 0.25rem; overflow-x: auto; }
.header-nav a { white-space: nowrap; padding: 0.3rem 0.7rem; border-radius: 0.4rem; color: #d6e6ea; }
.header-nav a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-toggle { display: none; }
.nav-toggle .ic-x { display: none; }
@media (max-width: 767px) {
  .header-nav-inner { padding: 0; }
  .nav-toggle { display: flex; align-items: center; gap: 0.55rem; width: 100%; background: transparent; border: 0; color: #fff; font: inherit; font-weight: 700; padding: 0.7rem 0.9rem; cursor: pointer; }
  .nav-links { display: none; flex-direction: column; gap: 0.1rem; overflow: visible; padding: 0 0.5rem 0.6rem; }
  .header-nav.open .nav-links { display: flex; }
  .header-nav.open .nav-toggle .ic-bars { display: none; }
  .header-nav.open .nav-toggle .ic-x { display: block; }
  .header-nav a { padding: 0.65rem 0.7rem; }
  .is-home .header-nav.open { background: var(--nav); }
}

/* ---------- Buttons / cards ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: 1px solid transparent; border-radius: 0.6rem; padding: 0.6rem 1.25rem;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; text-align: center; line-height: 1.1;
}
.btn-primary { background: var(--orange); color: #241100; box-shadow: 0 8px 20px -10px rgba(245,148,31,0.5); }
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary { background: #fff; border-color: var(--border); color: var(--fg); }
.btn-secondary:hover { border-color: var(--teal); }
.btn-block { width: 100%; }

.card { background: #fff; border: 1px solid var(--border); border-radius: 0.9rem; box-shadow: 0 1px 2px rgba(10,42,56,0.05); }
.section { padding: 2rem 0; }
.section-title { margin: 0; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; }
.muted { color: var(--muted); }

/* ---------- Product grid / cards ---------- */
.product-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.product-card {
  display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 0.9rem;
  background: #fff; overflow: hidden; transition: transform 0.16s, border-color 0.16s, box-shadow 0.16s;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 18px 32px -20px rgba(10,42,56,0.4); }
.product-card .img-wrap { position: relative; aspect-ratio: 1; background: linear-gradient(180deg,#fff,#eef4f5); display: flex; align-items: center; justify-content: center; padding: 0.9rem; }
.product-card img { max-height: 100%; object-fit: contain; }
.product-card .body { display: flex; flex: 1; flex-direction: column; gap: 0.3rem; padding: 0.9rem; }
.product-card .brand { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.product-card .name { font-size: 0.9rem; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em; }
.product-card .price-row { margin-top: auto; display: flex; align-items: baseline; gap: 0.45rem; flex-wrap: wrap; }
.product-card .price { font-size: 1.15rem; font-weight: 800; }
.product-card .price-sale { color: var(--sale); }
.product-card .old-price { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; }
/* Akcijski sticker u uglu slike */
.sale-sticker { position: absolute; top: 0.55rem; left: 0.55rem; z-index: 1;
  background: var(--sale); color: #fff; font-size: 0.72rem; font-weight: 800; line-height: 1;
  padding: 0.3rem 0.48rem; border-radius: 0.4rem; letter-spacing: 0.01em;
  box-shadow: 0 3px 8px -2px rgba(192,49,43,0.5); }

/* ---------- Hero (foto pozadina iza header-a; slika iz CMS-a inline) ---------- */
.hero { position: relative; overflow: hidden; color: #eaf6f8;
  background-color: #06212c; background-size: cover; background-position: center right; background-repeat: no-repeat;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(6,33,44,0.82) 0%, rgba(6,33,44,0.45) 42%, rgba(6,33,44,0.10) 100%); }
/* header providan preko hero slike (samo naslovna), taman kad se skroluje */
.is-home .header-main, .is-home .header-nav { background: transparent; transition: background 0.25s ease; }
.is-home .site-header.scrolled .header-main { background: var(--dark); }
.is-home .site-header.scrolled .header-nav { background: var(--nav); }
.hero-copy h1 { text-shadow: 0 2px 22px rgba(0,0,0,0.35); }
.hero-water { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: 0.95; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; padding: 3.5rem 1rem; }
@media (min-width: 640px) { .hero-inner { padding: 3.8rem 1.5rem; } }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } .hero-visual { display: none; } }
.hero-eyebrow { margin: 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-soft); }
.hero-copy h1 { margin: 0.8rem 0 0; font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; color: #fff; letter-spacing: -0.01em; max-width: 20ch; line-height: 1.12; }
.hero-lead { margin: 1rem 0 1.5rem; font-size: 1.1rem; color: #c4dce1; max-width: 34rem; }
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-ghost-light { background: transparent; color: #eaf6f8; border-color: rgba(255,255,255,0.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.5); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.7rem; }
.hero-badges span { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); padding: 0.4rem 0.7rem; border-radius: 999px; font-size: 0.82rem; color: #dbeef1; }
.hero-badges svg { color: var(--amber-2); flex: none; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 400px; padding: 1.2rem; }
/* narandžasta + boja vode iza (probijaju oko bele slike) */
.hero-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-glow::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; top: 5%; right: 7%; background: radial-gradient(circle, rgba(245,148,31,0.62), transparent 68%); filter: blur(26px); }
.hero-glow::after { content: ""; position: absolute; width: 290px; height: 290px; border-radius: 50%; bottom: 3%; left: 1%; background: radial-gradient(circle, rgba(26,160,176,0.62), transparent 66%); filter: blur(28px); }
/* meki beli "spotlight" — bela pozadina slike se u njega stapa (bez tvrde ivice) */
.hero-card { position: relative; z-index: 2; background: #fff; border-radius: 1.4rem; padding: 1.6rem 2rem; box-shadow: 0 36px 72px -22px rgba(0,0,0,0.62); width: min(360px, 82%); display: grid; place-items: center; }
.hero-card img { max-height: 320px; width: auto; object-fit: contain; }
.hero-chip { position: absolute; z-index: 3; background: #fff; color: var(--fg); border-radius: 0.7rem; padding: 0.5rem 0.8rem; box-shadow: 0 16px 34px -14px rgba(0,0,0,0.45); font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.hero-chip-stock { top: 7%; left: 3%; }
.hero-chip-stock .dot { color: var(--ok); }
.hero-chip-price { bottom: 7%; right: 3%; }
.hero-chip-price strong { color: var(--teal); margin-left: 0.15rem; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; padding: 1.3rem 0; }
@media (min-width: 860px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; gap: 0.75rem; align-items: center; }
.trust-item .t-ic { flex: none; width: 42px; height: 42px; border-radius: 0.7rem; background: #eaf4f5; color: var(--teal); display: grid; place-items: center; }
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item span { color: var(--muted); font-size: 0.82rem; }

/* ---------- Home intro ---------- */
.home-intro { text-align: center; max-width: 46rem; margin: 0 auto; padding: 0.5rem 0; }
.home-intro h1 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.01em; }
.home-intro p { margin: 0.6rem 0 1.2rem; color: var(--muted); font-size: 1.05rem; }
.home-intro-cta { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Categories (with image) ---------- */
.category-grid { display: grid; gap: 0.9rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
.category-card { display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border); border-radius: 0.9rem; background: #fff; padding: 1.1rem; transition: transform 0.16s, border-color 0.16s, box-shadow 0.16s; }
.category-card:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 16px 30px -20px rgba(10,42,56,0.35); }
.category-card .cat-art { flex: none; width: 64px; height: 74px; border-radius: 0.7rem; background: linear-gradient(180deg,#fff,#eef4f5); border: 1px solid var(--border); display: grid; place-items: center; overflow: hidden; }
.category-card .cat-art img { max-width: 90%; max-height: 90%; object-fit: contain; }
.category-card .cat-info { min-width: 0; }
.category-card h3 { margin: 0; font-size: 1.05rem; font-weight: 750; }
.category-card .cat-go { margin-left: auto; color: var(--teal); font-weight: 800; font-size: 1.3rem; }

/* ---------- Brand strip ---------- */
.brand-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.2rem; padding: 1.5rem 1rem; }
.brand-label { color: var(--muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.brand-item { font-weight: 800; font-size: 1.1rem; color: #274956; opacity: 0.8; letter-spacing: -0.01em; }

/* ---------- Litraža guide panel ---------- */
.guide-panel { display: grid; grid-template-columns: 1fr; gap: 0; border-radius: 1.1rem; overflow: hidden; background: linear-gradient(160deg,#0c3242,#06212c); color: #eaf6f8; }
@media (min-width: 760px) { .guide-panel { grid-template-columns: 1fr 1fr; } }
.guide-panel-l { padding: 2.2rem; }
.guide-panel-l h2 { margin: 0 0 0.6rem; font-size: 1.6rem; font-weight: 800; color: #fff; }
.guide-panel-l p { margin: 0 0 1.3rem; color: #bcd7dc; max-width: 28rem; }
.guide-panel-r { padding: 1.6rem 2.2rem; display: grid; gap: 0.7rem; align-content: center; }
.lit-row { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.8rem; padding: 0.85rem 1.1rem; }
.lit-row .lit-who { font-weight: 700; }
.lit-row .lit-val { margin-left: auto; font-weight: 800; color: var(--amber-2); font-size: 1.05rem; }

/* ---------- Catalog ---------- */
.catalog-layout { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .catalog-layout { grid-template-columns: 250px 1fr; } }
.filters { background: #fff; border: 1px solid var(--border); border-radius: 0.9rem; padding: 1.1rem; align-self: start; }
.filters h3 { margin: 0 0 0.75rem; font-size: 1rem; }
.filters label { display: block; font-size: 0.8rem; font-weight: 600; margin: 0.75rem 0 0.25rem; }
.filters select, .filters input[type="search"], .filters input[type="number"] { width: 100%; border: 1px solid var(--border); border-radius: 0.5rem; padding: 0.5rem 0.6rem; }
.filters .check { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-size: 0.875rem; font-weight: 500; }

/* ---------- Product page ---------- */
.product-page { display: grid; gap: 2rem; }
@media (min-width: 900px) { .product-page { grid-template-columns: 1fr 1fr; } }
.gallery-main { border: 1px solid var(--border); border-radius: 0.9rem; background: #fff; padding: 1rem; min-height: 280px; display: flex; align-items: center; justify-content: center; }
.gallery-main img { max-height: 420px; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.gallery-thumbs button { border: 1px solid var(--border); background: #fff; border-radius: 0.5rem; padding: 0.25rem; width: 72px; height: 72px; cursor: pointer; }
.gallery-thumbs button.active { border-color: var(--teal); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.desc-block h3 { display: flex; align-items: center; gap: 0.4rem; margin: 1.25rem 0 0.5rem; font-size: 1.05rem; color: var(--dark); }
.desc-block ul { margin: 0.25rem 0 0.75rem; padding-left: 1.2rem; }
.specs-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 0.9rem; overflow: hidden; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table th, .specs-table td { padding: 0.65rem 0.85rem; text-align: left; font-size: 0.9rem; vertical-align: top; }
.specs-table th { width: 40%; background: #f2f8f9; font-weight: 600; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 900px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--border); border-radius: 0.5rem; padding: 0.6rem 0.85rem; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(18,128,143,0.12); }
.alert { border-radius: 0.6rem; padding: 0.75rem 1rem; font-size: 0.9rem; }
.alert-error { border: 1px solid #fecaca; background: #fef2f2; color: #b91c1c; }
.alert-ok { border: 1px solid #bbf7d0; background: #f0fdf4; color: #166534; }
.alert-warn { border: 1px solid #fde68a; background: #fffbeb; color: #92400e; }

/* ---------- Cart ---------- */
.cart-row { display: grid; gap: 0.75rem; grid-template-columns: 72px 1fr auto; align-items: center; border-bottom: 1px solid var(--border); padding: 0.85rem 0; }
.cart-row img { width: 72px; height: 72px; object-fit: contain; background: #fff; border: 1px solid var(--border); border-radius: 0.5rem; }
.cart-sum { margin-top: 1rem; }
.cart-sum-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--border); }
.cart-sum-row:last-child { border-bottom: 0; }
.cart-sum-row .amount { font-weight: 700; white-space: nowrap; }
.cart-sum-opt { display: flex; align-items: flex-start; gap: 0.5rem; cursor: pointer; }
.cart-sum-opt input { margin-top: 0.2rem; width: 1.05rem; height: 1.05rem; accent-color: var(--orange); cursor: pointer; }
.cart-sum-note { display: block; margin-top: 0.2rem; font-size: 0.8rem; color: var(--muted); max-width: 34rem; }
.cart-sum-row.is-off .amount { color: var(--muted); font-weight: 500; }
.qty-control { display: inline-flex; align-items: center; gap: 0.35rem; }
.qty-control button { width: 1.85rem; height: 1.85rem; border: 1px solid var(--border); background: #fff; border-radius: 0.4rem; cursor: pointer; }

/* ---------- Footer ---------- */
.site-footer { margin-top: auto; background: var(--nav); color: #cfe0e4; }
.footer-top { background: #0e3a4c; padding: 1rem; text-align: center; }
.footer-grid { display: grid; gap: 2rem; max-width: var(--max); margin: 0 auto; padding: 2.5rem 1rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid h3, .footer-grid h4 { margin: 0 0 0.75rem; color: #fff; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: 0.4rem 0; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom { background: var(--deep); padding: 1.25rem; text-align: center; font-size: 0.75rem; color: #8aa8b0; }

/* ---------- Misc ---------- */
.breadcrumb { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--link-hover); text-decoration: underline; }
.stock-ok { color: var(--ok); font-weight: 600; font-size: 0.9rem; }
.stock-warn { color: #d97706; font-weight: 600; font-size: 0.9rem; }
.price-lg { font-size: 1.9rem; font-weight: 800; }
.price-lg.price-sale { color: var(--sale); }
.price-box-head { display: flex; align-items: center; gap: 0.6rem; margin: 0 0 0.15rem; }
.old-price-lg { font-size: 1.05rem; color: var(--muted); text-decoration: line-through; }
.sticker-lg { position: static; font-size: 0.82rem; padding: 0.32rem 0.55rem; box-shadow: none; }
.save-note { margin-top: 0.35rem; display: inline-block; font-size: 0.85rem; font-weight: 700; color: var(--sale); background: rgba(192,57,43,0.09); padding: 0.22rem 0.6rem; border-radius: 0.4rem; }
.hidden { display: none !important; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.flex-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.text-center { text-align: center; }
.p-6 { padding: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.gap-3 { gap: 0.75rem; }
.flex-wrap { display: flex; flex-wrap: wrap; }
.link { color: var(--link); }
.link:hover { color: var(--link-hover); text-decoration: underline; }

/* ---------- Guide + FAQ pages ---------- */
.guide-hero { background: linear-gradient(160deg,#0c3242,#06212c); color: #eaf6f8; padding: 2.6rem 0; }
.guide-hero h1 { margin: 0.4rem 0 0; font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.guide-hero p { margin: 0.7rem 0 0; color: #bcd7dc; max-width: 42rem; }
.guide-eyebrow { margin: 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-2); }
.guide-body { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; box-shadow: 0 1px 2px rgba(10,42,56,0.05); }
.guide-section { padding: 1.3rem 0; border-bottom: 1px solid var(--border); }
.guide-section:first-child { padding-top: 0; }
.guide-section:last-of-type { border-bottom: 0; }
.guide-section h2 { margin: 0 0 0.5rem; font-size: 1.2rem; font-weight: 750; color: var(--dark); }
.guide-section p { margin: 0; color: #33505a; }
.guide-list { margin: 0.3rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; }
.guide-list li { position: relative; padding-left: 1.5rem; color: #33505a; }
.guide-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.5rem; height: 0.5rem; border-radius: 2px; background: var(--teal); }
.guide-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

.faq-list { display: grid; gap: 0.7rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 0.8rem; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1rem 1.2rem; font-weight: 700; font-size: 1rem; color: var(--dark); display: flex; align-items: center; gap: 0.6rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+"; color: var(--teal); font-weight: 800; font-size: 1.2rem; flex: none; width: 1.1rem; text-align: center; }
.faq-item[open] summary::before { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-a { padding: 0.9rem 1.2rem 1.1rem 2.9rem; color: #33505a; }

/* keep old trust-bar styled (fallback) */
.trust-bar { display: grid; gap: 1rem; border-radius: 0.9rem; background: var(--nav); color: #fff; padding: 1.5rem; }
@media (min-width: 768px) { .trust-bar { grid-template-columns: repeat(3, 1fr); } }
.trust-bar h3 { margin: 0; color: var(--orange); font-size: 1rem; }
.trust-bar p { margin: 0.35rem 0 0; font-size: 0.875rem; color: #ccc; }

/* ---------- Plutajuće dugme za poziv (diskretno, širi se na hover) ---------- */
.call-fab { position: fixed; right: 18px; bottom: 18px; z-index: 45;
  display: inline-flex; align-items: center; height: 52px; max-width: 52px;
  background: var(--teal); color: #fff; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 22px rgba(6, 33, 44, 0.28); overflow: hidden;
  transition: max-width 0.34s ease, box-shadow 0.2s ease, background 0.2s ease; }
.call-fab::before { content: ""; position: absolute; inset: 0; border-radius: 999px; pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(245, 148, 31, 0); transition: box-shadow 0.2s ease; }
.call-fab svg { flex: 0 0 52px; width: 52px; height: 52px; padding: 15px; box-sizing: border-box; }
.call-fab-txt { white-space: nowrap; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding-right: 20px; opacity: 0; transition: opacity 0.25s ease 0.05s; }
.call-fab:hover, .call-fab:focus-visible { max-width: 340px; background: var(--teal-soft);
  box-shadow: 0 10px 26px rgba(6, 33, 44, 0.34); outline: none; }
.call-fab:hover .call-fab-txt, .call-fab:focus-visible .call-fab-txt { opacity: 1; }
.call-fab:hover::before, .call-fab:focus-visible::before { box-shadow: inset 0 0 0 2px rgba(245, 148, 31, 0.9); }
@media (max-width: 640px) { .call-fab { right: 14px; bottom: 14px; height: 50px; max-width: 50px; }
  .call-fab svg { flex-basis: 50px; width: 50px; height: 50px; } }
@media (prefers-reduced-motion: reduce) { .call-fab { transition: none; } .call-fab-txt { transition: none; } }
