/* Product Gallery Style */
.sinhoni-product-gallery-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.sinhoni-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: #f9f9f9;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.thumbnail-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-item:hover {
    opacity: 0.8;
}

.thumbnail-item.active {
    border-color: #2d3691;
}

@media (max-width: 768px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Skeleton Loading */
.sinhoni-product-gallery-wrapper.is-loading {
    opacity: 0.7;
}
