/* Shop Hero Banner - Featured Products */
.shop-hero-banner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hero-banner-carousel {
  position: relative;
  min-height: 400px;
  position: relative;
}

.hero-slides-container {
  position: relative;
  min-height: 400px;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(116, 36, 41, 0.80); /* 85% white overlay to make background very subtle */
  pointer-events: none;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 0px 160px; 
  min-height: 400px;
  position: relative;
  z-index: 1; /* Above the white overlay */
}

.hero-slide-text {
  margin-left: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-slide-text h2 {
  font-family: 'Oranienbaum', serif;
  font-size: 38px;
  font-weight: 800;;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slide-text p.hero-description {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  flex: 1;
}

/* Hero Price */
.hero-price {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

/* Hero View Button - Bottom Right */
.hero-view-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: #64242E;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.hero-view-btn:hover {
  background: #4a1a22;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 20px rgba(100, 36, 46, 0.4);
}

.hero-slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Image - Handle white backgrounds */
.hero-slide-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  padding: 20px;
  /* background: white; */
  /* border: 1px solid rgba(100, 36, 46, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); */
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #64242E;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-nav:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:white;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

.hero-dot:hover {
  background: var(--color-marsala);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-slide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 50px;
  }

  .hero-slide-text {
    order: 2;
    text-align: center;
    margin-left: 0;
  }

  .hero-view-btn {
    position: static;
    margin-top: 20px;
  }

  .hero-slide-image {
    order: 1;
  }

  .hero-slide-text h2 {
    font-size: 36px;
  }

  .hero-price {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .shop-hero-banner {
    margin: 0 0 30px;
    border-radius: 0;
  }

  .hero-banner-carousel {
    min-height: 500px;
  }

  .hero-slide-content {
    padding: 30px 20px;
  }

  .hero-slide-text {
    margin-left: 0;
  }

  .hero-slide-text h2 {
    font-size: 28px;
  }

  .hero-slide-text p.hero-description {
    font-size: 16px;
  }

  .hero-price {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero-view-btn {
    position: static;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }
}
