/* ============================================
   ISKE KOMERC — Premium Redesign
   Design System & Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');


/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, #111 0%, #D32F2F 100%); border-radius: 3px; }
:root { scrollbar-color: #D32F2F #111; scrollbar-width: thin; }

/* ---- WhatsApp standalone btn — sakriven, koristimo chat-fab ---- */
.whatsapp-btn { display: none !important; }

/* ---- CSS Variables ---- */
:root {
  --red:       #D32F2F;
  --red-dark:  #B71C1C;
  --red-light: #EF5350;
  --black:     #0A0A0A;
  --dark:      #111111;
  --dark-2:    #1A1A1A;
  --dark-3:    #222222;
  --gray:      #888888;
  --gray-light:#CCCCCC;
  --off-white: #F5F5F5;
  --white:     #FFFFFF;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    4px;
  --radius-lg: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.32);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1280px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; background: #0A0A0A; }
html { background: #111111; overscroll-behavior: none; height: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  position: relative; /* NE sticky — scrolla away */
  z-index: 999;
}
@media (max-width: 768px) {
  .top-bar { display: none; }
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
}
.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: space-between;
  padding-right: 28px;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.top-bar__item:hover { color: var(--white); }
.top-bar__item svg { flex-shrink: 0; opacity: 0.7; }
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.8;
}
.top-bar__social a:hover {
  transform: scale(1.15);
  opacity: 1;
  background: transparent;
  border-color: transparent;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 44px;
  width: auto;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav__link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--white); }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.header__icon:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-heading);
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ============================================
   MINI CART DROPDOWN (popup iz header ikone)
   ============================================ */
.mini-cart {
  position: fixed;
  top: 0; right: 0;
  width: 370px;
  max-width: calc(100vw - 24px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  overflow: hidden;
  color: var(--dark);
  font-family: var(--font-body);
}
.mini-cart.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mini-cart::before {
  content: '';
  position: absolute; top: -6px; right: 18px;
  width: 12px; height: 12px;
  background: var(--white);
  transform: rotate(45deg);
}
.mini-cart__header {
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: space-between;
}
.mini-cart__header .mini-cart__close {
  background: none; border: none; cursor: pointer; color: var(--gray); padding: 2px;
  display: flex; align-items: center; justify-content: center;
}
.mini-cart__header .mini-cart__close:hover { color: var(--red); }
.mini-cart__list { max-height: 320px; overflow-y: auto; }
.mini-cart__item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  align-items: center;
}
.mini-cart__item img { width: 52px; height: 52px; object-fit: contain; background: var(--off-white); border-radius: 6px; padding: 4px; }
.mini-cart__item-info h4 { font-size: 12.5px; font-weight: 700; margin-bottom: 3px; line-height: 1.3; color: var(--dark); }
.mini-cart__item-info p { font-size: 11px; color: var(--gray); margin-bottom: 2px; }
.mini-cart__item-price { font-size: 12.5px; font-weight: 800; color: var(--red); white-space: nowrap; }
.mini-cart__item-remove {
  grid-column: 3; justify-self: end;
  background: none; border: none; color: #ccc; cursor: pointer; padding: 2px;
  display: flex; align-items: center; margin-top: 4px;
}
.mini-cart__item-remove:hover { color: var(--red); }
.mini-cart__empty { padding: 44px 20px; text-align: center; color: var(--gray); font-size: 13px; }
.mini-cart__empty svg { opacity: .3; margin-bottom: 12px; }
.mini-cart__footer { padding: 16px 18px; border-top: 1px solid rgba(0,0,0,.07); background: var(--off-white); }
.mini-cart__total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 800; font-size: 15px; margin-bottom: 14px; }
.mini-cart__total span:last-child { color: var(--red); }
.mini-cart__actions { display: flex; flex-direction: column; gap: 8px; }
.mini-cart__actions .btn { width: 100%; justify-content: center; }
/* .btn--outline je dizajniran za tamnu pozadinu (bijeli tekst); mini-cart panel je
   svijetle boje pa preveliki isti stil čini dugme nevidljivim. Ovdje ga preokrećemo. */
.mini-cart__actions .btn--outline { color: var(--dark); border-color: rgba(0,0,0,0.15); background: transparent; }
.mini-cart__actions .btn--outline:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
@media (max-width: 480px) {
  .mini-cart { width: calc(100vw - 24px); }
}
.btn--register {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn--register:hover { background: var(--red-dark); }

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(211,47,47,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-2);
}
.btn--lg { padding: 17px 36px; font-size: 14px; }
.btn--sm { padding: 9px 18px; font-size: 12px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(211,47,47,0.08) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211,47,47,0.12);
  border: 1px solid rgba(211,47,47,0.3);
  color: var(--red-light);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero__title span { color: var(--red); }
.page-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ============================================
   SECTION TITLES
   ============================================ */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark);
}
.section-title--white { color: var(--white); }
.section-title span { color: var(--red); }
.section-subtitle {
  margin-top: 12px;
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
}
.section-subtitle--white { color: rgba(255,255,255,0.55); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  background-image: url('https://iskekomerc.ba/wp-content/uploads/2022/01/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}
.footer__main {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer__brand-logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.82;
}
.footer__social a img {
  width: 30px !important;
  height: 30px !important;
}
.footer__social a:hover {
  transform: scale(1.15);
  opacity: 1;
}
@media (min-width: 1600px) {
  .footer__social a img { width: 34px !important; height: 34px !important; }
}
@media (min-width: 2560px) {
  .footer__social { gap: 20px; }
  .footer__social a img { width: 44px !important; height: 44px !important; }
}
@media (min-width: 3840px) {
  .footer__social { gap: 28px; }
  .footer__social a img { width: 60px !important; height: 60px !important; }
}
.footer__col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__contact-item:hover { color: rgba(255,255,255,0.85); }
.footer__contact-icon {
  width: 18px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  padding: 3px 0;
}
.footer__links a::before {
  content: '';
  width: 6px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
  transition: width var(--transition);
}
.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer__links a:hover::before { width: 10px; }

.footer__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.footer__gallery-item {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.footer__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.footer__gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.footer__gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background var(--transition);
}
.footer__gallery-item:hover::after { background: rgba(211,47,47,0.2); }

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer__bottom-inner a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__bottom-inner a:hover { color: var(--red); }

/* ============================================
   WHATSAPP STICKY BUTTON
   ============================================ */
/* ===== CHAT FAB ===== */
.chat-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.chat-fab__btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(211,47,47,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; flex-shrink: 0;
}
.chat-fab__btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(211,47,47,0.55); }
.chat-fab__icon { display: flex; align-items: center; justify-content: center; transition: opacity 0.2s, transform 0.2s; }
.chat-fab__icon--close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.6); }
.chat-fab--open .chat-fab__icon--open  { opacity: 0; transform: rotate(90deg) scale(0.6); }
.chat-fab--open .chat-fab__icon--close { opacity: 1; transform: rotate(0deg) scale(1); }
.chat-fab__ping {
  position: absolute; top: 2px; right: 2px;
  width: 12px; height: 12px; background: #4ade80;
  border-radius: 50%; border: 2px solid #fff;
}
.chat-fab__ping::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: rgba(74,222,128,0.4); animation: ping 2s ease-in-out infinite;
}
@keyframes ping { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.6);opacity:0} }
.chat-fab--open .chat-fab__ping { display: none; }

/* Bubble */
.chat-bubble {
  background: #fff; border-radius: 16px; width: 300px; overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18), 0 2px 12px rgba(0,0,0,0.1);
  opacity: 0; transform: translateY(12px) scale(0.96); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease; transform-origin: bottom right;
}
.chat-fab--open .chat-bubble { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chat-bubble__header {
  background: var(--red); color: #fff; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
}
.chat-bubble__dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
}
.chat-bubble__close {
  margin-left: auto; background: rgba(255,255,255,0.15); border: none;
  color: #fff; cursor: pointer; width: 24px; height: 24px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.chat-bubble__close:hover { background: rgba(255,255,255,0.3); }
.chat-bubble__options { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.chat-option {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 10px; text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.chat-option:hover { transform: translateX(3px); }
.chat-option__icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-option--whatsapp  .chat-option__icon { background: #25D366; }
.chat-option--viber     .chat-option__icon { background: #7360f2; }
.chat-option--messenger .chat-option__icon { background: #0084ff; }
.chat-option--whatsapp:hover  { background: rgba(37,211,102,0.08); }
.chat-option--viber:hover     { background: rgba(115,96,242,0.08); }
.chat-option--messenger:hover { background: rgba(0,132,255,0.08); }
.chat-option__text { flex: 1; }
.chat-option__name { display: block; font-weight: 700; font-size: 14px; color: var(--black); }
.chat-option__sub  { display: block; font-size: 11.5px; color: var(--gray); margin-top: 1px; }
.chat-option__arrow { color: var(--gray-light); flex-shrink: 0; }

/* Responsive */
@media (max-width: 768px) {
  /* Sit above the bottom mobile nav bar */
  .chat-fab { bottom: 76px; right: 16px; z-index: 1200; }
  .chat-fab__btn { width: 52px; height: 52px; }
  .chat-bubble { width: calc(100vw - 32px); max-width: 300px; }
}
@media (max-width: 380px) {
  .chat-fab { bottom: 74px; right: 12px; }
  .chat-fab__btn { width: 48px; height: 48px; }
}
@media (min-width: 2560px) {
  .chat-fab { bottom: 40px; right: 40px; }
  .chat-fab__btn { width: 72px; height: 72px; }
  .chat-bubble { width: 380px; }
  .chat-bubble__header { font-size: 16px; padding: 18px 20px; }
  .chat-option__name { font-size: 17px; }
  .chat-option__sub  { font-size: 14px; }
  .chat-option__icon { width: 48px; height: 48px; }
}
@media (min-width: 3840px) {
  .chat-fab__btn { width: 96px; height: 96px; }
  .chat-bubble { width: 500px; }
  .chat-option { padding: 18px 20px; }
  .chat-option__icon { width: 60px; height: 60px; }
  .chat-option__name { font-size: 22px; }
  .chat-option__sub  { font-size: 18px; }
}

/* ============================================
   CARDS — BRAND / CATEGORY
   ============================================ */
.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.brand-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.brand-card:hover .brand-card__img { transform: scale(1.06); }
.brand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
  transition: background var(--transition);
}
.brand-card:hover .brand-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%); }
.brand-card__content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-card__badge {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  align-self: flex-start;
}
.brand-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.brand-card__link svg { transition: transform var(--transition); }
.brand-card:hover .brand-card__link { color: var(--red-light); }
.brand-card:hover .brand-card__link svg { transform: translateX(4px); }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
  position: relative;
}
/* Cijela kartica klikabilna — pseudo-element prekriva card */
.product-card__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Wishlist button i CTA button ostaju iznad overlay-a */
.product-card__wishlist,
.product-card__cta {
  position: relative;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--off-white);
  overflow: hidden;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}
.product-card__badge--oos {
  background: var(--gray);
}
/* Promotivne oznake — odvojena boja od crvene (koja znači "na stanju")
   da se ne miješaju vizuelno. Slažu se ispod ako ima više oznaka. */
.product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; z-index: 2; }
.product-card__badges .product-card__badge { position: static; }
.product-card__badge--new  { background: #1565C0; }
.product-card__badge--sale { background: #E65100; }
.product-card__wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.product-card__wishlist:hover { color: var(--red); background: var(--white); }
.product-card__body { padding: 16px; }
.product-card__brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.product-card__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-card__specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.product-card__spec {
  font-size: 11px;
  color: var(--gray);
  background: var(--off-white);
  padding: 2px 8px;
  border-radius: 2px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-card__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
}
.product-card__price-sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}
.product-card__stock {
  font-size: 11px;
  font-weight: 600;
  color: #2E7D32;
}
.product-card__stock--oos { color: var(--gray); }
.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  flex-shrink: 0;
}
.product-card__cta:hover { background: var(--red); }
.product-card__cta--oos {
  background: var(--off-white);
  color: var(--gray);
  pointer-events: none;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--red);
  padding: 32px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar__item {}
.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-bar__label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   REVIEWS
   ============================================ */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review-card__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card__star { color: #F59E0B; font-size: 16px; }
.review-card__text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}
.review-card__date { font-size: 12px; color: var(--gray); }

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-label .required { color: var(--red); margin-left: 3px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================
   UTILITIES
   ============================================ */
.section { padding: 80px 0; }
.section--dark { background: var(--dark); }
.section--darker { background: var(--dark-2); }
.section--light { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.divider { width: 60px; height: 3px; background: var(--red); margin-top: 16px; }
.divider--center { margin: 16px auto 0; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-red { color: var(--red); }

.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ============================================
   SCROLL TO TOP
   ============================================ */


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__number { font-size: 32px; }
}
/* Tablet / mali laptop — nav je još uvijek horizontalan (hamburger tek ispod 768px),
   pa ga malo stisnemo da stane bez preklapanja sa logom/akcijama. */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav { gap: 0; }
  .nav__link { font-size: 11.5px; padding: 8px 8px; }
  .header__actions { gap: 10px; }
  .header__logo img { height: 38px; }
}

@media (max-width: 768px) {
  .top-bar__contacts { gap: 12px; }
  .top-bar__item span { display: none; }

  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 16px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.07); }
  .nav.open { display: flex; }
  .nav__link { width: 100%; padding: 12px 16px; }
  .hamburger { display: flex; }
  .btn--register { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .page-hero { padding: 48px 0; }
}

/* ============================================
   2K / 4K BREAKPOINTS
   ============================================ */
@media (min-width: 1600px) {
  :root { --max-width: 1440px; }
  .container { max-width: 1440px; }
  body { font-size: 17px; }
  .section-header__title { font-size: clamp(28px, 2.8vw, 44px); }
  .hero__title { font-size: clamp(42px, 4.5vw, 80px); }
  .hero__subtitle { font-size: clamp(16px, 1.4vw, 22px); }
  .stats-bar__number { font-size: clamp(36px, 3vw, 52px); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .grid-3 { gap: 28px; }
  .page-hero { padding: 120px 0; }
  .section { padding: 100px 0; }
  .brand-card { padding: 44px 32px; }
  .product-card { border-radius: var(--radius-lg); }
}

@media (min-width: 2560px) {
  :root { --max-width: 2000px; }
  .container { max-width: 2000px; }
  body { font-size: 19px; }
  .section-header__title { font-size: clamp(36px, 2.4vw, 60px); }
  .hero__title { font-size: clamp(56px, 4vw, 96px); }
  .hero__subtitle { font-size: clamp(18px, 1.2vw, 26px); }
  .stats-bar__number { font-size: clamp(44px, 2.6vw, 64px); }
  .stats-bar__label { font-size: 16px; }
  .grid-4 { gap: 36px; }
  .grid-3 { gap: 36px; }
  .section { padding: 140px 0; }
  .page-hero { padding: 160px 0; }
  .btn--lg { font-size: 18px; padding: 20px 52px; }
  .footer__grid { gap: 80px; }
}

@media (min-width: 3840px) {
  :root { --max-width: 3000px; }
  .container { max-width: 3000px; }
  body { font-size: 22px; }
  .hero__title { font-size: clamp(72px, 3.5vw, 120px); }
  .section { padding: 180px 0; }
}

/* ============================================
   SCROLL REVEAL ANIMATION SYSTEM
   ============================================ */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal       { transform: translateY(32px); }
.reveal-up    { transform: translateY(48px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(0.92) translateY(24px); }

.reveal.revealed,
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger system */
.stagger-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.stagger-item.revealed {
  opacity: 1;
  transform: none;
}

/* Delay helpers */
.delay-1 { transition-delay: 80ms !important; }
.delay-2 { transition-delay: 160ms !important; }
.delay-3 { transition-delay: 240ms !important; }
.delay-4 { transition-delay: 320ms !important; }
.delay-5 { transition-delay: 400ms !important; }
.delay-6 { transition-delay: 480ms !important; }

/* ============================================
   HEADER DYNAMIC STATES
   ============================================ */
.header {
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.header--scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}

/* ============================================
   PAGE PROGRESS BAR
   ============================================ */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================
   CURSOR GLOW (desktop)
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  background: rgba(211, 47, 47, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: screen;
}
.cursor-glow.active {
  width: 40px;
  height: 40px;
  background: rgba(211, 47, 47, 0.15);
}

/* ============================================
   ENHANCED HOVER & MICRO-INTERACTIONS
   ============================================ */

/* Brand cards */
.brand-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
  transform-origin: center;
  transform-style: preserve-3d;
}
.brand-card:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.4), 0 0 0 1px var(--red);
}

/* Product cards — premium hover upgrades */
.product-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
/* webshop cards use div.product-card__img > img structure */
.product-card__img-wrap img,
.product-card__img img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  width: 100%;
}
.product-card:hover .product-card__img-wrap img,
.product-card:hover .product-card__img img {
  transform: scale(1.06);
}

/* Service cards */
.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  border-color: var(--red);
}
.service-card .icon-wrap {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
.service-card:hover .icon-wrap {
  transform: scale(1.18) rotate(-5deg);
  color: var(--red);
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Review cards */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
}

/* Nav links ripple underline */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--red);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav__link:hover::after,
.nav__link.active::after {
  left: 0;
  right: 0;
}

/* Footer links */
.footer__link {
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer__link:hover { padding-left: 6px; }

/* Partners logo hover */
.partner-logo {
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}
.partner-logo:hover {
  filter: brightness(1.3);
  transform: scale(1.08);
  opacity: 1;
}

/* ============================================
   HERO PARALLAX SUPPORT
   ============================================ */
.page-hero {
  overflow: hidden;
}
.page-hero::before {
  transition: transform 0.05s linear;
  transform: translateY(var(--parallax-y, 0));
}

/* ============================================
   SECTION SPACING IMPROVEMENTS
   ============================================ */
.section-header {
  margin-bottom: 56px;
}
.section-header__eyebrow {
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.section-header__title {
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.section-header__sub {
  margin-top: 14px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
}
.section-header--center .section-header__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   STATS BAR COUNTER ANIMATION SUPPORT
   ============================================ */
.stats-bar__number {
  display: block;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.stats-bar__item:hover .stats-bar__number { color: var(--white); text-shadow: 0 0 20px rgba(255,255,255,0.4); }
.stats-bar__item {
  transition: transform 0.3s ease;
}
.stats-bar__item:hover { transform: translateY(-4px); }

/* ============================================
   FOCUS RING (accessibility)
   ============================================ */
.using-keyboard *:focus {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ============================================
   NAV OPEN BODY LOCK
   ============================================ */
body.nav-open {
  overflow: hidden;
}

/* ============================================
   HAMBURGER OPEN STATE
   ============================================ */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   SERVICE BIG CARDS (usluge page)
   ============================================ */
.service-big-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-big-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-big-card__img {
  overflow: hidden;
}
.service-big-card__img img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: block;
}
.service-big-card:hover .service-big-card__img img {
  transform: scale(1.06);
}

/* ============================================
   IMAGE LAZY FADE
   ============================================ */
img[loading="lazy"] {
  transition: opacity 0.5s ease;
}

/* ============================================
   MOBILE REFINED (overrides)
   ============================================ */
@media (max-width: 768px) {
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    /* Simpler reveal on mobile */
    transform: translateY(20px);
  }
  .cursor-glow { display: none; }
  .section-header { margin-bottom: 36px; }
}

/* ===== CTA BANNER NEW ===== */
.cta-banner-new {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden;
}
.cta-banner-new__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.cta-banner-new__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(150,0,0,0.5) 60%, rgba(0,0,0,0.7) 100%);
}
.cta-banner-new__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; padding: 80px 0;
}
.cta-banner-new__actions {
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}
.btn--xl {
  padding: 18px 40px;
  font-size: 15px;
  letter-spacing: .06em;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,47,47,0.35);
}
@media (max-width: 1024px) {
  .cta-banner-new__inner { flex-direction: column; text-align: center; }
  .cta-banner-new__actions { flex-direction: row; }
}
@media (max-width: 640px) {
  .cta-banner-new__actions { flex-direction: column; width: 100%; }
  .btn--xl { text-align: center; }
}

/* ===== VISIT STRIP (cta-banner) ===== */
.visit-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.visit-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.visit-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.visit-strip__left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.visit-strip__icon {
  width: 56px; height: 56px;
  background: rgba(211,47,47,0.12);
  border: 1px solid rgba(211,47,47,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.visit-strip__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.visit-strip__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.visit-strip__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.visit-strip__meta-item svg { color: var(--red); flex-shrink: 0; }
.visit-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .visit-strip__inner { flex-direction: column; }
  .visit-strip__actions { width: 100%; }
  .visit-strip__actions .btn { flex: 1; justify-content: center; }
}

/* ===== PAYMENT & DELIVERY BANNER ===== */
.payment-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-top: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  gap: 0;
  flex-wrap: wrap;
}
.payment-banner__divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.payment-banner__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 4px 16px;
  min-width: 140px;
}
.payment-banner__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-banner__icon--green  { background: #e8f5e9; color: #2e7d32; }
.payment-banner__icon--blue   { background: #e3f2fd; color: #1565c0; }
.payment-banner__icon--dark   { background: #f5f5f5; color: #111; }
.payment-banner__icon--multi  { background: #fff; border: 1px solid #e0e0e0; }
.payment-banner__icon--red    { background: rgba(211,47,47,0.08); color: var(--red); }
.payment-banner__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.payment-banner__sub {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .payment-banner { gap: 12px; padding: 16px; }
  .payment-banner__divider { display: none; }
  .payment-banner__item { min-width: 120px; padding: 8px; justify-content: flex-start; }
}
@media (max-width: 560px) {
  .payment-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* ===== BRAND & ANIMATED ICONS ===== */

/* CSS Animated icon wrappers */
@keyframes truck-drive {
  0%,100% { transform: translateX(0) translateY(0); }
  25%      { transform: translateX(3px) translateY(-2px); }
  75%      { transform: translateX(-2px) translateY(-1px); }
}
@keyframes wheel-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes phone-ring {
  0%,50%,100% { transform: rotate(0deg); }
  10%,30%     { transform: rotate(-18deg); }
  20%,40%     { transform: rotate(18deg); }
}
@keyframes pin-pulse {
  0%,100% { transform: translateY(0) scale(1); }
  40%     { transform: translateY(-5px) scale(1.1); }
  60%     { transform: translateY(-3px) scale(1.05); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity:0.8; }
  100% { transform: scale(2.2); opacity:0; }
}
@keyframes shield-glow {
  0%,100% { filter: drop-shadow(0 0 3px rgba(46,125,50,0.2)); }
  50%     { filter: drop-shadow(0 0 10px rgba(46,125,50,0.7)); }
}
@keyframes card-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes star-spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes checkmark-draw {
  0%   { stroke-dashoffset: 40; }
  100% { stroke-dashoffset: 0; }
}
@keyframes arrow-bounce {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(5px); }
}
@keyframes float-icon {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* Animated icon classes */
.anim-truck  { animation: truck-drive 2s ease-in-out infinite; }
.anim-wheel  { transform-box: fill-box; transform-origin: center; animation: wheel-spin 1s linear infinite; }
.anim-phone  { animation: phone-ring 2.5s ease-in-out infinite; transform-origin: bottom center; }
.anim-pin    { animation: pin-pulse 2s cubic-bezier(.36,.07,.19,.97) infinite; }
.anim-ring   { animation: pulse-ring 1.8s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.anim-shield { animation: shield-glow 2s ease-in-out infinite; }
.anim-star   { animation: star-spin 4s linear infinite; }
.anim-arrow  { animation: arrow-bounce 1.2s ease-in-out infinite; }
.anim-float  { animation: float-icon 3s ease-in-out infinite; }
.anim-check  { stroke-dasharray: 40; animation: checkmark-draw 0.6s ease forwards; }

/* Brand payment logos in trust strips */
.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 20px;
  width: 34px;
  flex-shrink: 0;
  overflow: hidden;
}
.pay-logo svg, .pay-logo img { display:block; width:100%; height:100%; object-fit:contain; }
.pay-logo--poz    { background:#e8f5e9; border:1px solid #c8e6c9; width:24px; }
.pay-logo--visa   { background:#1A1F71; }
.pay-logo--mc     { background:transparent; width:30px; }
.pay-logo--apple  { background:#000; }
.pay-logo--google { background:#fff; border:1px solid #e0e0e0; }

/* Social icon brand colours */
.social-fb   { color:#1877F2 !important; }
.social-ig   { color:#E4405F !important; }
.social-li   { color:#0A66C2 !important; }
.social-wa   { color:#25D366 !important; }
.social-yt   { color:#FF0000 !important; }

/* ===== PIL — kompaktni payment logo bedževi ===== */
.pil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  height: 18px;
}
.pil svg { display:block; width:100%; height:100%; }
.pil--poz    { width:28px; }
.pil--visa   { width:36px; background:#1A1F71; }
.pil--mc     { width:32px; }
.pil--apple  { width:36px; background:#000; }
.pil--google { width:62px; border:1px solid #e0e0e0; }

/* trust-pay sa pil umjesto pay-badge */
.trust-pay .pil + .pil { margin-left:3px; }

/* ===== TRUST STRIP — 2-row layout ===== */
.product-card__trust {
  padding: 6px 12px 9px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.trust-delivery {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  color: #2e7d32;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-delivery svg { flex-shrink: 0; }
.trust-pay {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}
/* PIL — unified payment logo pill */
.pil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  height: 16px;
}
.pil svg { display:block; height:16px; width:auto; }
.pil--poz    { width:25px; }
.pil--visa   { width:40px; }
.pil--mc     { width:26px; }
.pil--apple  { width:40px; }
.pil--google { width:62px; border:1px solid #e0e0e0; }
/* Reuse .pay-logo for legacy — point to pil sizing */
.pay-logo { height:16px; width:auto; border-radius:3px; overflow:hidden; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.pay-logo svg,.pay-logo img { display:block; height:16px; width:auto; }
.pay-logo--poz   { width:25px; }
.pay-logo--visa  { width:40px; }
.pay-logo--mc    { width:26px; }
.pay-logo--apple { width:40px; }
.pay-logo--google{ width:44px; }


/* ============================================================
   COMPREHENSIVE RESPONSIVE — All breakpoints
   ============================================================ */

/* ── Fix: Visa/Mastercard label na jednoj liniji ── */
.payment-banner__label { white-space: nowrap; }

/* ────────────────────────────────────────────────────────────
   LAPTOP / DESKTOP  1280px – 1599px  (base design target)
──────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: clamp(32px, 4vw, 54px); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ────────────────────────────────────────────────────────────
   TABLET LANDSCAPE  1024px – 1279px
──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .top-bar__contacts { gap: 8px; }
  .top-bar__item { font-size: 11.5px; gap: 5px; }

  .hero__title { font-size: clamp(28px, 4.5vw, 50px); }
  .hero__subtitle { font-size: clamp(14px, 1.8vw, 18px); }

  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 64px 0; }
  .section-header__title { font-size: clamp(22px, 3vw, 36px); }

  .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Webshop sidebar narrows */
  .shop-layout { grid-template-columns: 240px 1fr; gap: 24px; }
}

/* ────────────────────────────────────────────────────────────
   TABLET PORTRAIT  768px – 1023px
──────────────────────────────────────────────────────────── */
@media (max-width: 1023px) and (min-width: 768px) {
  .payment-banner { flex-wrap: wrap; gap: 16px; padding: 20px 24px; }
  .payment-banner__divider { display: none; }
  .payment-banner__item { flex: 1 1 calc(33% - 16px); min-width: 160px; justify-content: flex-start; }
}

/* ────────────────────────────────────────────────────────────
   MOBILE  < 768px
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Top bar */
  .top-bar { padding: 8px 0; }
  .top-bar__contacts { padding-right: 12px; }
  .top-bar__item:nth-child(3),
  .top-bar__item:nth-child(4) { display: none; } /* Sakrij manje važne kontakte */

  /* Header */
  .header__inner { height: 60px; gap: 12px; }
  .header__logo img { height: 36px; }
  .header__actions { gap: 8px; }
  .header__icon { width: 34px; height: 34px; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero__title { font-size: clamp(24px, 7vw, 40px); }
  .hero__subtitle { font-size: 14px; }
  .hero__actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header__title { font-size: clamp(20px, 5.5vw, 30px); }
  .section-header__sub { font-size: 14px; }

  /* Grids */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Product cards — kompaktnije na mobilnom */
  .product-card__name { font-size: 13px; }
  .product-card__price { font-size: 16px; }
  .product-card__trust { padding: 5px 10px 8px; }
  .trust-delivery { font-size: 9px; }
  .pil { height: 14px; }
  .pil svg { height: 14px; }

  /* Stats bar */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-bar__number { font-size: 28px; }

  /* Payment banner */
  .payment-banner { flex-direction: column; align-items: stretch; padding: 16px; gap: 0; }
  .payment-banner__divider { display: none; }
  .payment-banner__item { flex: none; padding: 12px 8px; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .payment-banner__item:last-child { border-bottom: none; }
  .payment-banner__label { white-space: nowrap; font-size: 12px; }

  /* CTA Banner */
  .cta-banner-new__inner { padding: 48px 0; }
  .cta-banner-new__actions { flex-direction: column; width: 100%; }
  .btn--xl { padding: 14px 28px; font-size: 13px; }

  /* Visit strip */
  .visit-strip { padding: 40px 0; }
  .visit-strip__left { flex-direction: column; gap: 16px; }
  .visit-strip__icon { display: none; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer__gallery { grid-template-columns: repeat(2, 1fr); }

  /* WhatsApp button — manji na mobilnom */
}

/* ────────────────────────────────────────────────────────────
   SMALL MOBILE  < 480px
──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .top-bar__contacts { display: none; } /* Na malim mobilnim samo social + telefon */
  .top-bar__right { width: 100%; justify-content: space-between; }

  .hero { min-height: 400px; }
  .hero__title { font-size: clamp(22px, 8vw, 34px); }
  .hero__badge { font-size: 10px; padding: 6px 12px; }

  .grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .section-header__title { font-size: clamp(18px, 6vw, 26px); }

  .stats-bar { padding: 32px 0; }
  .stats-bar__number { font-size: 26px; }
  .stats-bar__label { font-size: 11px; }

  .btn { padding: 11px 20px; font-size: 12px; }
  .btn--lg { padding: 13px 24px; font-size: 13px; }

  .page-hero { padding: 40px 0; }
  .page-hero__title { font-size: clamp(22px, 7vw, 36px); }
}

/* ────────────────────────────────────────────────────────────
   WEBSHOP responsive
──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Sidebar postaje drawer na tabletu */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar-wrapper {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    z-index: 2000;
    width: 300px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    background: var(--white);
    padding: 16px;
    box-shadow: 4px 0 32px rgba(0,0,0,0.25);
  }
  .shop-sidebar-wrapper.open { transform: translateX(0); }
  .shop-filter-toggle { display: flex; } /* Prikaži dugme za filter */
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .shop-sort select { font-size: 12px; }
}
@media (max-width: 380px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────
   2K  1920px – 2559px  (refined)
──────────────────────────────────────────────────────────── */
@media (min-width: 1920px) {
  :root { --max-width: 1720px; }
  body { font-size: 17px; }
  .hero__title { font-size: clamp(52px, 3.8vw, 88px); }
  .hero__subtitle { font-size: clamp(17px, 1.2vw, 22px); }
  .section-header__title { font-size: clamp(28px, 2.2vw, 42px); }
  .section { padding: 120px 0; }
  .btn { padding: 15px 32px; font-size: 13.5px; }
  .btn--lg { padding: 19px 44px; font-size: 15px; }
}

/* ────────────────────────────────────────────────────────────
   2K  2560px – 3839px
──────────────────────────────────────────────────────────── */
@media (min-width: 2560px) {
  :root { --max-width: 2200px; }
  body { font-size: 19px; }
  .hero__title { font-size: clamp(64px, 4vw, 110px); }
  .section { padding: 160px 0; }
  .btn { padding: 18px 42px; font-size: 15px; }
  .btn--lg { padding: 22px 56px; font-size: 16px; }
  .section-title { font-size: clamp(36px, 3vw, 60px); }
}

/* ────────────────────────────────────────────────────────────
   4K  3840px+
──────────────────────────────────────────────────────────── */
@media (min-width: 3840px) {
  :root { --max-width: 3200px; }
  body { font-size: 24px; }
  .hero__title { font-size: clamp(80px, 3.5vw, 140px); }
  .section { padding: 220px 0; }
  .btn { padding: 22px 54px; font-size: 18px; }
  .btn--lg { padding: 28px 72px; font-size: 20px; }
  .section-title { font-size: clamp(48px, 3vw, 80px); }
  .header { height: 100px; }
  .header__inner { height: 100px; }
  .header__logo img { height: 64px; }
  .nav__link { font-size: 17px; padding: 12px 20px; }
}

/* ============================================
   MOBILE BOTTOM NAVBAR
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (max-width: 768px) {
  .mobile-nav { display: flex; }
  /* Footer upija visinu bottom nava — nema bijelog prostora */
  footer .footer__bottom,
  .footer .footer__bottom,
  .footer__bottom { padding-bottom: calc(16px + 64px) !important; }
  /* Hide desktop header register btn on mobile */
  .btn--register { display: none !important; }
}
.mobile-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  position: relative;
}
.mobile-nav__item svg {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
  flex-shrink: 0;
}
.mobile-nav__item:active svg {
  transform: scale(0.82);
}
.mobile-nav__item.active,
.mobile-nav__item:active {
  color: var(--white);
}
.mobile-nav__item.active svg {
  color: var(--red);
  filter: drop-shadow(0 0 6px rgba(211,47,47,0.5));
}
.mobile-nav__item.active .mobile-nav__label {
  color: var(--red);
}
.mobile-nav__label {
  font-size: 9px;
  line-height: 1;
  transition: color 0.2s ease;
}
/* Cart badge on mobile nav */
.mobile-nav__item .mobile-cart-badge {
  display: none;
  position: absolute;
  top: 6px;
  right: calc(50% - 14px);
  background: var(--red);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-family: var(--font-heading);
  pointer-events: none;
}
/* Active indicator line */
.mobile-nav__item.active::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--red);
  border-radius: 0 0 2px 2px;
}

/* ============================================
   MOBILE BUTTON FIXES
   ============================================ */
@media (max-width: 768px) {
  .btn { padding: 12px 22px; font-size: 12.5px; letter-spacing: 0.06em; }
  .btn--lg { padding: 14px 28px; font-size: 13px; }
  .btn--sm { padding: 8px 14px; font-size: 11px; }
  .btn--xl { padding: 14px 26px; font-size: 13px; }
  /* Hero buttons — stacked on small screens */
  .hero__actions { gap: 10px; }
  .hero__actions .btn { flex: 1 1 140px; justify-content: center; min-width: 0; }
  /* CTA section buttons */
  .cta-banner__actions { gap: 10px; width: 100%; }
  .cta-banner__actions .btn { flex: 1; justify-content: center; }
  .cta-banner-new__actions { flex-direction: column; gap: 10px; }
  .cta-banner-new__actions .btn { width: 100%; justify-content: center; }
  /* Visit strip */
  .visit-strip__actions { flex-wrap: wrap; gap: 8px; }
  .visit-strip__actions .btn { flex: 1 1 140px; justify-content: center; }
}
@media (max-width: 480px) {
  .btn { padding: 11px 18px; font-size: 12px; }
  .btn--lg { padding: 13px 22px; font-size: 12.5px; }
  /* Full-width buttons in forms */
  .checkout-form .btn, .auth-box .btn { width: 100%; justify-content: center; }
}

/* ============================================
   FOOTER PAYMENT STRIP
   ============================================ */
.footer__payment {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  background: rgba(0,0,0,0.3);
}
.footer__payment-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__payment-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__payment-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.footer__payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-icon {
  height: 24px;
  width: auto;
  border-radius: 3px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.pay-icon:hover { opacity: 1; }
.pay-icon--monri, .pay-icon--cod, .pay-icon--ssl {
  display: flex;
  align-items: center;
}
.pay-icon--monri svg, .pay-icon--cod svg, .pay-icon--ssl svg {
  height: 24px;
  width: auto;
  border-radius: 3px;
}
.footer__payment-monri {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  flex-shrink: 0;
}
.footer__payment-monri strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer__payment-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__payment-monri { font-size: 11px; }
}
@media (max-width: 480px) {
  .footer__payment-icons { gap: 6px; }
  .pay-icon { height: 20px; }
}
/* Large screens */
@media (min-width: 2560px) {
  .footer__payment-label { font-size: 13px; }
  .pay-icon { height: 32px; }
  .footer__payment-monri { font-size: 16px; }
}
@media (min-width: 3840px) {
  .pay-icon { height: 42px; }
  .footer__payment-monri { font-size: 20px; gap: 12px; }
}

/* ============================================
   GLOBAL MOBILE BUTTON OVERRIDES  
   ============================================ */
@media (max-width: 767px) {
  /* Standard buttons - compact but not tiny */
  .btn { padding: 11px 20px; font-size: 12.5px; letter-spacing: 0.05em; }
  .btn--lg { padding: 13px 24px; font-size: 13px; }
  .btn--xl { padding: 13px 22px; font-size: 13px; }
  .btn--sm { padding: 8px 14px; font-size: 11.5px; }
  /* Hero buttons side by side */
  .hero__actions { flex-wrap: nowrap; gap: 8px; }
  .hero__actions .btn { flex: 1; justify-content: center; min-width: 0; padding: 12px 14px; font-size: 12px; }
  /* Section CTAs */
  .section .btn { padding: 11px 20px; font-size: 12.5px; }
}
@media (max-width: 400px) {
  .hero__actions .btn { padding: 10px 10px; font-size: 11px; gap: 4px; }
  .hero__actions .btn svg { display: none; }
}

/* ============================================================
   PRODUCT PAGE — PAYMENT BUTTONS
   ============================================================ */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

/* Puna širina (košarica + WhatsApp) */
.btn--cart {
  width: 100%;
  justify-content: center;
  background: var(--red);
  color: #fff;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn--cart:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--cart:disabled { background: #aaa; cursor: not-allowed; transform: none; }

/* 2-kolona mreža za plaćanje */
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Baza za sve pay gumbe */
.btn--pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
  height: 50px;
}
.btn--pay:hover { opacity: 0.88; transform: translateY(-1px); }

/* Pouzećem */
.btn--pouzecem {
  background: var(--dark-3);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.btn--pouzecem:hover { background: #2d2d2d; border-color: rgba(255,255,255,0.2); }

/* Kartica (Monri) */
.btn--kartica {
  background: #1a237e;
  color: #fff;
}
.btn--kartica:hover { background: #283593; }

/* Apple Pay */
.btn--apple-pay {
  background: #000;
  color: #fff;
  padding: 0 16px;
}

/* Google Pay */
.btn--google-pay {
  background: #fff;
  color: #3c4043;
  border: 1.5px solid #dadce0;
}
.btn--google-pay:hover { background: #f8f9fa; }

/* WhatsApp */
.btn--whatsapp-order {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn--whatsapp-order:hover { background: #1ebe5d; transform: translateY(-1px); }

/* Separator */
.pay-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.pay-separator::before, .pay-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .pay-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .btn--pay { font-size: 11.5px; padding: 11px 8px; height: 46px; gap: 5px; }
  .btn--cart { font-size: 14px; padding: 14px 20px; }
  .btn--whatsapp-order { font-size: 13px; padding: 13px 18px; }
}
@media (max-width: 360px) {
  .pay-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1600px) {
  .btn--pay { font-size: 14px; height: 56px; }
  .btn--cart { font-size: 16px; padding: 18px 28px; }
}
@media (min-width: 2560px) {
  .btn--pay { font-size: 17px; height: 68px; border-radius: 10px; }
  .btn--cart { font-size: 20px; padding: 22px 36px; border-radius: 10px; }
  .btn--whatsapp-order { font-size: 18px; padding: 18px 28px; border-radius: 10px; }
  .pay-grid { gap: 14px; }
  .product-actions { gap: 14px; }
}
@media (min-width: 3840px) {
  .btn--pay { font-size: 22px; height: 88px; border-radius: 14px; gap: 12px; }
  .btn--cart { font-size: 26px; padding: 28px 48px; border-radius: 14px; }
  .btn--whatsapp-order { font-size: 24px; padding: 24px 40px; border-radius: 14px; }
  .pay-grid { gap: 20px; }
  .product-actions { gap: 20px; }
}

/* ── Google Pay logo (HTML tekst, bez SVG) ── */
.gpay-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}
.btn--google-pay { overflow: visible; }

/* ── Related grid produkt kartice ── */
#related-grid .product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
#related-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ============================================================
   PRODUCT PAGES — FULL RESPONSIVE (sve veličine)
   ============================================================ */

/* ── Baza (desktop > 1024px) ── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
}
.product-gallery { position: sticky; top: 96px; }
.product-gallery__main {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 24px;
  transition: transform 0.4s ease;
}
.product-gallery__main:hover img { transform: scale(1.04); }
.product-price { font-size: clamp(26px, 3vw, 40px); }
.product-title { font-size: clamp(26px, 4vw, 42px); }

/* ── Tablet landscape (< 1200px) ── */
@media (max-width: 1200px) {
  .product-layout { gap: 40px; }
}

/* ── Tablet portrait (< 1024px) ── */
@media (max-width: 1024px) {
  .product-layout { gap: 32px; padding: 48px 0; }
  .product-gallery { top: 80px; }
  /* Related: 3 kolone */
  .related .grid-4 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ── Tablet mali / veliki mobitel (< 768px) ── */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }
  .product-gallery { position: static; }
  .product-gallery__main { max-width: 420px; margin: 0 auto; }

  .product-price { font-size: 30px; }
  .product-title { font-size: 28px; margin-bottom: 16px; }
  .product-stock { margin-bottom: 20px; }

  .spec-table td { font-size: 13px; padding: 10px 0; }

  /* Payment buttons — stack lijepo */
  .product-actions { gap: 8px; }
  .btn--cart { padding: 14px 20px; font-size: 14px; }
  .pay-grid { gap: 8px; }
  .btn--pay { font-size: 12px; padding: 11px 8px; height: 46px; }
  .btn--whatsapp-order { font-size: 13px; padding: 13px 18px; }
  .gpay-logo { font-size: 13px; }

  /* Related: 2 kolone */
  .related { padding: 40px 0; }
  .related .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .related .section-header { margin-bottom: 24px !important; }

  /* Product note */
  .product-note { font-size: 12px; padding: 12px; }
}

/* ── Mobitel (< 600px) ── */
@media (max-width: 600px) {
  .product-gallery__main { max-width: 100%; }
  .product-price { font-size: 26px; }
  .product-title { font-size: 24px; }

  .btn--pay { font-size: 11.5px; padding: 10px 6px; height: 44px; gap: 4px; }
  .btn--cart { font-size: 13px; padding: 13px 16px; }
  .gpay-logo { font-size: 12px; }

  .spec-table td { font-size: 12px; padding: 9px 0; }
}

/* ── Mali mobitel (< 480px) ── */
@media (max-width: 480px) {
  .product-layout { padding: 20px 0; gap: 20px; }
  .product-price { font-size: 24px; }
  .product-title { font-size: 22px; }

  /* Google/Apple Pay — manji tekst */
  .gpay-logo { font-size: 11px; }
  .btn--pay { height: 42px; font-size: 11px; padding: 8px 6px; gap: 4px; }
  .btn--pay svg { width: 15px; height: 15px; flex-shrink: 0; }

  /* Related: 2 kolone kompaktno */
  .related .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .related .product-card__name { font-size: 13px; }
  .related .product-card__price { font-size: 14px; }
  .related .product-card__body { padding: 10px; }
  .related .product-card__specs span { font-size: 10px; }

  .breadcrumb-nav { font-size: 11px; }
}

/* ── Jako mali mobitel (< 380px) ── */
@media (max-width: 380px) {
  .pay-grid { grid-template-columns: 1fr; }
  .btn--pay { height: 46px; font-size: 13px; }
  .related .grid-4 { grid-template-columns: 1fr; }
  .product-title { font-size: 20px; }
  .product-price { font-size: 22px; }
}

/* ── Veliki desktop (≥ 1600px) ── */
@media (min-width: 1600px) {
  .product-layout { gap: 72px; padding: 80px 0; }
  .product-gallery { top: 108px; }
  .product-gallery__main img { padding: 32px; }
  .product-price { font-size: 44px; }
  .spec-table td { font-size: 16px; padding: 14px 0; }
  .related .grid-4 { gap: 28px; }
  .btn--cart { font-size: 17px; padding: 18px 28px; }
  .btn--pay { height: 56px; font-size: 14px; }
  .gpay-logo { font-size: 15px; }
  .btn--whatsapp-order { font-size: 15px; padding: 16px 28px; }
}

/* ── 2K / QHD (≥ 2560px) ── */
@media (min-width: 2560px) {
  .product-layout { gap: 96px; padding: 100px 0; }
  .product-gallery { top: 120px; }
  .product-gallery__main img { padding: 40px; }
  .product-price { font-size: 56px; }
  .product-title { font-size: 56px; }
  .product-badge { font-size: 13px; padding: 6px 16px; }
  .spec-table td { font-size: 18px; padding: 16px 0; }
  .product-note { font-size: 16px; padding: 20px; }
  .related { padding: 96px 0; }
  .related .grid-4 { gap: 36px; }
  .related .product-card__name { font-size: 18px; }
  .related .product-card__price { font-size: 20px; }
  .btn--cart { font-size: 20px; padding: 22px 36px; border-radius: 10px; }
  .btn--pay { height: 68px; font-size: 17px; border-radius: 10px; }
  .gpay-logo { font-size: 17px; }
  .btn--whatsapp-order { font-size: 18px; padding: 20px 36px; border-radius: 10px; }
  .pay-grid { gap: 14px; }
  .product-actions { gap: 14px; }
}

/* ── 4K / UHD (≥ 3840px) ── */
@media (min-width: 3840px) {
  .product-layout { gap: 140px; padding: 140px 0; }
  .product-gallery { top: 160px; }
  .product-gallery__main img { padding: 56px; }
  .product-price { font-size: 76px; }
  .product-title { font-size: 76px; }
  .product-badge { font-size: 17px; padding: 8px 22px; }
  .spec-table td { font-size: 24px; padding: 20px 0; }
  .product-note { font-size: 21px; padding: 28px; }
  .related { padding: 130px 0; }
  .related .grid-4 { gap: 48px; }
  .related .product-card__name { font-size: 24px; }
  .related .product-card__price { font-size: 28px; }
  .btn--cart { font-size: 26px; padding: 28px 48px; border-radius: 14px; }
  .btn--pay { height: 90px; font-size: 22px; border-radius: 14px; gap: 12px; }
  .btn--pay svg { width: 26px; height: 26px; }
  .gpay-logo { font-size: 22px; }
  .btn--whatsapp-order { font-size: 24px; padding: 26px 48px; border-radius: 14px; }
  .pay-grid { gap: 20px; }
  .product-actions { gap: 20px; }
}

/* ── PAYMENT BUTTONS MOBILE FIX ── */
@media (max-width: 600px) {
  .product-actions { gap: 8px; }

  .btn--cart {
    font-size: 14px;
    padding: 14px 16px;
    height: auto;
    white-space: normal;
    text-align: center;
  }

  .pay-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn--pay {
    font-size: 11px;
    padding: 10px 6px;
    height: auto;
    min-height: 48px;
    white-space: normal;
    text-align: center;
    gap: 4px;
    flex-direction: column;
    line-height: 1.2;
  }

  .btn--pay svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .btn--apple-pay svg {
    width: 44px;
    height: 18px;
  }

  .gpay-logo {
    font-size: 12px;
  }

  .btn--whatsapp-order {
    font-size: 13px;
    padding: 13px 14px;
    white-space: normal;
    height: auto;
  }

  .pay-separator {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .pay-grid {
    grid-template-columns: 1fr;
  }

  .btn--pay {
    flex-direction: row;
    font-size: 13px;
    min-height: 46px;
    height: auto;
    padding: 12px 14px;
  }

  .btn--cart {
    font-size: 14px;
  }
}
