/* Product Gallery Styles */
.product-main-image {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: zoom-in;
    border-radius: 10px;
}

.product-main-image img {
    transition: opacity 0.3s ease;
    width: 100%;
}

.product-thumbnails {
    margin-top: 0.5rem;
}

.thumbnail-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    padding: 2px;
    opacity: 0.7;
}

.thumbnail-item:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Zoom effect on main image hover */
.product-main-image:hover img {
    transform: scale(1.03);
}
