/* FDS Product Gallery — CDN Images */

.fds-product-gallery {
    margin-bottom: 2em;
}

.fds-gallery-main {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 4px;
}

.fds-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.fds-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fds-thumb {
    display: block;
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.2s ease;
    cursor: pointer;
}

.fds-thumb:hover {
    opacity: 0.9;
}

.fds-thumb.fds-thumb-active {
    border-color: #333;
    opacity: 1;
}

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

/* Loop thumbnail */
.fds-cdn-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
