/* ============================================================
   Montenegro Pack – RETAIL microsite (zajednički stil)
   Index + brend strane (shark, mindo, juss, coolwave, lila, delizzia)
   ============================================================ */
:root {
  --accent: #12a3a8;
  --accent-dark: #0c7c80;
  --slate: #2b3947;
  --muted: #6b7a89;
  --line: #e6edf1;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--slate);
  background: #f7f9fb;
}
h1, h2, h3, h4, h5 { font-family: "Poppins", sans-serif; }

/* ===== INDEX HERO (carousel) ===== */
.retail-hero { position: relative; }
.retail-hero .carousel-item {
  height: 70vh;
  min-height: 440px;
  background-size: cover;
  background-position: center;
}
.carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(20,30,40,.7), rgba(20,30,40,.5));
}
.carousel-caption {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; width: 100%; max-width: 760px; padding: 0 20px;
}
.carousel-caption .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: #8fe3e6; margin-bottom: 14px;
}
.carousel-caption h1 { font-size: clamp(30px, 5vw, 56px); font-weight: 700; margin: 0; }
.carousel-caption p { font-size: clamp(16px, 2.5vw, 21px); margin: 16px auto 0; color: rgba(255,255,255,.9); }
.carousel-caption .accent-bar { width: 64px; height: 4px; border-radius: 4px; background: var(--accent); margin: 22px auto 0; }

/* ===== SECTION HEAD ===== */
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-head h2 { font-size: 36px; font-weight: 700; color: var(--slate); margin: 0 0 12px; }
.section-head p { color: var(--muted); margin: 0; }

/* ===== BRAND CARDS (index grid) ===== */
.brand-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; text-decoration: none; color: var(--slate);
  box-shadow: 0 6px 18px -10px rgba(43,57,71,.25);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.brand-card:hover {
  transform: translateY(-8px); border-color: transparent;
  box-shadow: 0 26px 44px -18px rgba(18,163,168,.4); color: var(--slate);
}
.brand-card .logo-wrap {
  height: 170px; display: flex; align-items: center; justify-content: center;
  padding: 26px; background: linear-gradient(135deg, #f2f7f9 0%, #e8f1f4 100%);
}
.brand-card .logo-wrap img { max-height: 110px; max-width: 82%; object-fit: contain; transition: transform .5s ease; }
.brand-card:hover .logo-wrap img { transform: scale(1.06); }
.brand-card .card-body { flex: 1; text-align: center; padding: 22px 20px 26px; }
.brand-card h5 { font-weight: 600; margin: 0 0 8px; font-size: 18px; }
.brand-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ===== BRAND PAGE HERO ===== */
.brand-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: center; text-align: center; color: #fff;
  background-size: cover; background-position: center;
}
.brand-hero .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: #8fe3e6; margin-bottom: 14px;
}
.brand-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; margin: 0; }
.brand-hero p.lead { font-size: clamp(16px, 2.5vw, 21px); margin: 14px 0 0; color: rgba(255,255,255,.9); }
.brand-hero .accent-bar { width: 64px; height: 4px; border-radius: 4px; background: var(--accent); margin: 22px auto 0; }

/* ===== BRAND CONTENT ===== */
.brand-content h3 {
  font-size: 26px; font-weight: 700; color: var(--slate); margin: 0 0 18px;
  position: relative; padding-bottom: 14px;
}
.brand-content h3::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 48px; height: 3px; border-radius: 3px; background: var(--accent);
}
.brand-content p { color: var(--muted); line-height: 1.85; }
.brand-content p strong { color: var(--slate); }

.ig-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 22px;
  padding: 11px 22px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--accent-dark); text-decoration: none; font-weight: 600;
  font-family: "Poppins", sans-serif; background: #fff;
  transition: border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.ig-link i { font-size: 22px; }
.ig-link:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(18,163,168,.5); color: var(--accent-dark);
}

/* ===== GALLERY ===== */
.gallery .img-box {
  width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 16px;
  box-shadow: 0 8px 22px -12px rgba(43,57,71,.35);
}
.gallery .img-box img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gallery .img-box:hover img { transform: scale(1.06); }

/* ===== CATALOG CARD (Lila PDF) ===== */
.catalog-card {
  display: flex; align-items: center; gap: 20px; padding: 24px;
  border-radius: 16px; text-decoration: none; color: #fff;
  background: linear-gradient(120deg, var(--accent-dark) 0%, var(--accent) 100%);
  box-shadow: 0 14px 30px -12px rgba(18,163,168,.55);
  transition: transform .3s ease, box-shadow .3s ease;
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 42px -14px rgba(18,163,168,.65); color: #fff; }
.catalog-icon { font-size: 48px; line-height: 1; }
.catalog-text h4 { margin: 0; font-weight: 600; font-size: 18px; }
.catalog-text p { margin: 4px 0 0; opacity: .9; font-size: 14px; }
.catalog-action { margin-left: auto; font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }

/* ===== CTA ===== */
.cta-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band h3 { font-weight: 700; color: var(--slate); }
.btn-accent {
  background: var(--accent); color: #fff; border: 0; border-radius: 999px;
  padding: 13px 34px; font-weight: 600; font-family: "Poppins", sans-serif;
  transition: background .25s ease, transform .2s ease;
}
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer.retail-footer { background: var(--slate); color: #b7c2cc; padding: 28px 0; }
footer.retail-footer strong { color: #fff; }
footer.retail-footer a { color: var(--accent); text-decoration: none; }
footer.retail-footer a:hover { text-decoration: underline; }

/* ===== RESPONSIVE / A11Y ===== */
@media (max-width: 768px) {
  .retail-hero .carousel-item { height: 60vh; }
  .brand-hero { min-height: 46vh; }
  .section-head h2 { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-card, .brand-card .logo-wrap img, .gallery .img-box img,
  .ig-link, .btn-accent, .catalog-card { transition: none; }
}