/* Online Tees Carousel Styles */

.ot-carousel-container {
  max-width: 100%;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.ot-carousel-wrapper {
  position: relative;
  width: 100%;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.ot-carousel-slides {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: #000;
}

.ot-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.ot-carousel-slide.active {
  opacity: 1;
}

.ot-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Buttons */
.ot-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  z-index: 10;
  font-weight: bold;
}

.ot-carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.ot-carousel-prev {
  left: 10px;
}

.ot-carousel-next {
  right: 10px;
}

/* Dots Navigation */
.ot-carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.ot-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ot-carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.ot-carousel-dot.active {
  background-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ot-carousel-btn {
    padding: 12px 16px;
    font-size: 16px;
  }

  .ot-carousel-prev {
    left: 5px;
  }

  .ot-carousel-next {
    right: 5px;
  }

  .ot-carousel-dot {
    width: 10px;
    height: 10px;
  }

  .ot-carousel-dots {
    bottom: 10px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .ot-carousel-btn {
    padding: 10px 12px;
    font-size: 14px;
  }

  .ot-carousel-dot {
    width: 8px;
    height: 8px;
  }

  .ot-carousel-dots {
    bottom: 8px;
    gap: 6px;
  }
}
