.hero-slider-section {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

/* ❌ uklonili background-size/position/padding – sada koristi <picture> */
.hero-slide {
  position: relative;
  width: 100%;
  height: 520px; /* dodato jer <picture> treba frame */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* HERO CONTENT */
.hero-content {
  max-width: 600px;
  color: #391b26;
  margin-left: 60px;
}

.hero-tagline {
  display: inline-block;
  background: #f2f2f2;
  color: #444;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #391b26;
  margin-bottom: 12px;
}

.hero-subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: #7e4e62;
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary, #c6a34f);
  color: #fff;
}

.btn-secondary {
  color: #222;
  font-weight: 500;
}

.hero-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 999px;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

/* HERO SLIDER */
.hero-slider {
  width: 100%;
  border-radius: 12px;
}

/* Wrapper */
.hero-slider .swiper-wrapper {
  height: 100%;
}

/* ❌ uklonjeno background-size:contain i background-position */
.hero-slide .container,
.hero-content {
  position: relative;
  z-index: 2;
}

/* Mobile height */
@media (max-width: 768px) {
  .hero-slider {
    height: 75vh;
  }
}

/* ❌ ovo pravilo nije imalo position → uklonjeno */
.hero-slide::before {
  /* uklonjeno jer je pravilo nepotpuno */
}

/* BADGE GORNJI DESNI */
.hero-badge-top {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  pointer-events: none;
}

.hero-badge-top img {
  width: 120px;
  height: auto;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-badge-top img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* PICTURE KAO BACKGROUND */
.hero-slide-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile badge */
@media (max-width: 768px) {
  .hero-slide {
    align-items: flex-start;
    padding-top: 50px;
  }
  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge-top img {
    width: 60px;
  }
  .hero-content {
    margin-left: 20px;
    margin-right: 20px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-slide-picture img {
    object-fit: cover;
    object-position: bottom center;
  }
  .hero-slide-picture img {
    border-radius: 0;
  }
}
