/* ===== CUSTOM BRAND PAGE - WINE CAROUSEL STYLES ===== */

/* Wine Carousel Section */
.wine-carousel-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  overflow: hidden;
  position: relative;
}

.wine-carousel-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImEiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTTAgNjBMMzAgMzBsNjAgMEwzMCAwbC2yMCAwIiBzdHJva2U9IiMyMzIzMjMiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhKSIvPjwvc3ZnPg==');
  opacity: 0.03;
}

.wine-carousel-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.wine-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.wine-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wine-carousel::-webkit-scrollbar {
  display: none;
}

.wine-slide {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  padding: 40px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.wine-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: brightness(1);
  transition: filter 0.4s ease;
  z-index: 0;
}

.wine-slide:hover::before {
  filter: brightness(1.2);
}

.wine-slide.red {
  background: linear-gradient(135deg, #8b2635, #6d1f2c);
}

.wine-slide.white {
  background: linear-gradient(135deg, #f4e4c1, #d4c5a0);
}

.wine-slide.white .wine-name,
.wine-slide.white .wine-description {
  color: #2c2c2c;
}

.wine-slide.champagne {
  background: linear-gradient(135deg, #F5DEB3, #D2B48C);
}

.wine-slide.champagne .wine-name,
.wine-slide.champagne .wine-description {
  color: #2c2c2c;
}

.wine-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.wine-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.wine-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.carousel-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .carousel-controls {
    display: flex;
  }
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}
