/* Punkin Home Carousel Styles */
.punkin-carousel-section {
  width: 100%;
  margin: 0 auto 2rem;
  background: #3D2B1F;
  overflow: hidden;
}

.punkin-carousel-section .carousel-container {
  position: relative;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  overflow: hidden;
}

.punkin-carousel-section .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.punkin-carousel-section .carousel-slide {
  min-width: 100%;
  position: relative;
  display: none;
}

.punkin-carousel-section .carousel-slide.active {
  display: block;
}

.punkin-carousel-section .carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

.punkin-carousel-section .carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(61, 43, 31, 0.9) 0%, rgba(61, 43, 31, 0.5) 50%, transparent 100%);
  padding: 2rem;
}

.punkin-carousel-section .carousel-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #FFF8DC;
  text-align: center;
}

.punkin-carousel-section .carousel-content h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: #FFBF00;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: bold;
}

.punkin-carousel-section .carousel-content p {
  font-size: 1.25rem;
  margin: 0;
  color: #FFF8DC;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Navigation Buttons */
.punkin-carousel-section .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 69, 19, 0.7);
  border: 2px solid #B87333;
  color: #FFF8DC;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 4px;
}

.punkin-carousel-section .carousel-nav:hover {
  background: rgba(139, 69, 19, 0.9);
  border-color: #FFBF00;
  color: #FFBF00;
}

.punkin-carousel-section .carousel-nav.prev {
  left: 1rem;
}

.punkin-carousel-section .carousel-nav.next {
  right: 1rem;
}

.punkin-carousel-section .carousel-nav span {
  display: block;
  line-height: 1;
}

/* Carousel Dots */
.punkin-carousel-section .carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.punkin-carousel-section .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #B87333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.punkin-carousel-section .carousel-dot.active,
.punkin-carousel-section .carousel-dot:hover {
  background: #FFBF00;
  border-color: #FFBF00;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .punkin-carousel-section .carousel-slide img {
    max-height: 400px;
  }

  .punkin-carousel-section .carousel-content h2 {
    font-size: 1.75rem;
  }

  .punkin-carousel-section .carousel-content p {
    font-size: 1rem;
  }

  .punkin-carousel-section .carousel-nav {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
  }

  .punkin-carousel-section .carousel-overlay {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .punkin-carousel-section .carousel-slide img {
    max-height: 300px;
  }

  .punkin-carousel-section .carousel-content h2 {
    font-size: 1.5rem;
  }

  .punkin-carousel-section .carousel-content p {
    font-size: 0.9rem;
  }

  .punkin-carousel-section .carousel-nav {
    font-size: 1.25rem;
    padding: 0.5rem 0.75rem;
  }
}
