.wpb-product-media {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.wpb-product-media-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.wpb-product-media-main img {
    width: 100%;
    height: auto;
    display: block;
}

.wpb-product-media-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.wpb-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.wpb-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
}

.wpb-video-native {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    background: #000;
}

.wpb-product-media-gallery {
    display: grid;
    grid-template-columns: repeat(var(--wpb-gallery-cols, 4), minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
    width: 100%;
    box-sizing: border-box;
}

.wpb-product-media-gallery-item {
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    background: #f8f9fa;
}

.wpb-product-media-gallery img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.wpb-product-media-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .wpb-product-media-gallery {
        grid-template-columns: repeat(min(var(--wpb-gallery-cols, 4), 4), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .wpb-product-media-gallery {
        grid-template-columns: repeat(min(var(--wpb-gallery-cols, 4), 3), minmax(0, 1fr));
    }
}
