/* ═══════════════════════════════════════════════════════════════════════════
   Product Slider Styles
   ═══════════════════════════════════════════════════════════════════════════ */

.product-slider-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Slider Controls Container */
.product-slider__controls {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Main Image Display */
.product-slider__main {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.product-slider__image {
    max-width: 84%;
    max-height: 84%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Navigation Arrows - Minimalist */
.product-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 15;
    opacity: 1;
}

.product-slider__arrow:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.15);
}

.product-slider__arrow--left,
.product-slider__arrow--prev {
    left: 10px;
}

.product-slider__arrow--right,
.product-slider__arrow--next {
    right: 10px;
}

.product-slider__arrow svg {
    stroke: currentColor;
    fill: none;
    width: 32px;
    height: 32px;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.product-slider__arrow svg path {
    stroke-width: 2;
}

/* Thumbnails Wrapper */
.product-slider__thumbnails-wrapper {
    width: 100%;
    max-width: 460px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.product-slider__thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
}

/* Thumbnail Items */
.product-slider__thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    padding: 4px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-slider__thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.product-slider__thumbnail.active {
    border-color: var(--accent, #d4ff00);
    background: rgba(212, 255, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-slider-container {
        min-height: 300px;
    }

    .product-slider__thumbnails-wrapper {
        max-width: 370px;
    }

    .product-slider__arrow {
        padding: 8px;
        opacity: 0.8;
    }

    .product-slider__arrow svg {
        width: 28px;
        height: 28px;
    }

    .product-slider__thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .product-slider-container {
        min-height: 250px;
    }

    .product-slider__thumbnails-wrapper {
        max-width: 280px;
    }

    .product-slider__arrow {
        padding: 6px;
    }

    .product-slider__arrow svg {
        width: 24px;
        height: 24px;
    }

    .product-slider__thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-slider__thumbnails {
        gap: 8px;
        padding: 0 10px;
    }
}
