
.image-slider[data-v-2000b5c9] {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Main Image Container */
.main-image-container[data-v-2000b5c9] {
  position: relative;
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
}
.main-image-wrapper[data-v-2000b5c9] {
  aspect-ratio: 16/9;
  max-height: 500px;
}
.main-image-wrapper img[data-v-2000b5c9] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Navigation Buttons */
.nav-btn[data-v-2000b5c9] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #e67e22;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn[data-v-2000b5c9]:hover {
  background: #e67e22;
  color: white;
  transform: translateY(-50%) scale(1.05);
}
.prev-btn[data-v-2000b5c9] {
  left: 15px;
}
.next-btn[data-v-2000b5c9] {
  right: 15px;
}

/* Counter */
.image-counter[data-v-2000b5c9] {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 10;
}

/* Thumbnails Container */
.thumbnails-container[data-v-2000b5c9] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 4px;
}
.thumbnails-wrapper[data-v-2000b5c9] {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.thumbnails-track[data-v-2000b5c9] {
  display: flex;
  gap: 8px;
  transition: transform 0.3s ease;
}
.thumbnail-item[data-v-2000b5c9] {
  flex-shrink: 0;
  width: calc((100% - 32px) / 5);
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  border-radius: 10px;
  overflow: hidden;
}
.thumbnail-item[data-v-2000b5c9]:hover {
  opacity: 0.8;
}
.thumbnail-item.active[data-v-2000b5c9] {
  opacity: 1;
  box-shadow: 0 0 0 2px #e67e22;
}
.thumbnail-item img[data-v-2000b5c9] {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Thumbnail Navigation Arrows */
.thumb-nav[data-v-2000b5c9] {
  background: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #e67e22;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.thumb-nav[data-v-2000b5c9]:hover {
  background: #e67e22;
  color: white;
}

/* Empty State */
.image-slider-empty[data-v-2000b5c9] {
  background: #f8f9fa;
  border-radius: 16px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #8a9ab0;
}
.image-slider-empty i[data-v-2000b5c9] {
  font-size: 48px;
  opacity: 0.5;
}
.image-slider-empty p[data-v-2000b5c9] {
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
.nav-btn[data-v-2000b5c9] {
    width: 36px;
    height: 36px;
}
.prev-btn[data-v-2000b5c9] {
    left: 10px;
}
.next-btn[data-v-2000b5c9] {
    right: 10px;
}
.thumbnail-item[data-v-2000b5c9] {
    width: calc((100% - 24px) / 4);
}
.main-image-wrapper[data-v-2000b5c9] {
    max-height: 350px;
}
}
@media (max-width: 576px) {
.nav-btn[data-v-2000b5c9] {
    width: 32px;
    height: 32px;
}
.thumbnail-item[data-v-2000b5c9] {
    width: calc((100% - 16px) / 3);
}
.thumb-nav[data-v-2000b5c9] {
    width: 28px;
    height: 28px;
}
.thumbnails-container[data-v-2000b5c9] {
    gap: 4px;
}
.main-image-wrapper[data-v-2000b5c9] {
    max-height: 280px;
}
.image-counter[data-v-2000b5c9] {
    font-size: 0.65rem;
    padding: 3px 10px;
}
}
@media (max-width: 480px) {
.thumbnails-container[data-v-2000b5c9] {
    display: none;
}
}

