/* Shirt Carousel Styles */

.shirt-carousel-section {
  padding: 60px 40px;
  background: var(--bg, #0b0b0c);
  scroll-snap-align: start;
  position: relative;
}

.shirt-carousel-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text, #e7e7ea);
  margin: 0 0 40px;
  text-align: center;
}

.shirt-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.shirt-carousel-wrapper {
  overflow: hidden;
  border-radius: 20px;
  background: var(--card, #1b1b20);
  border: 1px solid var(--border, #2a2a31);
}

.shirt-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.shirt-carousel-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.shirt-carousel-item-image {
  aspect-ratio: 1;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shirt-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shirt-carousel-item-description {
  text-align: center;
  color: var(--muted, #a7a7b0);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.shirt-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text, #e7e7ea);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.shirt-carousel-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.shirt-carousel-prev {
  left: -70px;
}

.shirt-carousel-next {
  right: -70px;
}

.shirt-carousel-description {
  text-align: center;
  color: var(--muted, #a7a7b0);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 20px auto 0;
  min-height: 24px;
}

.shirt-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.shirt-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted, #a7a7b0);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.shirt-carousel-dot.active {
  background: var(--brand, #6cf0c2);
  opacity: 1;
  transform: scale(1.3);
}

.shirt-carousel-dot:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .shirt-carousel-nav {
    width: 40px;
    height: 40px;
  }

  .shirt-carousel-prev {
    left: 10px;
  }

  .shirt-carousel-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .shirt-carousel-section {
    padding: 40px 20px;
  }

  .shirt-carousel-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .shirt-carousel-item {
    padding: 20px;
  }

  .shirt-carousel-nav {
    width: 35px;
    height: 35px;
  }

  .shirt-carousel-prev {
    left: 5px;
  }

  .shirt-carousel-next {
    right: 5px;
  }
}

