/* ================================================
   Klanica Radić — Premium Redesign v2
   Fonts: Playfair Display (headings) + Inter (body)
   Brand: #C00020 kao akcent, tamni i krem tonovi
   ================================================ */

:root {
  --red:    #C00020;
  --red-dk: #95001a;
  --black:  #080808;
  --dark:   #111111;
  --dark2:  #1c1c1c;
  --dark3:  #2a2a2a;
  --cream:  #F7F3EE;
  --cream2: #EDE8E1;
  --white:  #FFFFFF;
  --text:   #1a1a1a;
  --muted:  #777777;
  --bd-lgt: rgba(0,0,0,0.10);
  --bd-drk: rgba(255,255,255,0.08);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────── */
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ── Utility ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.container--wide { max-width: 1400px; }

/* ── TAG line (small label above titles) ─────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}
.tag--center { justify-content: center; }
.tag--center::before { display: none; }
.tag--white { color: rgba(255,255,255,0.55); }
.tag--white::before { background: rgba(255,255,255,0.3); }

/* ── Section headings ───────────────────────────── */
.heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.heading--xl   { font-size: clamp(2.6rem, 5vw, 4rem); }
.heading--lg   { font-size: clamp(2rem, 3.5vw, 3rem); }
.heading--md   { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.heading--white { color: #fff; }
.heading--red   { color: var(--red); }
.heading em  { font-style: italic; color: var(--red); }

/* ── Body text ──────────────────────────────────── */
.body-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
}
.body-text + .body-text { margin-top: 1rem; }
.body-text--white { color: rgba(255,255,255,0.55); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn--red {
  background: var(--red);
  color: #fff;
}
.btn--red:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,0,32,0.35);
}
.btn--dark {
  background: var(--dark);
  color: #fff;
}
.btn--dark:hover {
  background: var(--dark3);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.2);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}
.btn i { font-size: 0.75rem; }

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
  background: var(--cream2);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.73rem;
  color: var(--muted);
  transition: color 0.2s;
}
.topbar-link i { color: var(--red); font-size: 0.65rem; }
.topbar-link:hover { color: var(--dark); }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--cream2);
  transition: box-shadow 0.3s;
}
.nav.is-scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.07); }

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo { height: 44px; }

.nav-mobile-only { display: none; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-menu a {
  display: flex;
  align-items: center;
  padding: 0.4rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  border-radius: 0;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-menu a:hover { color: var(--red); background: none; }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.is-active { color: var(--red); }
.nav-menu a.is-active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-cta:hover { background: var(--red-dk); box-shadow: 0 4px 16px rgba(192,0,32,0.3); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: 0.3s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 0 7rem;
}

/* Giant background watermark */
.hero::before {
  content: 'Radić';
  font-family: 'Playfair Display', serif;
  font-size: 32vw;
  font-weight: 700;
  color: var(--red);
  opacity: 0.05;
  position: absolute;
  right: -2vw;
  bottom: -5vw;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

/* Thin red vertical accent left edge */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  background: var(--red);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--red);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 2.25rem;
}
.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* RIGHT: floating product visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Radial red glow behind product */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,0,32,0.10) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-product-img {
  width: 88%;
  max-width: 520px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.22));
  animation: float1 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

/* ================================================
   STATS BAR
   ================================================ */
.stats {
  background: #1E1A17;
  border-top: 3px solid var(--red);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  padding: 8rem 0;
  background: var(--white);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 6rem;
  align-items: center;
}

/* left: editorial text */
.about-left .tag { margin-bottom: 0.75rem; }
.about-left .heading { margin-bottom: 1.5rem; }
.about-left .body-text { margin-bottom: 0.9rem; }

.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-feat {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.about-feat-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.about-feat-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.about-feat-body p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* right: clean image */
.about-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.11);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.88);
  transition: transform 0.9s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.04);
}

/* ================================================
   PRODUCTS PREVIEW
   ================================================ */
.products {
  padding: 8rem 0;
  background: var(--cream);
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream2);
  gap: 2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}
.prod-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
}
.prod-card-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream2);
}
.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.9);
  transition: transform 0.7s ease;
}
.prod-card:hover .prod-card-img {
  transform: scale(1.06);
}
.prod-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.prod-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  flex: 1;
}
.prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.1rem;
  transition: gap 0.3s ease;
}
.prod-card:hover .prod-card-link { gap: 0.65rem; }
.prod-card-link i { font-size: 0.6rem; }

.products-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream2);
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--red);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'RADIĆ';
  font-family: 'Playfair Display', serif;
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}
.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-band-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.cta-band-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ================================================
   CATALOG
   ================================================ */
.catalog {
  padding: 8rem 0;
  position: relative;
}
.catalog-bg {
  position: absolute;
  inset: 0;
  background: url('assets/front/images/subscribe-bg.webp') center / cover no-repeat;
}
.catalog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.82);
}
.catalog .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.catalog-left .tag--white { color: rgba(255,255,255,0.4); }
.catalog-left .tag--white::before { background: rgba(255,255,255,0.2); }
.catalog-left .heading--white { margin-bottom: 1.25rem; }
.catalog-left .body-text--white { margin-bottom: 2.5rem; }

.catalog-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-icon-wrap {
  width: 200px;
  height: 200px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.catalog-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(192,0,32,0.3);
  border-radius: 50%;
}
.catalog-icon-wrap i {
  font-size: 4rem;
  color: var(--red);
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
  padding: 8rem 0;
  background: var(--cream);
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 6rem;
  align-items: start;
}

/* left: info */
.contact-info .tag { margin-bottom: 0.75rem; }
.contact-info .heading { color: var(--dark); margin-bottom: 1.5rem; }

/* main phone CTA */
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  text-decoration: none;
  padding: 0.85rem 1.5rem 0.85rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--cream2);
  border-radius: 50px;
  margin-bottom: 2.25rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.contact-phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.contact-phone-icon i {
  color: #fff;
  font-size: 0.82rem;
}
.contact-phone:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px rgba(192,0,32,0.22);
}
.contact-phone:hover .contact-phone-icon {
  background: rgba(255,255,255,0.22);
  transform: rotate(-12deg) scale(1.05);
}

/* contact items list */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.25rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream2);
  transition: background 0.18s;
}
.contact-item:first-child {
  border-top: 1px solid var(--cream2);
}

/* icon box */
.contact-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-icon-wrap i {
  font-size: 0.75rem;
  color: var(--red);
}
.contact-item:hover .contact-icon-wrap {
  border-color: var(--red);
  box-shadow: 0 2px 10px rgba(192,0,32,0.12);
}

.contact-body { flex: 1; }
.contact-body h4 {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
  line-height: 1;
}
.contact-body p {
  font-size: 0.875rem;
  color: var(--dark);
  line-height: 1.6;
}
.contact-body a { color: var(--dark); text-decoration: none; }
.contact-body a:hover { color: var(--red); }

/* social row */
.contact-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.contact-social span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-social-links {
  display: flex;
  gap: 0.5rem;
}
.social-btn {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--cream2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  transition: all 0.2s;
  background: var(--cream);
  text-decoration: none;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* right: form card */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}
/* floating label */
.form-label {
  position: absolute;
  top: 0.95rem;
  left: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  transition: all 0.2s ease;
  pointer-events: none;
  background: var(--white);
  padding: 0 0.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.5rem;
  font-size: 0.6rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* static label for textarea */
.form-label--static {
  position: static;
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  background: none;
  padding: 0;
}
.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--cream2);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus { border-color: var(--red); }
textarea.form-input { resize: vertical; min-height: 130px; line-height: 1.65; }
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.btn-submit:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(192,0,32,0.3);
}
.form-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.9rem; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: #f0faf2;
  border: 1.5px solid #4caf50;
  color: #2e7d32;
  padding: 0.9rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.form-success.show { display: flex; }

/* ================================================
   MAP
   ================================================ */
.map-wrap { height: 440px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--cream2);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--bd-drk);
  margin-bottom: 2rem;
}
.footer-brand-logo {
  height: 30px;
  filter: none;
  opacity: 0.8;
  margin-bottom: 1.25rem;
}
.footer-brand-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.footer-socials { display: flex; gap: 0.6rem; }
.footer-soc {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  transition: 0.2s;
}
.footer-soc:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }

.footer-contact-items { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-contact-row i { color: var(--red); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a { color: var(--muted); transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream2);
}

/* ================================================
   PAGE HEADER (subpages)
   ================================================ */
.page-hero {
  height: 52vh;
  min-height: 380px;
  max-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/front/images/slajder-bg.webp') center / cover no-repeat;
  transform: scale(1.03);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.50) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 3.5rem;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.40); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb i { font-size: 0.55rem; }

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--red); }
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.50);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.6;
}

/* ================================================
   PRODUCTS PAGE — filter grid
   ================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bd-lgt);
}
.filter-pill {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--cream2);
  background: var(--white);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Inter', sans-serif;
}
.filter-pill:hover { border-color: var(--red); color: var(--red); }
.filter-pill.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.prod-item { display: block; }
.prod-item.is-hidden { display: none; }

.prod-page-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 2px;
  overflow: hidden;
  display: block;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.prod-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--red);
}
.prod-page-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
  display: block;
}
.prod-page-body {
  padding: 1rem 1.1rem 1.2rem;
  border-top: 1px solid var(--cream2);
}
.prod-page-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.prod-page-arrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.prod-page-arrow i { font-size: 0.6rem; }

/* ================================================
   STORES PAGE
   ================================================ */
.stores-section { padding: 7rem 0; background: var(--white); }
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.store-card {
  border: 1px solid var(--cream2);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.store-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  border-color: var(--red);
}
.store-card-top {
  background: var(--dark);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.store-card-top::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--red);
  opacity: 0.15;
  border-radius: 50% 0 0 0;
}
.store-card-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.store-card-top p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.store-card-body { padding: 1.75rem 2rem; }
.store-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.store-row:last-child { margin-bottom: 0; }
.store-row i { color: var(--red); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }

/* ================================================
   PRODUCTION PAGE
   ================================================ */
.process-section { padding: 7rem 0; background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
}
.process-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  border-right: 1px solid var(--cream2);
  border-bottom: 1px solid var(--cream2);
  transition: background 0.3s;
}
.process-card:hover { background: var(--dark); }
.process-card:nth-child(3n) { border-right: none; }
.process-card:nth-child(n+4) { border-bottom: none; }

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.08;
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.process-icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.process-card:hover .process-icon { background: var(--red); color: #fff; }
.process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.process-card:hover h3 { color: #fff; }
.process-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
  transition: color 0.3s;
}
.process-card:hover p { color: rgba(255,255,255,0.45); }

.cert-section { padding: 4rem 0; background: var(--dark); }
.cert-section .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.cert-icon {
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(192,0,32,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 2rem;
  flex-shrink: 0;
}
.cert-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cert-text p { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.7; }

/* ================================================
   ABOUT BADGE (Producija page)
   ================================================ */
.about-right { position: relative; }
.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--red);
  color: #fff;
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(192,0,32,0.28);
  z-index: 2;
}
.about-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-badge-lbl {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
  line-height: 1;
}

/* ================================================
   SECTION INTRO + FEATURE CARDS (subpages)
   ================================================ */
.section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.section-intro .heading { margin-bottom: 0; }
.section-intro .body-text { margin-top: 1rem; }

.features-section { padding: 7rem 0; }
.features-section--white { background: var(--white); }
.features-section--cream  { background: var(--cream); }

.feature-grid { display: grid; gap: 1.75rem; }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1.5px solid var(--cream2);
  border-radius: 12px;
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
  box-shadow: 0 14px 42px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: rgba(192,0,32,0.18);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.feature-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,8,8,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: lbIn 0.22s ease;
}
.lb[hidden] { display: none; }
@keyframes lbIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 780px);
  width: 100%;
}
.lb-img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: lbImgIn 0.25s ease;
}
@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-caption {
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  text-align: center;
  letter-spacing: 0.01em;
}
.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 9001;
}
.lb-close:hover { background: var(--red); border-color: var(--red); }
.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s;
  z-index: 9001;
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-prev:hover, .lb-next:hover { background: var(--red); border-color: var(--red); }
/* Na mobilnom sakrij arrows — swipe je dovoljan */
@media (max-width: 600px) {
  .lb-prev, .lb-next { display: none; }
  .lb-img { max-height: 72vh; }
}

/* Cursor pointer na kartici */
.prod-page-card { cursor: pointer; }

/* ================================================
   BACK TO TOP
   ================================================ */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.35s;
  box-shadow: 0 6px 20px rgba(192,0,32,0.4);
}
.btt.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { background: var(--dark); }

/* ================================================
   RESPONSIVE
   ================================================ */

/* ── 1024px: Large tablet ──────────────────────── */
@media (max-width: 1024px) {
  .about .container  { gap: 4rem; }
  .catalog .container { gap: 4rem; }
  .products-page-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 900px: Tablet / large phone landscape ─────── */
@media (max-width: 900px) {
  /* Sekcije — smanji vertical padding */
  .about, .products, .catalog, .contact { padding: 5.5rem 0; }
  .stores-section, .process-section, .features-section { padding: 5rem 0; }

  /* Hero */
  .hero { padding: 7rem 0 5rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-visual { display: none; }
  .hero::after { display: none; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }

  /* About */
  .about .container { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .about-badge { display: none; }

  /* Products homepage grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-header { flex-wrap: wrap; gap: 1rem; }

  /* CTA band */
  .cta-band { padding: 4rem 0; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  /* Catalog */
  .catalog .container { grid-template-columns: 1fr; }
  .catalog-visual { display: none; }

  /* Contact */
  .contact .container { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Stats */
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 2.5rem 1.5rem; }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Subpages */
  .stores-grid  { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .products-page-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px: Phone landscape / large phone portrait  */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 1.5rem; }

  /* Topbar — sakrij na mobaju (uštedi prostor) */
  .topbar { display: none; }

  /* Nav — hamburger */
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--cream2);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    z-index: 998;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    border-radius: 0;
    padding: 0.9rem 1.5rem;
    font-size: 0.78rem;
    border-bottom: 1px solid var(--cream2);
  }
  .nav-menu li:last-child a { border-bottom: none; }
  .nav-menu a::after { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-mobile-only { display: block; }

  /* Hamburger → X animacija */
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Hero */
  .hero { padding: 5.5rem 0 4rem; min-height: auto; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem) !important; }
  .hero-desc { font-size: 0.95rem; }

  /* Sekcije */
  .about, .products, .catalog, .contact { padding: 4.5rem 0; }
  .stores-section, .process-section, .features-section { padding: 4rem 0; }
  .cta-band { padding: 3.5rem 0; }

  /* Products homepage */
  .products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Products page */
  .products-page-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }

  /* Map */
  .map-wrap { height: 300px; }

  /* Footer */
  .footer { padding: 4rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Stats */
  .stat-number { font-size: 2.75rem; }

  /* Subpages */
  .stores-grid, .process-grid { grid-template-columns: 1fr; }
  .cert-section .container { flex-direction: column; text-align: center; }

  /* Page hero */
  .page-hero { height: auto; min-height: 260px; max-height: none; }
  .page-hero-content { padding: 5.5rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .page-hero p { font-size: 0.875rem; }
}

/* ── 480px: Small phone portrait ───────────────── */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 1.1rem; }

  /* Hero */
  .hero { padding: 5rem 0 3.5rem; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem) !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Sekcije */
  .about, .products, .catalog, .contact { padding: 3.75rem 0; }
  .stores-section, .process-section, .features-section { padding: 3.5rem 0; }
  .cta-band { padding: 3rem 0; }

  /* Stats */
  .stat { padding: 2rem 1rem; }
  .stat-number { font-size: 2.4rem; }

  /* Products homepage — 1-col na tiny screens */
  .products-grid { grid-template-columns: 1fr; }

  /* Feature grids */
  .feature-grid--4, .feature-grid--3 { grid-template-columns: 1fr; }

  /* Products page — ostaje 2-col */
  .products-page-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .prod-page-body { padding: 0.75rem; }
  .prod-page-title { font-size: 0.75rem; }

  /* CTA buttons — stack */
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Products header */
  .products-header .btn { width: 100%; justify-content: center; }

  /* Contact form */
  .contact-form { padding: 1.25rem; }

  /* Map */
  .map-wrap { height: 250px; }

  /* Page hero */
  .page-hero-content { padding: 5rem 0 2rem; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }

  /* BTT */
  .btt { bottom: 1.25rem; right: 1.25rem; }
}
