*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

:root {
  --white:       #ffffff;
  --bg:          #FFF5F4;
  --bg-blue:     #FFF5F4;
  --warm-white:  #FFF5F4;
  --teal:        #008080;
  --teal-dark:   #006666;
  --teal-light:  #d6f0ec;
  --gold:        #008080;
  --gold-light:  #e6f5f5;
  --text:        #2a2a2a;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #e2dede;
  --radius:      16px;
  --shadow:      0 6px 34px rgba(0,128,128,0.08);
  --shadow-lg:   0 14px 50px rgba(0,128,128,0.14);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

.wrap { max-width: 980px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

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

/* ── ANNOUNCEMENT ── */
.announce {
  background: var(--teal);
  color: rgba(255,255,255,0.95);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 100%;
}
.announce-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  gap: 0;
}
.announce-track span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0 40px;
}
.announce-track strong { color: #fff; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
  background: var(--teal);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 90;
  overflow: hidden;
  max-width: 100%;
}
.header-inner {
  display: flex; align-items: center;
  height: 60px; max-width: 980px; margin: 0 auto; padding: 0 22px;
  gap: 16px;
}
.logo {
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}
.logo .eq { color: rgba(255,255,255,0.7); }
.logo .by { color: rgba(255,255,255,0.6); font-weight: 600; }

.header-nav {
  display: flex; align-items: center; gap: 6px;
  flex: 1; justify-content: center;
}
.header-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .18s;
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,0.15); }

.header-cart {
  color: #fff; font-size: 13px; font-weight: 700;
  text-decoration: none; padding: 7px 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px; white-space: nowrap;
  transition: background .18s;
  flex-shrink: 0;
}
.header-cart:hover { background: rgba(255,255,255,0.15); }

@media (max-width: 700px) {
  .header-nav a { font-size: 12px; padding: 6px 10px; }
  .header-cart { font-size: 12px; padding: 6px 10px; }
}
@media (max-width: 480px) {
  .header-inner { height: 52px; gap: 8px; }
  .header-nav { gap: 2px; }
  .header-nav a { font-size: 11px; padding: 5px 7px; }
  .header-cart { font-size: 11px; padding: 5px 8px; }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--teal-light);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  max-width: 100%;
}
.trust-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--teal-dark);
  padding: 0 32px;
}
.trust-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FADE UP ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.hero {
  padding: 48px 0 16px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero-sky.jpg') center/cover no-repeat;
  z-index: 0;
}
/* placeholder kad nema slike */
.hero-bg-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #b8e4f9 0%, #ddf0fa 40%, #f0f8fd 70%, #FFF5F4 100%);
  z-index: 0;
}
.hero-bg-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, #FFF5F4 100%);
}
.hero .wrap { position: relative; z-index: 1; }

/* Desktop: slika levo, tekst desno */
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-areas:
    "img  text"
    "img  price";
  column-gap: 52px;
  row-gap: 22px;
  align-items: start;
}
.hero-text  { grid-area: text; }
.hero-img   { grid-area: img; align-self: center; }
.price-box  { grid-area: price; }

/* Mobilni: slika gore, pa tekst, pa cena */
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "text"
      "price";
    row-gap: 20px;
  }
  .hero-img { max-width: 340px; width: 100%; margin: 0 auto; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); color: var(--teal-dark);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(30px, 5.4vw, 46px);
  font-weight: 800; line-height: 1.12; margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 18px; color: var(--text-mid); margin-bottom: 22px; }

.hero-bullets { list-style: none; margin: 0 0 24px; }
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 10px;
}
.hero-bullets svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }

/* ── PRODUCT IMAGE SLIDER ── */
.product-slider-wrap {
  position: relative;
}
.product-slides {
  position: relative;
  aspect-ratio: 1/1;
}
.product-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s ease;
}
.product-slide.active { opacity: 1; }

.product-shot {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,128,128,0.18);
  width: 100%; height: 100%;
}
.product-shot .ph {
  text-align: center; color: var(--teal-dark); padding: 24px;
}
.product-shot .ph .bottle { font-size: 76px; opacity: 0.85; }
.product-shot .ph small {
  display: block; margin-top: 8px; font-size: 12px;
  color: var(--teal-dark); opacity: 0.7; letter-spacing: 0.04em;
}
.shot-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--teal); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0,128,128,0.35);
}

/* Slider dots */
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 14px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,128,128,0.25); cursor: pointer;
  border: none; transition: background .2s, transform .2s;
}
.slider-dot.active {
  background: var(--teal); transform: scale(1.25);
}

/* Slider arrows */
.slider-arrows {
  display: flex; justify-content: center; gap: 10px; margin-top: 10px;
}
.slider-arrow {
  background: rgba(0,128,128,0.12); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; font-size: 16px;
  color: var(--teal-dark); display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.slider-arrow:hover { background: rgba(0,128,128,0.22); }

@media (max-width: 820px) {
  .slider-arrows { display: none; }
}

/* ── PRICE BOX (in hero) ── */
.price-box {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
}
.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-now { font-size: 32px; font-weight: 800; color: var(--teal-dark); }
.price-old { font-size: 18px; color: var(--text-light); text-decoration: line-through; }
.price-off {
  background: var(--gold-light); color: var(--teal);
  font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 100px;
}
.price-note { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 800;
  padding: 17px 24px; border-radius: var(--radius);
  text-decoration: none; text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-gold { background: #008080; color: #fff; box-shadow: 0 6px 18px rgba(0,128,128,0.32); }
.btn-gold:hover { background: #006666; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,128,128,0.4); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-ghost { background: var(--warm-white); color: var(--teal-dark); border: 1.5px solid var(--teal); }
.btn-ghost:hover { background: var(--teal-light); }

.hero-microtrust {
  display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px;
  font-size: 13px; color: var(--text-mid); font-weight: 600;
}
.hero-microtrust span::before { content: '✓ '; color: var(--teal); }

/* ── SECTION FRAME ── */
section.block { padding: 48px 0; }
.section-eyebrow {
  text-align: center; font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-title {
  text-align: center; font-size: clamp(24px, 4.4vw, 34px);
  font-weight: 800; line-height: 1.2; margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--teal-dark); }
.section-lead {
  text-align: center; font-size: 17px; color: var(--text-mid);
  max-width: 600px; margin: 0 auto 30px;
}

/* ── DOSING BAND ── */
.dose-band {
  background: #FFF5F4;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dose-band .wrap { padding-top: 30px; padding-bottom: 30px; text-align: center; }
.dose-big {
  font-size: clamp(26px, 5vw, 40px); font-weight: 800; color: var(--teal-dark);
  line-height: 1.2;
}
.dose-big em { font-style: normal; color: var(--teal); }
.dose-small { font-size: 16px; color: var(--text-mid); margin-top: 8px; }

/* ── STORY (problem) — Veterinar sekcija ── */
.vet-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) {
  .vet-section {
    grid-template-columns: 1fr;
  }
  .vet-sidebar { display: flex; flex-direction: row; gap: 16px; align-items: center; }
  .vet-photo { width: 80px; height: 80px; flex-shrink: 0; }
}

.vet-tabs-nav {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.vet-tab-btn {
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  border-radius: 100px; padding: 8px 18px;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-mid); cursor: pointer; transition: all .18s;
}
.vet-tab-btn.active {
  border-color: var(--teal); background: var(--teal-light); color: var(--teal-dark);
}

.vet-sidebar {
  text-align: center;
}
.vet-photo {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--teal-light);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  border: 3px solid var(--teal);
  overflow: hidden;
  /* PLACEHOLDER: zameni sa <img src="vet-foto.jpg"> 400×400px */
}
.vet-name {
  font-size: 17px; font-weight: 800; color: var(--text);
  margin-bottom: 4px;
}
.vet-title {
  font-size: 13px; color: var(--text-mid); font-weight: 600;
  margin-bottom: 8px;
}
.vet-years {
  font-size: 12px; color: var(--teal-dark); font-weight: 700;
  background: var(--teal-light); padding: 4px 12px; border-radius: 100px;
  display: inline-block;
}

.vet-content { display: none; }
.vet-content.active { display: block; }
.vet-content p { font-size: 17px; margin-bottom: 16px; }
.vet-content strong { font-weight: 700; color: var(--text); }
.vet-content .lead-line {
  font-size: 20px; font-weight: 700; color: var(--teal-dark);
  line-height: 1.4; margin: 26px 0;
  border-left: 3px solid var(--teal); padding-left: 18px;
}

/* ── 5 SYSTEMS ── */
.systems-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
@media (max-width: 820px) { .systems-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .systems-grid { grid-template-columns: repeat(2, 1fr); } }
.system-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 12px; text-align: center;
  box-shadow: var(--shadow);
}
.system-card .ico { font-size: 30px; display: block; margin-bottom: 8px; }
.system-card .name { font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.system-card .desc { font-size: 13px; color: var(--text-mid); line-height: 1.45; }

/* ── PROTOCOL TIMELINE ── */
.protocol-section {
  position: relative;
  overflow: hidden;
}
.protocol-sky-bg {
  position: absolute; inset: 0;
  background: url('protocol-sky.jpg') center/cover no-repeat;
  z-index: 0;
  /* PLACEHOLDER: ubaci sliku plavog neba */
}
.protocol-sky-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #b8e4f9 0%, #ddf0fa 50%, #f0f8fd 100%);
  z-index: 0;
}
.protocol-sky-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.55);
}
.protocol-section .wrap { position: relative; z-index: 1; }

.protocol-box {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 30px 26px; box-shadow: var(--shadow);
}
.timeline { display: flex; gap: 6px; margin: 24px 0 18px; }
.tl-phase { flex-grow: var(--g, 1); text-align: center; }
.tl-bar {
  height: 12px; border-radius: 100px; margin-bottom: 8px;
}
.tl-bar.active { background: var(--teal); }
.tl-bar.pause { background: var(--teal-light); }
.tl-bar.last { background: var(--teal-dark); }
.tl-name { font-size: 12px; font-weight: 700; }
.tl-days { font-size: 11px; color: var(--text-light); }
@media (max-width: 600px) {
  .timeline { flex-direction: column; gap: 8px; }
  .tl-phase { display: flex; align-items: center; gap: 12px; text-align: left; }
  .tl-bar { width: 60px; height: 10px; margin: 0; flex-shrink: 0; }
}
.protocol-note {
  background: var(--gold-light); border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0; padding: 14px 18px; font-size: 15px;
  color: var(--text); margin-top: 18px;
}
.protocol-note strong { color: var(--text); }

/* ── INGREDIENTS ── */
.ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .ing-grid { grid-template-columns: 1fr; } }
.ing-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px;
}
.ing-card .ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: var(--teal-light); display: flex; align-items: center;
  justify-content: center; font-size: 22px;
}
.ing-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.ing-card p { font-size: 14px; color: var(--text-mid); }
.ing-quality {
  text-align: center; margin-top: 22px; font-size: 15px;
  font-weight: 700; color: var(--teal-dark);
}
.ing-quality span {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  padding: 5px 14px; border-radius: 100px; margin: 4px; font-size: 13px;
}

/* ── BONUS ── */
.bonus-section {
  position: relative;
  overflow: hidden;
}
.bonus-sky {
  position: absolute; inset: 0;
  background: url('bonus-sky.jpg') center/cover no-repeat;
  z-index: 0;
  /* PLACEHOLDER: ubaci sliku plavog neba */
}
.bonus-sky-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #c8eaf9 0%, #e0f3fb 50%, #f5fafd 100%);
  z-index: 0;
}
.bonus-sky-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.5);
}
.bonus-section .wrap { position: relative; z-index: 1; }

.bonus-box {
  background: rgba(255,245,244,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,128,128,0.2);
  border-radius: 20px; padding: 30px 26px;
}
.bonus-list { list-style: none; }
.bonus-list li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 13px 0; border-bottom: 1px dashed rgba(0,128,128,0.25);
  font-size: 16px; font-weight: 600;
}
.bonus-list li:last-child { border-bottom: none; }
.bonus-list .b-left { display: flex; align-items: center; gap: 10px; }
.bonus-list .b-left .gift { font-size: 20px; }
.bonus-list .b-val {
  color: var(--teal); font-weight: 800; white-space: nowrap;
}
.bonus-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 16px; border-top: 2px solid rgba(0,128,128,0.3);
  font-size: 18px; font-weight: 800; color: var(--text);
}
.bonus-total .amt { color: var(--teal); font-size: 22px; }

/* ── BUY / PACKAGE ── */
.buy-section {
  position: relative;
  overflow: hidden;
}
.buy-sky {
  position: absolute; inset: 0;
  background: url('buy-sky.jpg') center/cover no-repeat;
  z-index: 0;
  /* PLACEHOLDER: ubaci sliku plavog neba */
}
.buy-sky-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #b8d8f0 0%, #d4ecf7 40%, #e8f5fb 100%);
  z-index: 0;
}
.buy-sky-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.45);
}
.buy-section .wrap { position: relative; z-index: 1; }

.buy-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 30px 26px; box-shadow: var(--shadow-lg);
  max-width: 640px; margin: 0 auto;
}
.size-pick { margin-bottom: 22px; }
.size-pick .label { font-size: 13px; font-weight: 800; color: var(--text-mid); margin-bottom: 8px; }
.size-btns { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.size-btn {
  border: 1.5px solid var(--border); background: var(--warm-white);
  border-radius: 12px; padding: 12px 8px; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; color: var(--text-mid);
  text-align: center; transition: all .18s;
}
.size-btn small { display: block; font-size: 11px; font-weight: 600; color: var(--text-light); margin-top: 2px; }
.size-btn.active { border-color: var(--teal); background: var(--teal-light); color: var(--teal-dark); }
.size-btn.active small { color: var(--teal-dark); }

.plan-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.plan-btn {
  position: relative; border: 1.5px solid var(--border); background: var(--warm-white);
  border-radius: 14px; padding: 16px 14px; cursor: pointer; text-align: left;
  font-family: 'Nunito', sans-serif; transition: all .18s;
}
.plan-btn.active { border-color: var(--teal); background: var(--teal-light); }
.plan-btn .pt { font-size: 15px; font-weight: 800; color: var(--text); }
.plan-btn .pp { font-size: 13px; color: var(--text-mid); margin-top: 2px; }
.plan-btn .tag {
  position: absolute; top: -10px; right: 12px;
  background: var(--teal); color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 100px;
}

.buy-summary {
  background: rgba(255,245,244,0.8); border-radius: 14px; padding: 18px; margin-bottom: 18px;
}
.bs-row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 8px; color: var(--text-mid); }
.bs-row.total { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 0; padding-top: 10px; border-top: 1px solid var(--border); }
.bs-row .strike { text-decoration: line-through; color: var(--text-light); }
.bs-now { color: var(--teal-dark); }

/* ── COUPON ── */
.coupon { margin-bottom: 18px; }
.coupon .label { font-size: 13px; font-weight: 800; color: var(--text-mid); margin-bottom: 8px; }
.coupon-field { display: flex; gap: 8px; }
.coupon-field input {
  flex: 1; border: 1.5px dashed var(--teal); background: var(--teal-light);
  border-radius: 12px; padding: 12px 14px; font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 800; color: var(--teal-dark); letter-spacing: 0.08em;
  text-align: center; text-transform: uppercase;
}
.coupon-applied { font-size: 13px; font-weight: 700; color: var(--teal); margin-top: 8px; display: none; }
.coupon-applied.show { display: block; }

.buy-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  margin-top: 16px; font-size: 13px; color: var(--text-mid); font-weight: 600;
}
.buy-trust span::before { content: '✓ '; color: var(--teal); }

/* ── REVIEWS ── */
.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-sky {
  position: absolute; inset: 0;
  background: url('reviews-sky.jpg') center/cover no-repeat;
  z-index: 0;
  /* PLACEHOLDER: ubaci sliku plavog neba */
}
.reviews-sky-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #a8d8f0 0%, #c8e8f7 40%, #e0f2fb 100%);
  z-index: 0;
}
.reviews-sky-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.4);
}
.reviews-section .wrap { position: relative; z-index: 1; }

.reviews-summary {
  text-align: center; margin-bottom: 30px;
}
.reviews-big-score {
  font-size: 54px; font-weight: 800; color: var(--teal-dark); line-height: 1;
}
.reviews-stars-big {
  color: #f5a623; font-size: 24px; letter-spacing: 3px; margin: 6px 0 4px;
}
.reviews-count {
  font-size: 13px; color: var(--text-mid); font-weight: 600;
}

.review-carousel {
  max-width: 640px; margin: 0 auto;
  position: relative;
}
.review-slide {
  display: none;
  animation: fadeSlide .35s ease both;
}
.review-slide.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.review-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 26px; box-shadow: var(--shadow);
}
.review-stars { color: #f5a623; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-quote { font-size: 17px; line-height: 1.6; margin-bottom: 18px; font-style: italic; color: var(--text); }
.review-quote::before { content: '„'; }
.review-quote::after { content: '"'; }
.review-meta { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--teal-dark); font-size: 18px;
  /* PLACEHOLDER: ubaci slike pasa 200×200px */
}
.review-name { font-size: 15px; font-weight: 800; }
.review-detail { font-size: 13px; color: var(--text-light); }
.review-day {
  margin-left: auto; font-size: 11px; font-weight: 800; color: var(--teal-dark);
  background: var(--teal-light); padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}

.review-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 20px;
}
.review-nav-btn {
  background: rgba(255,255,255,0.8); border: 1.5px solid var(--border);
  border-radius: 50%; width: 40px; height: 40px; cursor: pointer;
  font-size: 18px; color: var(--teal-dark); display: flex; align-items: center;
  justify-content: center; transition: all .18s;
}
.review-nav-btn:hover { background: var(--teal-light); border-color: var(--teal); }
.review-counter {
  font-size: 13px; font-weight: 700; color: var(--text-mid);
}

/* ── TABS ── */
.tabs-section {
  background: #FFF5F4;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tabs { max-width: 720px; margin: 0 auto; }
.tab-nav { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.tab-btn {
  border: none; background: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-light);
  padding: 10px 14px; border-bottom: 2px solid transparent; transition: all .18s;
}
.tab-btn.active { color: var(--teal-dark); border-bottom-color: var(--teal); }
.tab-panel { display: none; font-size: 16px; color: var(--text-mid); }
.tab-panel.active { display: block; animation: fade .3s ease both; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.tab-panel p { margin-bottom: 12px; }
.tab-panel strong { color: var(--text); }
.dose-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 15px; }
.dose-table th, .dose-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--border); }
.dose-table th { font-weight: 800; color: var(--text); background: var(--teal-light); }

/* ── STATS + FOUNDER + GUARANTEE — zajednička pozadina neba ── */
.sky-trio {
  position: relative;
  overflow: hidden;
}
.sky-trio-bg {
  position: absolute; inset: 0;
  background: url('trio-sky.jpg') center/cover no-repeat;
  z-index: 0;
  /* PLACEHOLDER: ubaci sliku plavog neba */
}
.sky-trio-bg-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #a8d8f2 0%, #c4e8f8 30%, #ddf2fb 60%, #f0f8fd 100%);
  z-index: 0;
}
.sky-trio-bg-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.42);
}
.sky-trio .wrap { position: relative; z-index: 1; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 680px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 18px; text-align: center; box-shadow: var(--shadow);
}
.stat-num { font-size: 38px; font-weight: 800; color: var(--teal-dark); line-height: 1; }
.stat-text { font-size: 14px; color: var(--text-mid); margin-top: 8px; }
.disclaimer {
  max-width: 680px; margin: 24px auto 0; font-size: 12.5px; color: var(--text-light);
  text-align: center; font-style: italic; line-height: 1.6;
}

/* ── FOUNDER ── */
.founder {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 30px 26px; display: flex; gap: 18px; box-shadow: var(--shadow);
}
@media (max-width: 560px) { .founder { flex-direction: column; align-items: center; text-align: center; } }
.founder-avatar {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
}
.founder p { font-size: 16px; margin-bottom: 12px; }
.founder .sign { font-weight: 800; color: var(--teal-dark); }

/* ── GUARANTEE ── */
.guarantee {
  background: var(--teal-dark); color: #fff; border-radius: 20px;
  padding: 36px 28px; text-align: center;
}
.guarantee .seal { font-size: 46px; margin-bottom: 10px; }
.guarantee h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.guarantee p { font-size: 16px; color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto; }

/* ── FAQ ── */
.faq-section {
  position: relative;
  overflow: hidden;
}
.faq-sky {
  position: absolute; inset: 0;
  background: url('faq-sky.jpg') center/cover no-repeat;
  z-index: 0;
  /* PLACEHOLDER: ubaci sliku plavog neba */
}
.faq-sky-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #b0dff5 0%, #cceaf8 40%, #e4f4fb 100%);
  z-index: 0;
}
.faq-sky-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.48);
}
.faq-section .wrap { position: relative; z-index: 1; }

.faq-item {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700; color: var(--text);
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .plus { color: var(--teal); font-size: 22px; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 20px 18px; font-size: 15px; color: var(--text-mid); }
.faq-item.open .faq-a { max-height: 240px; }

/* ── FINAL CTA ── */
.final-cta-section {
  position: relative;
  overflow: hidden;
}
.final-cta-sky {
  position: absolute; inset: 0;
  background: url('finalcta-sky.jpg') center/cover no-repeat;
  z-index: 0;
  /* PLACEHOLDER: ubaci sliku plavog neba */
}
.final-cta-sky-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #9ccce8 0%, #bcdff5 35%, #d8f0fb 70%, #eef8fd 100%);
  z-index: 0;
}
.final-cta-sky-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.38);
}
.final-cta-section .wrap { position: relative; z-index: 1; }

.final-cta {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,128,128,0.2); border-radius: 22px;
  padding: 40px 30px; text-align: center;
}
.final-cta h2 { font-size: clamp(24px, 4.4vw, 34px); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.final-cta h2 em { font-style: normal; color: var(--teal-dark); }
.final-cta p { font-size: 16px; color: var(--text-mid); max-width: 520px; margin: 0 auto 24px; }
.final-cta .btn { max-width: 420px; margin: 0 auto; }

/* ── FOOTER ── */
.site-footer {
  background: var(--teal);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 34px 22px; text-align: center; margin-bottom: 78px;
}
.site-footer .logo { display: inline-block; margin-bottom: 14px; color: #fff; }
.site-footer .logo .eq { color: rgba(255,255,255,0.6); }
.site-footer .logo .by { color: rgba(255,255,255,0.55); }
.footer-disc { font-size: 12px; color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto; line-height: 1.6; }
.footer-mini { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 16px; }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: url('sticky-sky.jpg') center/cover no-repeat;
  border-top: 1px solid rgba(0,128,128,0.2);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.1);
  transform: translateY(110%); transition: transform .3s ease;
  padding: 10px 16px;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
/* placeholder za sticky sky */
.sticky-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #b8e4f9 0%, #ddf2fb 50%, #c8eaf8 100%);
  z-index: -1;
}
.sticky-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,244,0.55);
  z-index: -1;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-inner {
  max-width: 980px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 14px; position: relative; z-index: 1;
}
.sticky-price { line-height: 1.2; }
.sticky-price .label { font-size: 12px; color: var(--text-mid); font-weight: 600; }
.sticky-price .amt { font-size: 20px; font-weight: 800; color: var(--teal-dark); }
.sticky-price .amt .old { font-size: 13px; color: var(--text-light); text-decoration: line-through; font-weight: 600; margin-left: 6px; }
.sticky-bar .btn { width: auto; flex-shrink: 0; padding: 14px 22px; }
@media (max-width: 460px) {
  .sticky-price .label { display: none; }
  .sticky-bar .btn { font-size: 15px; padding: 13px 16px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  section.block { padding: 44px 0; }
  .buy-card { padding: 28px 24px; }
  .protocol-box { padding: 28px 22px; }
  .bonus-box { padding: 28px 22px; }
}

/* ── TABLET ── */
@media (max-width: 760px) {
  .vet-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vet-sidebar {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    text-align: left;
  }
  .vet-photo {
    width: 80px;
    height: 80px;
    font-size: 36px;
    flex-shrink: 0;
    margin: 0;
  }
  .vet-name, .vet-title, .vet-years { text-align: left; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  body { font-size: 15px; }
  .wrap { padding: 0 16px; }
  section.block { padding: 30px 0; }

  /* Hero */
  .hero { padding: 16px 0 6px; }
  .hero h1 { font-size: clamp(24px, 7.5vw, 34px); line-height: 1.15; margin-bottom: 12px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 14px; }
  .hero-bullets { margin-bottom: 18px; }
  .hero-bullets li { font-size: 14.5px; gap: 8px; }
  .hero-bullets svg { width: 18px; height: 18px; }
  .hero-eyebrow { font-size: 11.5px; padding: 5px 12px; margin-bottom: 12px; }

  /* Product slider */
  .hero-img { max-width: 280px; }
  .product-shot { border-radius: 16px; }
  .shot-badge { top: 10px; right: 10px; font-size: 11px; padding: 5px 10px; }

  /* Price box */
  .price-box { padding: 16px; }
  .price-now { font-size: 26px; }
  .price-old { font-size: 15px; }
  .price-off { font-size: 11px; }
  .price-note { font-size: 12px; }
  .hero-microtrust { gap: 6px 12px; font-size: 12px; }

  /* Dose band */
  .dose-band .wrap { padding-top: 20px; padding-bottom: 20px; }
  .dose-big { font-size: clamp(20px, 6vw, 28px); }
  .dose-small { font-size: 14px; }

  /* Section headings */
  .section-eyebrow { font-size: 11px; }
  .section-title { font-size: clamp(20px, 6vw, 28px); margin-bottom: 10px; }
  .section-lead { font-size: 14.5px; margin-bottom: 22px; }

  /* Vet section */
  .vet-tabs-nav { gap: 6px; }
  .vet-tab-btn { font-size: 12px; padding: 7px 14px; }
  .vet-content p { font-size: 15px; margin-bottom: 12px; }
  .vet-content .lead-line { font-size: 17px; margin: 20px 0; }

  /* Systems */
  .systems-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .system-card { padding: 14px 8px; border-radius: 12px; }
  .system-card .ico { font-size: 26px; }
  .system-card .name { font-size: 13.5px; }
  .system-card .desc { font-size: 12px; }

  /* Protocol timeline */
  .protocol-box { padding: 22px 18px; }
  .protocol-note { font-size: 14px; padding: 12px 14px; }

  /* Ingredients */
  .ing-grid { grid-template-columns: 1fr; gap: 10px; }
  .ing-card { padding: 14px; gap: 12px; border-radius: 12px; }
  .ing-card .ico { width: 40px; height: 40px; font-size: 20px; border-radius: 10px; }
  .ing-card h4 { font-size: 15px; }
  .ing-card p { font-size: 13px; }
  .ing-quality { margin-top: 16px; }
  .ing-quality span { font-size: 12px; padding: 4px 11px; }

  /* Bonus */
  .bonus-box { padding: 20px 16px; border-radius: 16px; }
  .bonus-list li { font-size: 14.5px; padding: 11px 0; gap: 10px; }
  .bonus-total { font-size: 16px; }
  .bonus-total .amt { font-size: 20px; }

  /* Buy card */
  .buy-card { padding: 20px 16px; border-radius: 16px; }
  .buy-summary { padding: 14px; }
  .bs-row { font-size: 14px; margin-bottom: 6px; }
  .bs-row.total { font-size: 16px; }
  .size-btn { font-size: 12px; padding: 10px 4px; }
  .size-btn small { font-size: 10px; }
  .plan-btn { padding: 13px 11px; border-radius: 12px; }
  .plan-btn .pt { font-size: 13.5px; }
  .plan-btn .pp { font-size: 12px; }
  .plan-btn .tag { font-size: 10px; padding: 2px 8px; }
  .coupon-field input { font-size: 14px; padding: 10px 12px; }

  /* Reviews */
  .reviews-big-score { font-size: 44px; }
  .reviews-stars-big { font-size: 20px; }
  .review-card { padding: 22px 18px; border-radius: 14px; }
  .review-quote { font-size: 15px; margin-bottom: 14px; }
  .review-name { font-size: 14px; }
  .review-detail { font-size: 12px; }
  .review-day { font-size: 10px; padding: 3px 8px; }
  .review-avatar { width: 42px; height: 42px; font-size: 16px; }

  /* Tabs */
  .tab-nav { gap: 4px; }
  .tab-btn { font-size: 12.5px; padding: 8px 10px; }
  .tab-panel { font-size: 14.5px; }
  .dose-table { font-size: 13.5px; }
  .dose-table th, .dose-table td { padding: 7px 8px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-card { padding: 20px 16px; border-radius: 14px; }
  .stat-num { font-size: 34px; }
  .stat-text { font-size: 13.5px; }
  .disclaimer { font-size: 12px; margin-top: 18px; }

  /* Founder */
  .founder { padding: 22px 18px; border-radius: 16px; gap: 14px; }
  .founder p { font-size: 14.5px; margin-bottom: 10px; }
  .founder-avatar { width: 52px; height: 52px; font-size: 22px; }

  /* Guarantee */
  .guarantee { padding: 28px 18px; border-radius: 16px; }
  .guarantee .seal { font-size: 38px; }
  .guarantee h3 { font-size: 20px; margin-bottom: 8px; }
  .guarantee p { font-size: 14.5px; }

  /* FAQ */
  .faq-q { font-size: 14.5px; padding: 15px 16px; }
  .faq-q .plus { font-size: 20px; }
  .faq-a-inner { font-size: 14px; padding: 0 16px 16px; }
  .faq-item { border-radius: 12px; margin-bottom: 8px; }

  /* Final CTA */
  .final-cta { padding: 28px 18px; border-radius: 18px; }
  .final-cta h2 { font-size: clamp(20px, 6vw, 28px); }
  .final-cta p { font-size: 14.5px; }

  /* Footer */
  .site-footer { padding: 28px 18px; }
  .footer-disc { font-size: 11.5px; }

  /* Sticky bar */
  .sticky-bar .btn { font-size: 14.5px; padding: 12px 16px; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 12px; }
  .logo { font-size: 12px; letter-spacing: 0.07em; }
  .announce-track span { font-size: 11px; padding: 0 24px; }
  .hero h1 { font-size: 23px; }
  .price-row { gap: 6px; flex-wrap: wrap; }
  .price-now { font-size: 24px; }
  .size-btns { gap: 5px; }
  .size-btn { font-size: 11.5px; }
  .hero-microtrust { font-size: 11.5px; }
  .sticky-bar { padding: 8px 12px; }
  .sticky-bar .btn { padding: 11px 13px; font-size: 13.5px; }
  .sticky-price .amt { font-size: 17px; }
  .sticky-price .label { display: none; }
  .tab-btn { font-size: 12px; padding: 7px 9px; }
  .vet-tab-btn { font-size: 11.5px; padding: 6px 12px; }
  .systems-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
}

@media (max-height: 480px) and (max-width: 900px) {
  .hero { padding: 14px 0 4px; }
}
