/* ═══════════════════════════════════════════════════════════════
   СРПСТВО — Premium Dark Brand Design
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:        #0a0a0a;
  --bg-dark:   #0f0f0f;
  --bg-card:   #141414;
  --bg-mid:    #1c1c1c;
  --border:    #242424;
  --border-hi: #333;

  --text:      #ffffff;
  --text-dim:  #cccccc;
  --text-muted:#888888;

  --red:       #c41e2a;
  --red-dk:    #9e1821;
  --red-glow:  rgba(196,30,42,0.25);
  --gold:      #c9a96e;

  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;

  --hh:        88px;
  --trans:     0.35s cubic-bezier(0.4,0,0.2,1);
  --fast:      0.18s ease;
}

/* ─── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); color: inherit; }
ul, ol { list-style: none; }

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container { width: min(1280px, 100% - 48px); margin-inline: auto; }

/* ─── PAGE LOADER ────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo {
  width: 140px; height: 140px; object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.7));
  animation: loaderPulse 1.8s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from { filter: drop-shadow(0 0 10px rgba(255,255,255,0.5)); }
  to   { filter: drop-shadow(0 0 28px rgba(196,30,42,0.8)) drop-shadow(0 0 8px rgba(255,255,255,0.8)); }
}
.loader-bar { width: 200px; height: 2px; background: #1a1a1a; margin: 0 auto; overflow: hidden; border-radius: 2px; }
.loader-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--red), #ff4444); animation: loaderFill 2s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes loaderFill { to { width: 100%; } }

/* ─── HEADER ─────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--hh);
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}
#header.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--hh);
  width: min(1440px, 100% - 48px); margin-inline: auto;
}

/* Logo in header */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  width: 82px; height: 82px; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
  transition: filter var(--trans), transform var(--fast);
}
.header-logo:hover .logo-img { filter: drop-shadow(0 0 14px rgba(196,30,42,0.8)) drop-shadow(0 0 4px #fff); transform: scale(1.05); }

/* Desktop nav */
.header-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--fast);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--trans);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* Header CTA button */
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.btn-header-cta {
  padding: 10px 20px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  background: var(--red); color: #fff;
  border: 1px solid var(--red);
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-1px); box-shadow: 0 6px 20px var(--red-glow); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; }
.hamburger span { display: block; height: 1.5px; background: var(--text); transition: transform var(--trans), opacity var(--fast); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: var(--hh); left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  flex-direction: column; padding: 40px 32px;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform var(--trans);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: var(--text-dim); padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--fast), padding-left var(--trans);
}
.mobile-nav-link:hover { color: var(--text); padding-left: 12px; }
.mobile-menu-footer { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.mobile-ig-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.1em; }
.mobile-cta { width: 100%; justify-content: center; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-2px); box-shadow: 0 10px 32px var(--red-glow); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-hi); }
.btn-outline:hover { border-color: var(--text); transform: translateY(-2px); }

.btn-order {
  display: block; width: 100%;
  padding: 13px 16px;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center;
  background: var(--red); color: #fff;
  border: 1px solid var(--red);
  transition: all var(--trans);
}
.btn-order:hover { background: var(--red-dk); border-color: var(--red-dk); box-shadow: 0 6px 20px var(--red-glow); }

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 110px 0; }
.section-dark { background: var(--bg-dark); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header-mt { margin-top: 100px; }
.section-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; color: var(--text);
  letter-spacing: 0.08em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--text-muted); letter-spacing: 0.1em; max-width: 500px; margin: 0 auto; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: #050505; }
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  padding-top: calc(var(--hh) + 20px);
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.hero-logo-wrap { margin-bottom: 32px; }
.hero-logo-img {
  width: clamp(180px, 28vw, 320px);
  height: clamp(180px, 28vw, 320px);
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.7)) drop-shadow(0 0 8px rgba(196,30,42,0.5));
  transition: filter var(--trans);
}
.hero-logo-img:hover { filter: drop-shadow(0 0 40px rgba(196,30,42,0.9)) drop-shadow(0 0 12px rgba(255,255,255,0.9)); }

.hero-badge {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 8px 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700; color: #fff;
  letter-spacing: 0.06em; line-height: 1.25;
  margin-bottom: 36px;
  max-width: 720px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-note {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; letter-spacing: 0.04em;
}

/* Hero fade-up stagger */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp 0.85s cubic-bezier(0.4,0,0.2,1) forwards; }
.hero-logo-wrap.fade-up  { animation-delay: 0.2s; }
.hero-badge.fade-up      { animation-delay: 0.45s; }
.hero-title.fade-up      { animation-delay: 0.6s; }
.hero-actions.fade-up    { animation-delay: 0.8s; }
.hero-note.fade-up       { animation-delay: 1s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── ANNOUNCEMENT ───────────────────────────────────────────── */
.announcement-bar {
  background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 13px 24px; text-align: center;
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--text-muted);
}
.announcement-bar a { color: var(--text); font-weight: 600; transition: color var(--fast); }
.announcement-bar a:hover { color: var(--red); }

/* ─── NOVA KOLEKCIJA GRID ────────────────────────────────────── */
.kol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.kol-card { position: relative; overflow: hidden; background: var(--bg-card); cursor: pointer; }
.kol-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-mid); }
.kol-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.kol-card:hover .kol-img-wrap img { transform: scale(1.07); }
.kol-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--trans);
}
.kol-card:hover .kol-overlay { opacity: 1; }
.kol-overlay span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,0.6); padding: 10px 24px;
}
.kol-info { padding: 18px 20px; background: var(--bg-card); border-top: 1px solid var(--border); }
.kol-tag { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 4px; }
.kol-info h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--text); }

/* ─── PRODUCTS GRID ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
#duksevi-grid { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--bg-card);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.6); }
.product-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-mid);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 10px;
}
.product-zoom {
  position: absolute; bottom: 10px; right: 10px;
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.7); color: #fff;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity var(--trans), transform var(--trans);
}
.product-card:hover .product-zoom { opacity: 1; transform: scale(1); }
.product-zoom:hover { background: var(--red); border-color: var(--red); }
.product-info { padding: 16px; }
.product-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 12px; line-height: 1.3; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 90px 0;
}
.cta-inner { text-align: center; }
.cta-text { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 2.2rem); font-weight: 400; color: var(--text); margin-bottom: 8px; }
.cta-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 36px; }

/* ─── O NAMA ─────────────────────────────────────────────────── */
.about-section { background: var(--bg-dark); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 100px; align-items: center; }
.about-visual { text-align: center; }
.about-logo {
  width: clamp(220px, 26vw, 340px); height: clamp(220px, 26vw, 340px);
  object-fit: contain; margin: 0 auto 20px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.6)) drop-shadow(0 0 6px rgba(196,30,42,0.4));
}
.about-handle { font-size: 0.85rem; letter-spacing: 0.2em; color: var(--text-muted); }
.about-content .section-title { text-align: left; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.about-content .section-tag  { display: block; text-align: left; }
.about-subtitle {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 28px;
}
.about-text { margin-bottom: 36px; }
.about-text p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.95; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 80px 0 36px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 64px; align-items: start; }

.footer-brand { }
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img {
  width: 120px; height: 120px; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
  transition: filter var(--trans);
}
.footer-logo-img:hover { filter: drop-shadow(0 0 14px rgba(196,30,42,0.7)) drop-shadow(0 0 4px #fff); }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.footer-social-links { display: flex; flex-direction: column; gap: 10px; }
.footer-social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
  transition: color var(--fast);
  padding: 8px 0;
}
.footer-social-btn:hover { color: var(--text); }
.footer-wa:hover { color: #25D366; }

.footer-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--fast); }
.footer-links a:hover { color: var(--text); }

.footer-qr-col { }
.footer-qr-wrap { margin-top: 4px; }
.footer-qr-img {
  width: 240px; height: 240px; object-fit: contain;
  background: #fff; padding: 8px; border-radius: 4px;
  margin-bottom: 10px;
}
.footer-qr-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted);
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 62px; height: 62px;
  background: #25D366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.65); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}
.wa-tip {
  position: absolute; right: 74px;
  background: var(--bg-card); color: var(--text);
  font-size: 0.75rem; font-weight: 500; white-space: nowrap;
  padding: 7px 14px; border-radius: 4px; border: 1px solid var(--border);
  opacity: 0; pointer-events: none; transition: opacity var(--fast);
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.products-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.products-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.products-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.products-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.kol-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.kol-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.kol-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ─── MODAL / LIGHTBOX ───────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-content {
  position: relative; z-index: 1;
  width: min(860px, 95vw);
  max-height: 92vh;
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalIn { from { transform: scale(0.9) translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.5); color: #fff;
  border-radius: 50%; border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background var(--fast), transform var(--fast);
}
.modal-close:hover { background: var(--red); transform: rotate(90deg); }

.modal-header-info {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
#modal-product-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--text); }
.modal-order-btn { padding: 10px 24px; font-size: 0.72rem; }

/* Slider */
.slider-wrap {
  display: flex; align-items: center;
  flex: 1; min-height: 0; overflow: hidden;
  position: relative;
}
.slider-track-wrap { flex: 1; overflow: hidden; min-height: 0; }
.slider-track {
  display: flex; transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
}
.slider-slide {
  flex: 0 0 100%; width: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #000;
  max-height: 68vh;
}
.slider-slide img {
  max-width: 100%; max-height: 68vh;
  width: 100%; height: 100%;
  object-fit: contain;
}
.slider-arrow {
  flex-shrink: 0; width: 48px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45); color: #fff;
  transition: background var(--fast), color var(--fast);
  z-index: 2;
}
.slider-arrow:hover { background: var(--red); }
.slider-arrow.hidden { opacity: 0; pointer-events: none; }

/* Dots */
.slider-dots { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; flex-shrink: 0; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-hi); border: none; padding: 0; cursor: pointer;
  transition: background var(--fast), transform var(--fast);
}
.dot.active { background: var(--red); transform: scale(1.35); }

/* ─── RESPONSIVE TABLET ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  #duksevi-grid  { grid-template-columns: repeat(2, 1fr); }
  .kol-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-qr-col { grid-column: 1 / -1; display: flex; align-items: center; gap: 32px; }
  .footer-qr-col .footer-heading { margin-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { order: -1; }
  .about-content .section-title, .about-content .section-tag { text-align: center; }
  .about-content .about-subtitle { text-align: center; }
  .about-content .btn-outline { display: block; text-align: center; }
}

@media (max-width: 900px) {
  :root { --hh: 72px; }
  .header-nav { display: none; }
  .btn-header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  #duksevi-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --hh: 64px; }
  .section { padding: 72px 0; }
  .section-header-mt { margin-top: 72px; }
  .kol-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  #duksevi-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-logo-img { width: 180px; height: 180px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-tip { display: none; }
  .slider-arrow { width: 36px; }
  .modal-content { max-height: 96vh; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  #duksevi-grid  { grid-template-columns: 1fr; }
}

/* ─── GRIDS OVERRIDE ─────────────────────────────────────────── */
#majice-grid    { grid-template-columns: repeat(4, 1fr); }
#zastavice-grid { grid-template-columns: repeat(3, 1fr); }

/* ─── PRODUCT PRICE ──────────────────────────────────────────── */
.product-price {
  font-size: 0.95rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

/* ─── GALLERY SECTION ────────────────────────────────────────── */
.gallery-section { background: var(--bg-dark); border-top: 1px solid var(--border); }
.gallery-wrap {
  position: relative;
  padding: 0 56px;
}
.gallery-scroll {
  display: flex; gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gal-item {
  flex: 0 0 calc(25% - 3px);
  aspect-ratio: 1;
  object-fit: cover;
  scroll-snap-align: start;
  cursor: pointer;
  transition: opacity var(--trans), transform var(--trans);
}
.gal-item:hover { opacity: 0.8; transform: scale(1.02); }
.gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.8); color: #fff;
  border-radius: 50%; border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background var(--fast);
  flex-shrink: 0;
}
.gal-arrow:hover { background: var(--red); }
.gal-prev { left: 4px; }
.gal-next { right: 4px; }

/* ─── ACCESSIBILITY ──────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── RESPONSIVE GALLERY + GRIDS ────────────────────────────── */
@media (max-width: 1100px) {
  #majice-grid    { grid-template-columns: repeat(2, 1fr); }
  #zastavice-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-item { flex: 0 0 calc(33.333% - 3px); }
}
@media (max-width: 900px) {
  #majice-grid    { grid-template-columns: repeat(2, 1fr); }
  #zastavice-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wrap { padding: 0 44px; }
  .gal-item { flex: 0 0 calc(33.333% - 3px); }
}
@media (max-width: 640px) {
  #majice-grid    { grid-template-columns: repeat(2, 1fr); }
  #zastavice-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wrap { padding: 0 36px; }
  .gal-item { flex: 0 0 calc(50% - 2px); }
  .gal-arrow { width: 36px; height: 36px; }
}
@media (max-width: 420px) {
  #majice-grid    { grid-template-columns: 1fr; }
  #zastavice-grid { grid-template-columns: 1fr; }
  .gal-item { flex: 0 0 calc(50% - 2px); }
}
