.slider-container {
    position: relative;
    max-width: 435px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.slider {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-slide {
    display: none;
    width: 100%;
}

.slider-slide.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.product-main-image {
    width: 100%;
    height: 435px;
    object-fit: contain;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    border-color: #000;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .slider-container {
        max-width: 100%;
    }
    
    .product-image {
        height: auto;
    }
}