
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d4af37; /* doré chic */
}

.carousel-indicators .active {
    background-color: #b08a54;
}

.btn-close {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.7rem;
    transition: 0.2s;
}

.btn-close:hover {
    background-color: #d4af37;
    opacity: 1;
}

.btn-dark {
    background-color: #000;
    border: none;
    transition: 0.2s;
}

.btn-dark:hover {
    background-color: #222;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

.brand-box-section {
    padding: 40px 0;
}
.brand-box-section h6 {
    font-size: 14px;
    letter-spacing: 1px;
}
.brand-box-grid .brand-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.brand-box-grid .brand-photo:hover img {
    transform: scale(1.03);
}
.brand-box-grid .large img {
    aspect-ratio: 4 / 3;
}
.brand-box-grid .small img {
    aspect-ratio: 1 / 1;
}
.new-arrivals-img {
    object-fit: cover; height: 400px;
}
.product-color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}
.input-width-140 {
    width: 140px;
}
/* ✨ Style Desktop */
.swiper-button-next,
.swiper-button-prev {
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;          /* 🟢 force l'affichage */
    visibility: visible !important;  /* 🟢 force l'affichage */
    z-index: 50 !important; /* 🟢 pour éviter qu'elles soient cachées */

}

/* ✨ Icones */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #000 !important;
}

/* Flèche gauche */
.swiper-button-prev::after {
    content: "←" !important;
}

/* Flèche droite */
.swiper-button-next::after {
    content: "→" !important;
}

/* Position */
.swiper-button-prev {
    left: 8px !important;
}

.swiper-button-next {
    right: 8px !important;
}

/* 📱 ✨ Version Mobile */
@media (max-width: 640px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px !important;
        height: 32px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 12px !important; /* icône plus petite */
    }
}
/* 📌 Hauteur du slider Desktop */
.custom-swiper-height {
    max-height: 550px;     /* tu peux mettre 400px, 420px, etc. */
    overflow: hidden;      /* éviter que les produits dépassent */
}

/* 📱 Hauteur Mobile */

.swiper-pagination-bullet-active
{
    background: #4b2e59;
}

.product-title {
    font-size: 12.5px;                 /* ≈ style de haut-de-gamme */
    font-weight: 300;                  /* très fin */
    text-transform: uppercase;
    letter-spacing: 0.25em;            /* large spacing comme dans l'image */
    color: #3a3a3a;                    /* gris foncé élégant */
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
@media (max-width: 640px) {
    .product-title {
        font-size: 11px;
        letter-spacing: 0.22em;
    }
}
/*carrousel modal detail produit*/
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4b2e5959; /* doré chic */
}

.carousel-indicators .active {
    background-color: #4B2E59;
}

.btn-close {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.7rem;
    transition: 0.2s;
}

.btn-close:hover {
    background-color: #4b2e5959;
    opacity: 1;
}

.btn-dark {
    background-color: #000;
    border: none;
    transition: 0.2s;
}

.btn-dark:hover {
    background-color: #222;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}
/* 🔸 Supprime les styles par défaut du select et options */
.custom-select option {
    background: white; /* Supprime le fond bleu */
    color: #555; /* Couleur de base du texte */
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 10px;
}

/* 🔸 Effet au survol */
.custom-select option:hover,
.custom-select option:focus {
    background: white; /* pas de fond coloré */
    color: #000; /* texte plus foncé */
    cursor: pointer;
}

/* 🔸 Pour Safari et Firefox, éviter le fond par défaut sélectionné */
.custom-select option:checked {
    background: white !important;
    color: #b28c6b !important; /* Doré quand sélectionné */
}


/* AR – right to left */
.hover-slide-rtl {
    background: linear-gradient(to left, black 50%, white 50%);
    background-size: 200% 100%;
    background-position: left; /* Blanc visible */
    color: black;
    transition: all 0.4s ease-in-out;
}
.hover-slide-rtl:hover {
    background-position: right; /* Noir visible */
    color: white !important;
}
/* --- Disabled state --- */
.btn-disabled {
    background: #d1d5db !important; /* gris */
    color: #6b7280 !important;       /* texte gris */
    opacity: 0.7;
    cursor: not-allowed !important;
    border: 1px solid #bdbdbd !important;
    background-image: none !important;
}
/* 🎯 Transition noire → blanche, direction droite → gauche */
/* Effet slide droite → gauche pour BUY IT NOW */
.buy-slide-rtl {
    background: linear-gradient(to left, white 50%, black 50%);
    background-size: 200% 100%;
    background-position: left; /* 🚨 clé : montre la partie noire par défaut */
    color: white;
    border: 1px solid black;
    transition: all 0.4s ease-in-out;
}

.buy-slide-rtl:hover {
    background-position: right; /* montre la partie blanche */
    color: black !important;
}

.brand-photo img {
    object-fit: cover;
    width: 100%;
}
.brand-box-item .large {
    height: 100%; /* prend toute la hauteur du parent */
}

.brand-box-item .large img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* recadre proprement */
    border-radius: 10px;
}

.brand-box-item .small {
    height: 50%; /* 2 petites = 100% donc pile la hauteur de la grande */
}

.brand-box-item .small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

