/* ==========================================================================
   KINDER IGRAONICE — dizajn sistem
   Boje i tipografija se menjaju ovde, u :root varijablama.
   ========================================================================== */

:root {
  /* --- Boje brenda --- */
  --c-primary: #83c2c6;        /* tirkizna — brend */
  --c-primary-soft: #e3f1f2;   /* svetla tirkizna pozadina */
  --c-primary-dark: #4f9ba0;   /* tamnija tirkizna — hover, ikonice */
  --c-secondary: #ddba73;      /* zlatna — akcenti poverenja */
  --c-secondary-soft: #f7eeda; /* svetla zlatna pozadina */
  --c-accent: #e8704f;         /* koral — ISKLJUČIVO CTA dugmad */
  --c-accent-dark: #d2593a;    /* koral hover */
  --c-dark: #1f3a3d;           /* duboka petrolej — naslovi, footer */
  --c-ink: #3c5457;            /* tekst */
  --c-muted: #6d8285;          /* sekundarni tekst */
  --c-light: #f7f5f0;          /* topla bela pozadina */
  --c-white: #ffffff;
  --c-line: #e5e9e6;           /* ivice, separatori */

  /* --- Tipografija --- */
  --f-head: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --f-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* --- Layout --- */
  --container: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(31, 58, 61, 0.07);
  --shadow-md: 0 10px 30px rgba(31, 58, 61, 0.12);
  --header-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-primary-dark); text-decoration: none; }
a:hover { color: var(--c-dark); }
ul[class], ol[class], .footer ul, .breadcrumbs ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--c-primary-dark); outline-offset: 2px; }

/* --- Tipografija --- */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--c-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--c-muted); }
.kicker {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary-dark);
  margin-bottom: 0.75rem;
}

/* --- Layout pomoćnici --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--alt { background: var(--c-light); }
.section--dark { background: var(--c-dark); }
.section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--dark p { color: rgba(255, 255, 255, 0.82); }
.section-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* --- Dugmad --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 6px 18px rgba(232, 112, 79, 0.35);
}
.btn--primary:hover { background: var(--c-accent-dark); color: var(--c-white); }
.btn--ghost {
  background: transparent;
  color: var(--c-dark);
  border: 2px solid var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-primary); color: var(--c-primary-dark); }
.btn--light {
  background: var(--c-white);
  color: var(--c-dark);
}
.btn--light:hover { background: var(--c-light); color: var(--c-dark); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn svg { flex-shrink: 0; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header.is-scrolled { border-color: var(--c-line); box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--c-dark);
  line-height: 1.1;
}
.logo:hover { color: var(--c-dark); }
.logo__mark { flex-shrink: 0; }
.logo__img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 480px) { .logo__img { height: 44px; } }
/* Logo je providan — stoji direktno na tamnom footeru */
.footer__brand .logo { display: inline-flex; margin-bottom: 16px; }
.footer__brand .logo__img { height: 50px; }
.logo small {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 500;
  color: var(--c-ink);
  padding: 8px 14px;
  border-radius: 8px;
}
.nav a:hover { color: var(--c-dark); background: var(--c-primary-soft); }
.nav a[aria-current="page"] { color: var(--c-primary-dark); font-weight: 600; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.header__cta { padding: 11px 22px; font-size: 0.92rem; }
.header__call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary-dark);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--c-white);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.28s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 13px 14px; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .header__call { display: inline-flex; }
  .header__cta { display: none; }
}

/* --- Hero --- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--c-primary-soft) 0%, var(--c-white) 55%, var(--c-secondary-soft) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 20px;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--c-primary-dark); }
.hero .lead { margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { font-size: 0.88rem; color: var(--c-muted); margin-top: 1rem; }
.hero__media { position: relative; }
.hero__media img, .hero__media svg {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (max-width: 860px) { .hero__media img { aspect-ratio: 3 / 2; } }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
}

/* --- Traka poverenja --- */
.trust {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 28px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust__num {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--c-secondary);
  line-height: 1.1;
}
.trust__label { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); margin-top: 4px; }
@media (max-width: 700px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Kartice --- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--c-primary-soft);
  color: var(--c-primary-dark);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--c-muted); font-size: 0.95rem; }
.card--step { position: relative; }
.card__step-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--f-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-primary-soft);
  line-height: 1;
}

/* --- Oprema / proizvodi grid --- */
.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__media { aspect-ratio: 4 / 3; background: var(--c-primary-soft); }
.product-card__media img, .product-card__media svg { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 20px 22px 24px; }
.product-card__body h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.product-card__body p { font-size: 0.9rem; color: var(--c-muted); }

/* --- Recenzije --- */
.review {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review__stars { color: var(--c-secondary); display: flex; gap: 3px; }
.review__text { font-size: 0.98rem; flex-grow: 1; }
.review__author { display: flex; flex-direction: column; }
.review__author strong { font-family: var(--f-head); font-size: 0.95rem; color: var(--c-dark); }
.review__author span { font-size: 0.85rem; color: var(--c-muted); }

/* --- CTA blok --- */
.cta-block {
  background: linear-gradient(135deg, var(--c-dark) 0%, #2c5257 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: var(--c-white);
}
.cta-block h2 { color: var(--c-white); margin-bottom: 0.8rem; }
.cta-block p { color: rgba(255, 255, 255, 0.82); max-width: 560px; margin: 0 auto 1.8rem; }
.cta-block .btn--primary { box-shadow: 0 8px 24px rgba(232, 112, 79, 0.45); }

/* --- Galerija filter --- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--c-line);
  color: var(--c-ink);
  background: var(--c-white);
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--c-primary); }
.filter-btn.is-active {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-white);
}
.gallery-item { transition: opacity 0.3s ease, transform 0.3s ease; }
.gallery-item.is-hidden { display: none; }
.gallery-item figcaption { padding: 14px 4px 0; font-size: 0.9rem; color: var(--c-muted); }
.gallery-item figcaption strong { display: block; font-family: var(--f-head); color: var(--c-dark); font-size: 0.95rem; }
/* fotografije iz igraonice su uspravne (telefon) — kartice prate taj format */
.gallery-item img, .gallery-item svg { border-radius: var(--radius); width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* --- Video (uspravan snimak iz igraonice) --- */
.video-wrap { max-width: 400px; margin: 0 auto; }
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--c-dark);
}

/* --- Forma --- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label { font-weight: 600; font-size: 0.9rem; color: var(--c-dark); }
.form__group input, .form__group select, .form__group textarea {
  padding: 13px 16px;
  border: 2px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-white);
  transition: border-color 0.2s ease;
  width: 100%;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  border-color: var(--c-primary);
  outline: none;
}
.form__group .error-msg { display: none; font-size: 0.82rem; color: #c0392b; }
.form__group.has-error input, .form__group.has-error select, .form__group.has-error textarea { border-color: #c0392b; }
.form__group.has-error .error-msg { display: block; }
.form__status { font-weight: 600; display: none; padding: 14px 18px; border-radius: 10px; }
.form__status.is-success { display: block; background: var(--c-primary-soft); color: var(--c-primary-dark); }
.form__status.is-error { display: block; background: #fdecea; color: #c0392b; }
/* Honeypot — sakriveno od ljudi, vidljivo botovima */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Kontakt info --- */
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--c-primary-soft);
  color: var(--c-primary-dark);
}
.contact-item strong { display: block; font-family: var(--f-head); font-size: 0.95rem; color: var(--c-dark); }
.contact-item a, .contact-item span { font-size: 0.98rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* --- FAQ --- */
.faq-item { border: 1px solid var(--c-line); border-radius: var(--radius); margin-bottom: 12px; background: var(--c-white); }
.faq-item summary {
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--c-dark);
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--c-primary-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--c-muted); }

/* --- Checklist --- */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li svg { flex-shrink: 0; margin-top: 3px; color: var(--c-primary-dark); }

/* --- Istaknuta ponuda (popust na nameštaj) --- */
.offer-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px 28px 24px;
  margin-bottom: 16px;
}
.offer-card__badge {
  display: inline-block;
  background: var(--c-secondary);
  color: var(--c-dark);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
/* naslov mora ostati taman i unutar .section--dark sekcije */
.offer-card h3, .section--dark .offer-card h3 { color: var(--c-dark); margin-bottom: 0.6rem; }
.offer-card p, .section--dark .offer-card p { color: var(--c-ink); font-size: 0.95rem; margin-bottom: 0.7rem; }
.offer-card__note {
  font-size: 0.87rem !important;
  color: var(--c-muted) !important;
  border-top: 1px solid var(--c-line);
  padding-top: 12px;
  margin-bottom: 0 !important;
}

/* Bele kartice unutar tamne sekcije moraju zadržati taman tekst */
.section--dark .card h3 { color: var(--c-dark); }
.section--dark .card p { color: var(--c-muted); }

/* --- Stranica opreme: slika + osnovni podaci --- */
.oprema-detalj {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 820px) { .oprema-detalj { grid-template-columns: 1fr; } }
.oprema-detalj__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--c-primary-soft);
}
.oprema-detalj__body h2 { margin-bottom: 1rem; }
.oprema-detalj__body p { color: var(--c-muted); margin-bottom: 1rem; }
.oprema-detalj__body .spec { margin: 1.6rem 0; }

/* --- Katalog: kartica modela --- */
.model {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  margin-bottom: 28px;
}
@media (max-width: 780px) { .model { grid-template-columns: 1fr; } }
.model__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--c-primary-soft);
}
.model__thumbs { display: flex; gap: 8px; margin-top: 8px; }
.model__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.model__thumbs img:hover, .model__thumbs img.is-active { border-color: var(--c-primary); }
.model__body h3 { margin-bottom: 0.5rem; }
.model__body > p { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 1.1rem; }
.spec {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--c-line);
  margin-bottom: 1.2rem;
}
.spec dt {
  font-weight: 600;
  color: var(--c-dark);
  padding: 9px 12px 9px 0;
  border-bottom: 1px solid var(--c-line);
}
.spec dd {
  padding: 9px 0;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.model__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.model__cta .btn { padding: 12px 26px; font-size: 0.95rem; }
.model__note { font-size: 0.82rem; color: var(--c-muted); }

/* Pregled kategorija opreme */
.cat-card {
  display: block;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cat-card__body { padding: 18px 20px 22px; }
.cat-card__body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.cat-card__body p { font-size: 0.9rem; color: var(--c-muted); margin-bottom: 0.6rem; }
.cat-card__count {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  background: var(--c-primary-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

/* --- Footer --- */
.footer { background: var(--c-dark); color: rgba(255, 255, 255, 0.78); padding: 56px 0 0; }
.footer a { color: rgba(255, 255, 255, 0.78); }
.footer a:hover { color: var(--c-white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.2fr 1.2fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--c-white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer ul li { margin-bottom: 10px; font-size: 0.95rem; }
.footer__brand .logo { color: var(--c-white); margin-bottom: 14px; }
.footer__brand .logo small { color: rgba(255, 255, 255, 0.55); }
.footer__brand p { font-size: 0.92rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

/* --- Plutajuće dugme (Viber/WhatsApp) --- */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: #fff;
  transition: transform 0.15s ease;
}
.float-contact a:hover { transform: scale(1.08); color: #fff; }
.float-contact .float-whatsapp { background: #25d366; }
.float-contact .float-viber { background: #7360f2; }
@media (min-width: 861px) {
  .float-contact { display: none; } /* samo na mobilnom */
}

/* --- Breadcrumbs --- */
.breadcrumbs { font-size: 0.85rem; color: var(--c-muted); padding: 18px 0 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { list-style: none; }
.breadcrumbs li::marker { content: none; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: var(--c-muted); }

/* --- Page hero (podstranice) --- */
.page-hero {
  background: linear-gradient(150deg, var(--c-primary-soft), var(--c-white));
  padding: clamp(40px, 6vw, 72px) 0;
}
.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero .lead { max-width: 640px; }

/* --- Reveal animacije (IntersectionObserver) --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --- 404 / hvala --- */
.simple-page { min-height: 55vh; display: flex; align-items: center; text-align: center; }
.simple-page .container { max-width: 640px; }
.simple-page h1 { margin-bottom: 1rem; }
.simple-page .btn { margin-top: 1.5rem; }
