/* ═══════════════════════════════════════════════════════════
   MANDRAK STUDIO — Vizuelni identitet
   Misteriozno. Filmski. Strip. Retro medij.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ─── Varijable ─────────────────────────────────────────── */
:root {
  --bg: #060504;
  --bg2: #0d0b08;
  --panel: #12100d;
  --panel2: #1a1612;
  --panel3: #221e18;
  --text: #e8e0d0;
  --muted: #a89f8c;
  --dim: #6b6358;
  --gold: #c9960a;
  --gold2: #f0c040;
  --gold3: #ffe49a;
  --gold-glow: rgba(201,150,10,0.35);
  --gold-line: rgba(201,150,10,0.22);
  --gold-line2: rgba(240,192,64,0.10);
  --shadow-deep: 0 24px 80px rgba(0,0,0,0.75);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --radius: 6px;
  --radius-lg: 14px;
  --font-display: 'Cinzel', Georgia, serif;
  --font-deco: 'Cinzel Decorative', 'Cinzel', serif;
  --font-body: 'Lora', Georgia, serif;
}

/* ─── Reset & osnova ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(160,110,0,0.08) 0%, transparent 70%);
  color: var(--text);
  line-height: 1.7;
}

a { color: var(--gold2); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Tipografija ────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 700;
}

h1 {
  font-size: clamp(32px, 6.5vw, 72px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold3);
  text-shadow: 0 0 40px rgba(201,150,10,0.5), 0 2px 4px rgba(0,0,0,0.9);
}

h2 {
  font-size: clamp(22px, 3.8vw, 38px);
  color: var(--gold2);
  letter-spacing: 0.07em;
  text-shadow: 0 0 20px rgba(201,150,10,0.25);
}

h3 {
  font-size: clamp(14px, 1.7vw, 17px);
  color: var(--gold3);
  letter-spacing: 0.06em;
  font-weight: 600;
  margin: 0 0 10px;
}

p { color: var(--muted); font-size: 16px; margin: 0 0 16px; }

/* ─── Zaglavlje ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5vw;
  background: rgba(6,5,4,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8vw; right: 8vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-logo {
  width: 48px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,150,10,0.45));
  transition: filter 0.3s;
}
.brand:hover .brand-logo { filter: drop-shadow(0 0 16px rgba(240,192,64,0.7)); }

.brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold2);
}

.brand-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240,192,64,0.65);
  box-shadow: 0 0 10px rgba(201,150,10,0.32);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.brand:hover .brand-avatar {
  transform: scale(1.05);
  border-color: rgba(255,216,104,0.9);
  box-shadow: 0 0 16px rgba(240,192,64,0.55);
}

.main-nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }

.main-nav a {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
  border: 1px solid transparent;
}
.main-nav a:hover {
  color: var(--gold2);
  background: rgba(201,150,10,0.07);
  border-color: var(--gold-line);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold2);
  font-size: 18px;
  border-radius: var(--radius);
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.25s;
}
.nav-toggle:hover { background: rgba(201,150,10,0.1); }

/* ─── Main ───────────────────────────────────────────────── */
main { overflow: hidden; }
section { padding: 80px 7vw; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  padding: 100px 7vw 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(140,95,0,0.13) 0%, transparent 70%),
    linear-gradient(180deg, rgba(6,5,4,0.3) 0%, rgba(6,5,4,0.0) 40%, rgba(6,5,4,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* filmske scan linije */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(201,150,10,0.012) 3px, rgba(201,150,10,0.012) 4px
  );
  z-index: 0;
  pointer-events: none;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-logo {
  width: min(480px, 82vw);
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 35px rgba(201,150,10,0.4)) drop-shadow(0 0 70px rgba(201,150,10,0.18));
  animation: logoPulse 4.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(201,150,10,0.38)) drop-shadow(0 0 60px rgba(201,150,10,0.16)); }
  50% { filter: drop-shadow(0 0 50px rgba(240,192,64,0.58)) drop-shadow(0 0 100px rgba(201,150,10,0.28)); }
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 8px 0 22px;
}
.hero-ornament::before,
.hero-ornament::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,10,0.6));
}
.hero-ornament::after {
  background: linear-gradient(90deg, rgba(201,150,10,0.6), transparent);
}
.hero-ornament span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.8vw, 15px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero p:not(.tagline) {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 12px;
  line-height: 1.8;
}

/* ─── Dugmad ──────────────────────────────────────────────── */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,150,10,0.14) 0%, rgba(201,150,10,0.04) 100%);
  color: var(--gold2);
  box-shadow: inset 0 1px 0 rgba(255,228,154,0.12), 0 4px 20px rgba(0,0,0,0.45);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,192,64,0.16) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover {
  color: var(--gold3);
  border-color: var(--gold2);
  box-shadow: 0 0 18px rgba(201,150,10,0.38), 0 0 36px rgba(201,150,10,0.12), inset 0 1px 0 rgba(255,228,154,0.22), 0 4px 20px rgba(0,0,0,0.45);
  transform: translateY(-1px);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, rgba(201,150,10,0.28) 0%, rgba(160,110,0,0.18) 100%);
  border-color: var(--gold2);
  box-shadow: 0 0 10px rgba(201,150,10,0.22), inset 0 1px 0 rgba(255,228,154,0.18), 0 4px 20px rgba(0,0,0,0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-line);
  color: var(--muted);
  box-shadow: none;
}
.btn-outline:hover {
  color: var(--gold2);
  border-color: var(--gold);
  background: rgba(201,150,10,0.05);
  box-shadow: 0 0 12px rgba(201,150,10,0.18);
}

.btn-whatsapp {
  background: rgba(31,180,85,0.12);
  border-color: rgba(31,180,85,0.45);
  color: #5de88a;
}
.btn-whatsapp:hover { box-shadow: 0 0 14px rgba(31,180,85,0.28); border-color: #1fb455; }

/* ─── Sekcijski zaglavlje ────────────────────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}

.section-head::after {
  content: '◆';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 9px;
  background: var(--bg);
  padding: 0 8px;
}

.section-head a {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: color 0.25s;
  flex-shrink: 0;
}
.section-head a:hover { color: var(--gold3); }

section + section { border-top: 1px solid var(--gold-line2); }

/* ─── Grid & Kartice ─────────────────────────────────────── */
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: linear-gradient(160deg, var(--panel2) 0%, var(--panel) 100%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), box-shadow 0.32s, border-color 0.32s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.55), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,150,10,0.42);
  box-shadow: 0 16px 60px rgba(0,0,0,0.72), 0 0 28px rgba(201,150,10,0.1);
}
.card:hover::before { opacity: 1; }

/* Video thumbnail */
.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--panel3);
  flex-shrink: 0;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.5s;
  filter: brightness(0.82) saturate(0.85);
}
.card:hover .card-thumb img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}

/* Play overlay */
.card-thumb .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(0,0,0,0.25);
}
.card:hover .card-thumb .play-btn { opacity: 1; }

.play-btn-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(6,5,4,0.75);
  border: 1.5px solid rgba(240,192,64,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold2);
  box-shadow: 0 0 20px rgba(201,150,10,0.4);
  transform: scale(0.85);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover .play-btn-inner {
  transform: scale(1);
  box-shadow: 0 0 30px rgba(201,150,10,0.65);
}

/* gradient ispod thumbnaila */
.card-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(18,16,13,0.9) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.card-body h3 { margin: 0; }
.card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }

.card-cat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 3px 8px;
  width: fit-content;
  margin-bottom: 2px;
}

/* kartice bez thumbnaila */
.card-plain { padding: 24px; }

/* ─── Produkt kartice ────────────────────────────────────── */
.product {
  background: linear-gradient(160deg, var(--panel2) 0%, var(--panel) 100%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), box-shadow 0.32s, border-color 0.32s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.45), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}

.product:hover {
  transform: translateY(-5px);
  border-color: rgba(201,150,10,0.4);
  box-shadow: 0 16px 60px rgba(0,0,0,0.72), 0 0 24px rgba(201,150,10,0.1);
}
.product:hover::before { opacity: 1; }

.product img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
  filter: brightness(0.88);
}
.product:hover img { transform: scale(1.04); filter: brightness(1); }

.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.product-body h3 { margin: 0; }
.product-body p { font-size: 13.5px; margin: 0; flex: 1; }

.price {
  display: block;
  font-family: var(--font-display);
  color: var(--gold2);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ─── Split sekcija ──────────────────────────────────────── */
.split, .book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img, .book img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep), 0 0 0 1px var(--gold-line);
  border: 1px solid var(--gold-line);
  transition: box-shadow 0.4s;
}
.split img:hover, .book img:hover {
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(201,150,10,0.38), 0 0 40px rgba(201,150,10,0.1);
}

.reverse img { order: 2; }

/* ─── Page title ─────────────────────────────────────────── */
.page-title {
  text-align: center;
  padding: 100px 7vw 60px;
  position: relative;
  overflow: hidden;
}
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(140,95,0,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.page-title h1 { position: relative; z-index: 1; }
.page-title p { max-width: 720px; margin: 0 auto 26px; font-size: 17px; }

/* ─── Knjige ──────────────────────────────────────────────── */
.book { border-top: 1px solid var(--gold-line2); }

/* ─── Logo pair ───────────────────────────────────────────── */
.logo-pair { display: grid; gap: 20px; }
.logo-pair img { border-radius: var(--radius-lg); border: 1px solid var(--gold-line); box-shadow: var(--shadow-deep); }

/* ─── Kontakt grid ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

.contact-grid a {
  background: linear-gradient(160deg, var(--panel2), var(--panel));
  border: 1px solid var(--gold-line);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s, border-color 0.25s;
  display: block;
}
.contact-grid a:hover { color: var(--gold2); border-color: rgba(201,150,10,0.38); }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  padding: 50px 7vw 34px;
  border-top: 1px solid var(--gold-line);
  background: var(--bg);
  display: grid;
  gap: 22px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 7vw; right: 7vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.28;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  display: inline-block;
  border: 1px solid rgba(240,192,64,0.5);
  box-shadow: 0 0 22px rgba(201,150,10,0.15);
  background: var(--panel);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.footer-avatar:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(240,192,64,0.85);
  box-shadow: 0 0 30px rgba(201,150,10,0.28);
}
.footer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
}
.site-footer p {
  font-family: var(--font-display);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 5px 0 0;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-links a {
  font-family: var(--font-display);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 5px 10px;
  border: 1px solid rgba(201,150,10,0.1);
  border-radius: var(--radius);
  transition: color 0.25s, border-color 0.25s;
}
.footer-links a:hover { color: var(--gold2); border-color: var(--gold-line); }

.copyright {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--dim);
}



/* ─── Najnovije sa YouTube kanala ───────────────────────── */
.latest-video-section {
  background:
    radial-gradient(ellipse 65% 55% at 50% 10%, rgba(201,150,10,0.08), transparent 70%),
    linear-gradient(180deg, rgba(13,11,8,0.75), rgba(6,5,4,0.95));
}

.latest-video-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(160deg, rgba(26,22,18,0.92) 0%, rgba(12,10,8,0.96) 100%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,228,154,0.05);
  position: relative;
  overflow: hidden;
}

.latest-video-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 10%, rgba(240,192,64,0.10), transparent 34%);
}

.latest-video-copy,
.youtube-embed { position: relative; z-index: 1; }

.latest-video-copy h3 {
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--gold3);
}

.youtube-embed {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,150,10,0.34);
  box-shadow: 0 18px 60px rgba(0,0,0,0.65), 0 0 26px rgba(201,150,10,0.11);
  background: #000;
}

.youtube-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 950px) {
  .latest-video-panel { grid-template-columns: 1fr; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 950px) {
  .cards, .products, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .book { grid-template-columns: 1fr; gap: 32px; }
  .reverse img { order: 0; }

  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 65px;
    background: rgba(6,5,4,0.97);
    border-bottom: 1px solid var(--gold-line);
    padding: 18px 5vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    backdrop-filter: blur(16px);
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 11px; padding: 10px 14px; width: 100%; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding-top: 80px; }
}

@media (max-width: 620px) {
  section { padding: 52px 5vw; }
  .cards, .products, .contact-grid { grid-template-columns: 1fr; }
  .product img { height: 210px; }
  .actions { justify-content: center; }
  .brand span { display: none; }
  .hero-logo { width: min(320px, 84vw); }
  h1 { font-size: clamp(26px, 9vw, 44px); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ─── Animacije ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.85s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.08s; }
.hero-content > *:nth-child(2) { animation-delay: 0.22s; }
.hero-content > *:nth-child(3) { animation-delay: 0.34s; }
.hero-content > *:nth-child(4) { animation-delay: 0.44s; }
.hero-content > *:nth-child(5) { animation-delay: 0.52s; }
.hero-content > *:nth-child(6) { animation-delay: 0.60s; }


/* ─── Dodatno usklađivanje ostalih stranica ─────────────── */
.product img.product-contain {
  object-fit: contain;
  padding: 14px;
  background: radial-gradient(ellipse at center, rgba(201,150,10,0.08), rgba(0,0,0,0.18));
}
.card.card-plain {
  min-height: 100%;
}
.card.card-plain .btn,
.product .btn {
  margin-top: auto;
  width: fit-content;
}
.book .card-cat,
.split .card-cat {
  margin-bottom: 14px;
}
.book .actions,
.split .actions {
  margin-top: 20px;
}
.logo-pair img:first-child {
  background: radial-gradient(ellipse at center, rgba(201,150,10,0.10), transparent 70%);
}
@media (max-width: 620px) {
  .btn { width: 100%; }
  .product .btn,
  .card.card-plain .btn { width: 100%; }
}

/* ─── Ispravka najnovijeg YouTube bloka: bez iframe koji YouTube ponekad blokira ─── */
.latest-video-thumb {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,150,10,0.34);
  box-shadow: 0 18px 60px rgba(0,0,0,0.65), 0 0 26px rgba(201,150,10,0.11);
  background: #000;
}
.latest-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) contrast(1.08) saturate(1.05);
  transform: scale(1.01);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.latest-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}
.latest-video-thumb:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) contrast(1.12) saturate(1.08);
}
.latest-video-thumb .latest-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.latest-video-thumb .latest-play span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.56);
  border: 1px solid rgba(240,192,64,0.7);
  color: var(--gold3);
  box-shadow: 0 0 28px rgba(201,150,10,0.42);
  padding-left: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.latest-video-thumb:hover .latest-play span {
  transform: scale(1.08);
  box-shadow: 0 0 38px rgba(240,192,64,0.62);
}
.latest-video-thumb strong {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  font-family: var(--font-display);
  color: var(--gold3);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.9);
}

@media (max-width: 560px) {
  .footer-brand { align-items: flex-start; }
  .footer-avatar { width: 54px; height: 54px; }
}
