* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}


/* === Badge za broj artikala u košarici (globalno) === */
.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: none;           /* cart-counter.js ga pali/gasi */
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}

html {
  scroll-behavior: smooth;
}

.shop-anchor {
  scroll-margin-top: 100px; /* prilagodi visini tvog gornjeg headera */
}

/* ===============================
   O meni – povećani fontovi
   =============================== */

/* Veliki naslov sekcije */
.section-big {
  font-size: 2.4rem !important;
  font-weight: 700;
}

/* Eyebrow / mali naslov iznad */
.about-content h4 {
  font-size: 1.15rem !important;
  letter-spacing: 0.1em;
}

/* Podnaslovi u blokovima */
.about-content h3 {
  font-size: 1.55rem !important;
  font-weight: 700;
}

/* Glavni tekst */
.about-content p {
  font-size: 1.12rem !important;
  line-height: 1.8;
}

/* Tekst ispod velikog naslova na vrhu */
.about-heading p {
  font-size: 1.1rem !important;
  line-height: 1.8;
}

/* Malo razdvoji blokove na desktopu */
.about-layout {
  gap: 4rem !important;
}


.footer {
  text-align: center;
  padding: 0.8rem 0 1rem;   /* unutarnji razmak u footeru */
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 4.8rem;     /* ↙️ prostor za donju navigaciju */
}
 /* Centriraj naslov i info / praznu poruku na stranici favorita */
  .favorites-page h1,
  .favorites-page .favorites-info,
  .favorites-page .favorites-empty {
    text-align: center;
  }

  .page-wrapper {
  padding: 1.5rem 1rem;
}

.reklamacije-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  max-width: 900px;
  margin: 0 auto;
}

.reklamacije-box ul {
  padding-left: 1.2rem;   /* dovoljno da se vidi točkica, ali ne izlazi */
  margin-left: 0;         /* reset defaulta */
}

.reklamacije-box li {
  padding-left: 0.2rem;   /* lagano poravnanje */
  line-height: 1.55;
  color: #444;
}

.reklamacije-box ul,
.reklamacije-box ol {
  padding-left: 1.2rem;   /* uredan, moderan offset */
  margin-left: 0;         /* makni ogromni default margin */
}

.reklamacije-box li {
  padding-left: 0.2rem;
  line-height: 1.55;
  color: #444;
}

/* === COOKIE BANNER – UNIKATLAROSA === */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.12);
  padding: 1rem 1.25rem;
  display: none; /* JS po potrebi postavi na block */
  font-size: 0.95rem;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner__title {
  font-weight: 600;
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.cookie-banner__text {
  margin: 0;
  line-height: 1.45;
}

.cookie-banner__links {
  margin: 0.35rem 0 0;
}

.cookie-banner__links a {
  color: #d25a7a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Gumbi */

.cookie-btn {
  cursor: pointer;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  border: 1px solid #d25a7a;
  background: #fff;
  color: #d25a7a;
  flex: 0 0 auto;
  transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease;
}

.cookie-btn--primary {
  background: #d25a7a;
  color: #fff;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* "Upravljanje postavkama" – da izgleda kao link, ne kao ružan button */

.cookie-banner__preferences {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.9rem;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.cookie-banner__preferences:hover {
  color: #d25a7a;
}

/* Layout na većim ekranima */

@media (min-width: 720px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__content {
    max-width: 70%;
  }

  .cookie-banner__actions {
    align-items: flex-end;
  }
}
