/* Galerie produit boutique */

.product-main-image-wrap {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    background: #fffdf8;
    border: 1px solid #eadfbe;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image-wrap img,
#product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    max-width: 520px;
}

.product-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 1px solid #d8bd7a;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

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

/* Sélecteur langue produit */
.product-language-switcher {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.product-language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #d8bd7a;
    color: #211a0a;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    background: #fffaf0;
}

.product-language-switcher a.is-active {
    background: #d8bd7a;
    color: #211a0a;
}
