.product-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.product-image-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.product-image {
    flex: 0 0 100%;
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #fff;
}

/* Magnifier button */
.product-magnifier-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.product-magnifier-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.product-magnifier-button.active {
    background-color: #007bff;
}

.product-magnifier-button.active:hover {
    background-color: #0056b3;
}

/* Magnifier styles */
.product-magnifier {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.product-magnifier img {
    position: absolute;
    width: 1200px;
    height: 1200px;
    object-fit: cover;
}

/* Navigation buttons */
.product-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.product-nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.product-nav-prev {
    left: 10px;
}

.product-nav-next {
    right: 10px;
}

/* Thumbnails */
.product-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 0;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    cursor: pointer;
    object-fit: cover;
    transition: border-color 0.3s ease;
}

.product-thumbnail.active {
    border-color: #007bff;
}

/* Dots indicator */
.product-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.product-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-dot.active {
    background-color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-image {
        height: 300px;
    }
    
    .product-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .product-nav-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .product-magnifier {
        display: none !important;
    }
    
    .product-magnifier-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 8px;
        right: 8px;
    }
} 