:root {
    --couleur-fond: #f5f2ed;
    --couleur-fond-secondaire: #ffffff;

    --couleur-texte: #2d2926;
    --couleur-texte-secondaire: #5b6258;
    --couleur-titres: #2f3e2f;

    --couleur-primaire: #9a6b45;
    --couleur-bouton: #23452d;

    --couleur-fond-sections: #f5f1e8;
    --couleur-fond-cartes: #fffaf0;
    --couleur-fond-images: #e7dfd0;

    --police-titres: Georgia, "Times New Roman", serif;
    --police-textes: Arial, Helvetica, sans-serif;
    --echelle-titres: 1;
    --echelle-textes: 1;
    --arrondi-boutons: 4px;
    --arrondi-cartes: 10px;
    --ombre-cartes: 0 8px 22px rgba(47, 62, 47, 0.08);
    --echelle-espacement-sections: 1;
}

/* =====================================================
   CONTRASTE DES ZONES SOMBRES
   ===================================================== */

:root {
    --texte-sombre: #f7f3ed;
}

.hero h1 {
    color: var(--cuivre, #b66a3c) !important;
}

.matiere h2,
.matiere h3,
.matiere .etape h3 {
    color: var(--texte-sombre, #f7f3ed) !important;
}

/* ------------------------------
   STYLE GÉNÉRAL
------------------------------ */

body {
    margin: 0;
    background-color: var(--couleur-fond);
    color: var(--couleur-texte);
    font-family: Arial, sans-serif;
}


/* ------------------------------
   EN-TÊTE
------------------------------ */

.header {
    height: 80px;
    background-color: #fffaf0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 60px;

    box-sizing: border-box;

    border-bottom: 1px solid #ded6c8;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #6b4932;
    font-size: 20px;
}

.logo span {
    font-size: 25px;
}


/* MENU */

.navigation {
    display: flex;
    gap: 35px;
}

.navigation a {
    text-decoration: none;
    color: #2f3e2f;

    font-size: 15px;

    transition: 0.3s;
}

.navigation a:hover {
    color: #a86b3d;
}


/* PANIER */

.panier {
    position: relative;

    font-size: 22px;
    cursor: pointer;
}

.panier span {
    position: absolute;

    top: -8px;
    right: -10px;

    background-color: #a86b3d;
    color: white;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    font-size: 11px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ------------------------------
   SECTION PRINCIPALE
------------------------------ */

.hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 40px;
    box-sizing: border-box;
}

.hero-content {
    max-width: 750px;
}


/* PETIT TEXTE */

.sur-titre {
    color: #a86b3d;

    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


/* TITRE */

.hero h1 {
    margin: 0;

    color: #2f3e2f;

    font-size: 70px;
    font-weight: 500;
}


/* DESCRIPTION */

.description {
    max-width: 600px;

    margin: 30px auto;

    font-size: 18px;

    line-height: 1.7;

    color: #5b6258;
}


/* BOUTON */

.bouton {
    display: inline-block;

    margin-top: 15px;

    padding: 16px 32px;

    background-color: #a86b3d;

    color: white;

    text-decoration: none;

    border-radius: 4px;

    font-size: 15px;

    transition: 0.3s;
}

.bouton:hover {
    background-color: #7f4e2d;
}
.logo img {
    height: 79px;
    width: auto;
    display: block;
}
/* ------------------------------
   NOTRE DÉMARCHE
------------------------------ */

.histoire {
    min-height: 650px;

    display: flex;
    align-items: center;

    gap: 80px;

    padding: 100px 10%;

    box-sizing: border-box;

    background-color: #fffaf0;
}


/* IMAGE */

.histoire-image {
    flex: 1;
}

.image-placeholder {
    height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #e7dfd0;

    font-size: 80px;

    border-radius: 4px;
}


/* TEXTE */

.histoire-contenu {
    flex: 1;

    max-width: 550px;
}

.histoire-contenu h2 {
    margin: 0 0 30px 0;

    color: #2f3e2f;

    font-size: 45px;

    font-weight: 500;

    line-height: 1.2;
}

.histoire-contenu p {
    text-align: left;

    color: #5b6258;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* BOUTON SECONDAIRE */

.bouton.secondaire {
    margin-top: 15px;

    background-color: transparent;

    color: #a86b3d;

    border: 1px solid #a86b3d;
}

.bouton.secondaire:hover {
    background-color: #a86b3d;

    color: white;
}
/* ------------------------------
   NOS BRACELETS
------------------------------ */

.produits {
    padding: 110px 10%;

    background-color: #f5f1e8;

    box-sizing: border-box;
}


/* INTRODUCTION */

.produits-intro {
    max-width: 700px;

    margin: 0 auto 70px auto;

    text-align: center;
}

.produits-intro h2 {
    margin: 0 0 25px 0;

    color: #2f3e2f;

    font-size: 45px;

    font-weight: 500;

    line-height: 1.2;
}

.produits-intro > p:last-child {
    color: #5b6258;

    font-size: 17px;

    line-height: 1.7;
}


/* GRILLE */

.produits-grille {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* CARTE PRODUIT */

.produit {
    background-color: #fffaf0;

    border: 1px solid #ded6c8;

    transition: 0.3s;
}

.produit:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(47, 62, 47, 0.10);
}


/* IMAGE */

.produit-image {
    height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #e7dfd0;

    font-size: 70px;
}


/* INFORMATIONS */

.produit-informations {
    padding: 25px;
}

.produit-informations h3 {
    margin: 0 0 12px 0;

    color: #2f3e2f;

    font-size: 22px;

    font-weight: 500;
}

.produit-informations p {
    margin: 0;

    color: #687066;

    font-size: 15px;

    line-height: 1.6;
}


/* PRIX + BOUTON */

.produit-bas {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
}

.prix {
    color: #a86b3d;

    font-size: 19px;

    font-weight: bold;
}

.bouton-produit {
    padding: 10px 18px;

    background-color: var(--couleur-bouton);

    color: white;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.bouton-produit:hover {
    background-color: #a86b3d;
}
/* LOGO PRINCIPAL */

.hero-logo {
    width: 320px;
    max-width: 80%;
    height: auto;

    display: block;

    margin: 0 auto 30px auto;
}
/* ------------------------------
RESPONSIVE - TABLETTES / MOBILES
------------------------------ */

@media (max-width: 900px) {

    .header {
        height: auto;
        padding: 20px 25px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .logo img {
        height: 90px;
    }

    .navigation {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        order: 3;
    }

    .hero {
        min-height: auto;
        padding: 70px 25px;
    }

    .hero-logo {
        width: 260px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .description {
        font-size: 17px;
    }

    .histoire {
        flex-direction: column;
        gap: 45px;
        padding: 80px 8%;
    }

    .histoire-image,
    .histoire-contenu {
        width: 100%;
        max-width: 700px;
    }

    .image-placeholder {
        height: 350px;
    }

    .histoire-contenu h2 {
        font-size: 38px;
    }

    .produits {
        padding: 80px 8%;
    }

    .produits-grille {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ------------------------------
RESPONSIVE - TÉLÉPHONES
------------------------------ */

@media (max-width: 600px) {

    .header {
        justify-content: center;
        text-align: center;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        height: 80px;
    }

    .panier {
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .navigation {
        flex-direction: column;
        gap: 12px;
    }

    .hero {
        padding: 55px 20px;
    }

    .hero-logo {
        width: 220px;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 39px;
    }

    .sur-titre {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .description {
        font-size: 16px;
    }

    .bouton {
        padding: 14px 24px;
    }

    .histoire {
        padding: 65px 20px;
        width: 100%;
    }

    .histoire-image,
    .histoire-contenu {
        min-width: 0;
    }

    .image-placeholder {
        height: 280px;
    }

    .histoire-contenu h2 {
        font-size: 34px;
    }

    .histoire-contenu p {
        font-size: 16px;
    }

    .produits {
        padding: 65px 20px;
    }

    .produits-intro h2 {
        font-size: 34px;
    }

    .produits-grille {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .produit {
        width: 100%;
        min-width: 0;
    }

    .produit-image {
        height: 280px;
    }

    .faq,
    .contact {
        padding: 65px 20px;
    }

    .section-intro h2,
    .contact h2 {
        font-size: 34px;
    }

    .fiche-produit {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }

    .produit-image-grande {
        height: 350px;
    }

    .fiche-produit-contenu h1 {
        font-size: 38px;
    }
@media (max-width: 700px) {

    .produits-grille .produit-image {
        height: 260px;
        min-height: 260px;
    }

}
}


/* ------------------------------
CORRECTION DÉBORDEMENT
------------------------------ */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* ------------------------------
FAQ
------------------------------ */

.faq {
    padding: 110px 10%;
    background-color: #fffaf0;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-intro h2 {
    margin: 0 0 20px 0;
    color: #2f3e2f;
    font-size: 45px;
    font-weight: 500;
}

.section-intro > p:last-child {
    color: #5b6258;
    font-size: 17px;
    line-height: 1.7;
}

.faq-liste {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid #ded6c8;
}

.faq-item h3 {
    margin: 0 0 12px 0;
    color: #2f3e2f;
    font-size: 20px;
    font-weight: 500;
}

.faq-item p {
    margin: 0;
    color: #687066;
    font-size: 16px;
    line-height: 1.7;
}


/* ------------------------------
CONTACT
------------------------------ */

.contact {
    padding: 110px 20px;
    background-color: #2f3e2f;
    text-align: center;
}

.contact-contenu {
    max-width: 700px;
    margin: auto;
}

.contact h2 {
    margin: 0 0 20px 0;
    color: #fffaf0;
    font-size: 45px;
    font-weight: 500;
}

.contact p:not(.sur-titre) {
    color: #d8ddd4;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* ------------------------------
FICHE PRODUIT
------------------------------ */

.fiche-produit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 10%;
    background-color: #f5f1e8;
    min-height: calc(100vh - 130px);
    align-items: center;
}

.fiche-produit-image {
    width: 100%;
}

.produit-image-grande {
    height: 550px;
    background-color: #e7dfd0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.fiche-produit-contenu {
    max-width: 600px;
}

.fiche-produit-contenu h1 {
    margin: 0;
    color: #2f3e2f;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.15;
}

.fiche-prix {
    margin: 25px 0;
    color: #a86b3d;
    font-size: 26px;
    font-weight: bold;
}

.fiche-description {
    color: #5b6258;
    font-size: 18px;
    line-height: 1.7;
}

.fiche-details {
    margin: 30px 0;
}

.fiche-details p {
    margin: 10px 0;
    color: #5b6258;
    font-size: 16px;
}

.ajouter-panier {
    border: none;
    background-color: #a86b3d;
    color: white;
    padding: 17px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.ajouter-panier:hover {
    background-color: #7f4e2d;
}
/* ------------------------------
PAGE PANIER
------------------------------ */

.page-panier {
    max-width: 1000px;
    margin: auto;
    padding: 90px 30px;
}

.panier-titre {
    text-align: center;
    margin-bottom: 60px;
}

.panier-titre h1 {
    margin: 0;
    color: #2f3e2f;
    font-size: 50px;
    font-weight: 500;
}

.ligne-panier {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;

    gap: 30px;

    padding: 25px 0;

    border-bottom: 1px solid #ded6c8;
}

.nom-produit-panier {
    color: #2f3e2f;
    font-size: 18px;
    font-weight: 500;
}

.quantite-panier {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantite-panier button {
    width: 34px;
    height: 34px;

    border: 1px solid #a86b3d;

    background-color: transparent;

    color: #a86b3d;

    cursor: pointer;

    font-size: 18px;
}

.quantite-panier button:hover {
    background-color: #a86b3d;
    color: white;
}

.prix-ligne {
    min-width: 90px;

    color: #2f3e2f;

    text-align: right;

    font-weight: bold;
}

.supprimer-produit {
    border: none;

    background: none;

    color: #a86b3d;

    cursor: pointer;

    font-size: 14px;
}

.panier-total {
    display: flex;
    justify-content: space-between;

    margin-top: 40px;

    padding-top: 25px;

    border-top: 2px solid #2f3e2f;

    color: #2f3e2f;

    font-size: 24px;
}

.bouton-commande {
    display: block;

    margin-left: auto;
    margin-top: 35px;

    border: none;

    background-color: #a86b3d;

    color: white;

    padding: 17px 35px;

    font-size: 16px;

    cursor: pointer;
}

.bouton-commande:hover {
    background-color: #7f4e2d;
}

.panier-vide {
    text-align: center;

    padding: 60px 20px;

    color: #687066;

    font-size: 18px;
}
.panier {
    text-decoration: none;
    color: inherit;
}

.reservation-panier-global {
    margin-top: 28px;
    padding: 25px 30px;

    text-align: center;

    border: 1px solid #ded6c8;

    background-color: #fffaf0;
}

.reservation-panier-titre {
    margin-bottom: 12px;

    color: #2f3e2f;

    font-size: 17px;
}

.compteur-reservation-global {
    display: block;

    margin: 5px 0 10px;

    color: #a86b3d;

    font-size: 36px;
    font-weight: 600;

    letter-spacing: 2px;
}

.reservation-panier-texte {
    color: #687066;

    font-size: 14px;
}
/* ------------------------------
COMMANDE
------------------------------ */

.commande {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(360px, 1fr);
    gap: 70px;

    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
    padding: 80px 50px;
}

.commande-gauche h1 {
    margin: 0 0 45px 0;

    color: #2f3e2f;

    font-size: 48px;

    font-weight: 500;
}

.bloc-commande {
    margin-bottom: 50px;
}

.bloc-commande h2 {
    margin-bottom: 25px;

    color: #2f3e2f;

    font-size: 25px;

    font-weight: 500;
}

.formulaire-double {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.champ {
    margin-bottom: 20px;
}

.champ label {
    display: block;

    margin-bottom: 8px;

    color: #2f3e2f;

    font-size: 14px;
}

.champ input {
    width: 100%;

    padding: 14px;

    border: 1px solid #ded6c8;

    background-color: #fffaf0;

    font-size: 16px;
}

.livraison-option {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border: 1px solid #a86b3d;

    background-color: #fffaf0;

    cursor: pointer;
}

.livraison-option span {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.livraison-option small {
    color: #687066;
}

.mondial-relay {
    margin-top: 20px;

    padding: 25px;

    background-color: #f5f1e8;

    border: 1px solid #ded6c8;
}

.mondial-relay h3 {
    margin-top: 0;

    color: #2f3e2f;
}

.bouton-relais {
    border: none;

    background-color: #2f3e2f;

    color: white;

    padding: 14px 25px;

    cursor: pointer;
}

.bouton-relais:hover {
    background-color: #a86b3d;
}

.relais-selectionne {
    margin-top: 20px;

    padding: 15px;

    background-color: #fffaf0;

    color: #687066;
}

.recapitulatif-commande {
    background-color: #fffaf0;

    padding: 40px;

    width: 100%;

    min-width: 320px;

    height: fit-content;

    border: 1px solid #ded6c8;
}

.recapitulatif-commande h2 {
    margin-top: 0;

    color: #2f3e2f;

    font-size: 26px;
}

.ligne-total {
    display: flex;

    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid #ded6c8;

    color: #5b6258;
}

.total-final {
    margin-top: 10px;

    color: #2f3e2f;

    font-size: 20px;
}

.bouton-paiement {
    width: 100%;

    margin-top: 30px;

    border: none;

    background-color: #a86b3d;

    color: white;

    padding: 17px;

    font-size: 16px;

    cursor: pointer;
}

.bouton-paiement:hover {
    background-color: #7f4e2d;
}


@media (max-width: 800px) {

    .commande {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 50px 20px;
    }

    .formulaire-double {
        grid-template-columns: 1fr;
    }

    .commande-gauche h1 {
        font-size: 38px;
    }

}
.bouton-commande {
    text-decoration: none;
}
.champ select {
    width: 100%;
    padding: 14px;

    border: 1px solid #ded6c8;

    background-color: #fffaf0;

    font-size: 16px;
}

/* =====================================================
   MÉDIAS PRODUITS
===================================================== */

.liste-medias-produit {

    margin-top:
        18px;

    display:
        grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(
                150px,
                1fr
            )
        );

    gap:
        12px;
}


.media-produit-admin {

    position:
        relative;

    background:
        #f4f1ed;

    border:
        1px solid
        #ddd6ce;

    border-radius:
        8px;

    padding:
        8px;

    overflow:
        hidden;
}


.media-produit-admin.principal {

    border:
        2px solid
        var(--couleur-primaire);
}


.media-produit-admin img,
.media-produit-admin video {

    width:
        100%;

    height:
        120px;

    object-fit:
        cover;

    display:
        block;

    border-radius:
        5px;
}


.media-3d-apercu {

    height:
        120px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-direction:
        column;

    gap:
        7px;

    background:
        #e9e4dd;

    border-radius:
        5px;

    font-weight:
        bold;

    text-align:
        center;
}


.media-infos {

    margin-top:
        8px;

    font-size:
        12px;
}


.media-actions {

    display:
        flex;

    gap:
        5px;

    flex-wrap:
        wrap;

    margin-top:
        8px;
}


.media-actions button {

    padding:
        6px 8px;

    font-size:
        11px;
}


.media-principal {

    display:
        inline-block;

    margin-top:
        6px;

    padding:
        4px 7px;

    background:
        var(--couleur-primaire);

    color:
        white;

    border-radius:
        12px;

    font-size:
        10px;

    font-weight:
        bold;
}


.upload-en-cours {

    opacity:
        0.6;

    pointer-events:
        none;
}

/* ------------------------------
RÉCAPITULATIF COMMANDE
------------------------------ */

.recap-produit {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid #ded6c8;
}

.recap-produit > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.recap-produit strong {
    color: #2f3e2f;
}

.recap-produit span {
    color: #687066;
    font-size: 14px;
}
/* ------------------------------
AUTOCOMPLÉTION ADRESSE
------------------------------ */

.champ-adresse {
    position: relative;
}

.suggestions-adresse {
    display: none;

    position: absolute;
    z-index: 100;

    left: 0;
    right: 0;

    background-color: #fffaf0;

    border: 1px solid #ded6c8;
    border-top: none;

    max-height: 250px;
    overflow-y: auto;
}

.suggestion-adresse {
    padding: 12px 14px;

    cursor: pointer;

    color: #2f3e2f;

    border-bottom: 1px solid #eee6d9;
}

.suggestion-adresse:hover {
    background-color: #f5f1e8;
}
.commande-gauche {
    width: 100%;
}

.bloc-commande {
    width: 100%;
    max-width: none;
}

.champ input,
.champ select {
    min-height: 52px;
}

.formulaire-double {
    gap: 24px;
}
.commande-gauche {
    width: 100%;
    min-width: 0;
}

.recapitulatif-commande {
    width: 100%;
    min-width: 360px;
}
.zone-mondial-relay {
    margin-top: 20px;
    width: 100%;
    min-height: 0;
}

.zone-mondial-relay iframe,
.zone-mondial-relay > div {
    width: 100%;
    max-width: 100%;
}
/* ------------------------------
PAGE SUCCÈS COMMANDE
------------------------------ */

.page-succes {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;

    background-color: #f5f1e8;

    text-align: center;
}

.succes-contenu {
    max-width: 650px;
}

.succes-icone {
    width: 80px;
    height: 80px;

    margin: 30px auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #2f3e2f;
    color: white;

    font-size: 40px;
}

.succes-contenu h1 {
    margin-bottom: 25px;

    color: #2f3e2f;

    font-size: 48px;
    font-weight: 500;
}

.succes-contenu p {
    color: #5b6258;

    font-size: 18px;
    line-height: 1.7;
}

.succes-contenu .bouton {
    display: inline-block;

    margin-top: 30px;

    text-decoration: none;
}

/* =========================================
   AFFICHAGE DES PROMOTIONS
========================================= */

.zone-prix {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prix-ancien {
    color: #888888;
    font-size: 0.9rem;

    text-decoration-line: line-through;
    text-decoration-color: #888888;
    text-decoration-thickness: 2px;
}

.prix-promo {
    color: #a43c3c;
    font-weight: bold;
}

/* =========================================
   RECALIBRAGE CARTES PRODUITS ACCUEIL
========================================= */

.produits-grille .produit {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: auto;
}

.produits-grille .produit-image {
    width: 100%;
    height: 320px;
    min-height: 320px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.produits-grille .produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.produits-grille .produit-informations {
    position: static;
    width: 100%;
    padding: 22px;
    background: var(--couleur-fond-secondaire);
    box-sizing: border-box;
}

.produits-grille .produit-bas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 18px;
}

/* =========================================
   ADMIN - SÉLECTEURS DE COULEURS
========================================= */

#section-apparence input[type="color"] {
    width: 60px;
    height: 60px;
    min-width: 60px;
    padding: 3px;
    border: 1px solid #d8d2ca;
    border-radius: 8px;
    cursor: pointer;
    background: white;
    flex: none;
}

#section-apparence input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 2px;
}

#section-apparence input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 5px;
}

/* =====================================================
   APPARENCE DYNAMIQUE DU SITE
===================================================== */


/* -----------------------------------------------------
   FOND SECONDAIRE
----------------------------------------------------- */

.header,
.histoire,
.faq,
.produit,
.champ input,
.champ select,
.livraison-option,
.relais-selectionne,
.recapitulatif-commande,
.suggestions-adresse {
    background-color: var(--couleur-fond-secondaire);
}


/* -----------------------------------------------------
   COULEUR DU TEXTE PRINCIPAL
----------------------------------------------------- */

.navigation a,
.hero h1,
.histoire-contenu h2,
.produits-intro h2,
.produit-informations h3,
.section-intro h2,
.faq-item h3,
.fiche-produit-contenu h1,
.panier-titre h1,
.nom-produit-panier,
.prix-ligne,
.panier-total,
.commande-gauche h1,
.bloc-commande h2,
.champ label,
.mondial-relay h3,
.recapitulatif-commande h2,
.total-final,
.recap-produit strong,
.suggestion-adresse,
.succes-contenu h1 {
    color: var(--couleur-texte);
}


/* -----------------------------------------------------
   COULEUR PRINCIPALE / ACCENTS
----------------------------------------------------- */

.sur-titre,
.prix,
.fiche-prix,
.bouton.secondaire,
.quantite-panier button,
.supprimer-produit {
    color: var(--couleur-primaire);
}


.panier span {
    background-color: var(--couleur-primaire);
}


.bouton.secondaire,
.quantite-panier button {
    border-color: var(--couleur-primaire);
}


.navigation a:hover {
    color: var(--couleur-primaire);
}


/* -----------------------------------------------------
   BOUTONS
----------------------------------------------------- */

.bouton,
.bouton-produit,
.ajouter-panier,
.bouton-commande,
.bouton-relais,
.bouton-paiement {
    background-color: var(--couleur-bouton);
}


/* -----------------------------------------------------
   SURVOL DES BOUTONS
----------------------------------------------------- */

.bouton:hover,
.bouton-produit:hover,
.ajouter-panier:hover,
.bouton-commande:hover,
.bouton-relais:hover,
.bouton-paiement:hover {
    background-color: var(--couleur-bouton);
    filter: brightness(0.85);
}


/* -----------------------------------------------------
   BOUTONS SECONDAIRES
----------------------------------------------------- */

.bouton.secondaire {
    background-color: transparent;
}


.bouton.secondaire:hover {
    background-color: var(--couleur-primaire);
    color: white;
}


/* -----------------------------------------------------
   PETITS BOUTONS PANIER
----------------------------------------------------- */

.quantite-panier button:hover {
    background-color: var(--couleur-primaire);
    color: white;
}

/* =====================================================
   NOUVEAUX RÉGLAGES APPARENCE
===================================================== */


/* TITRES */

.hero h1,
.histoire-contenu h2,
.produits-intro h2,
.produit-informations h3,
.section-intro h2,
.faq-item h3,
.fiche-produit-contenu h1,
.panier-titre h1,
.commande-gauche h1,
.bloc-commande h2,
.mondial-relay h3,
.recapitulatif-commande h2,
.succes-contenu h1 {
    color: var(--couleur-titres);
}


/* TEXTES SECONDAIRES */

.description,
.histoire-contenu p,
.produits-intro > p:last-child,
.produit-informations p,
.section-intro > p:last-child,
.faq-item p,
.fiche-description,
.fiche-details p,
.panier-vide,
.livraison-option small,
.relais-selectionne,
.ligne-total,
.recap-produit span,
.succes-contenu p {
    color: var(--couleur-texte-secondaire);
}


/* FOND DES SECTIONS */

.produits,
.fiche-produit,
.mondial-relay,
.page-succes {
    background-color: var(--couleur-fond-sections);
}


/* FOND DES CARTES */

.produit,
.produits-grille .produit-informations,
.champ input,
.champ select,
.livraison-option,
.relais-selectionne,
.recapitulatif-commande,
.suggestions-adresse {
    background-color: var(--couleur-fond-cartes);
}


/* FOND DES ZONES IMAGE */

.image-placeholder,
.produit-image,
.produit-image-grande,
.media-3d-apercu {
    background-color: var(--couleur-fond-images);
}

.image-placeholder {
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.supprimer-produit {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #a86b3d !important;
}


/* =====================================================
   AVIS CLIENTS - FICHE PRODUIT
===================================================== */

.fiche-avis-section {
    padding: 90px 10%;
    background-color: var(--couleur-fond, #f5f2ed);
}

.fiche-avis-conteneur {
    max-width: 1200px;
    margin: 0 auto;
}

.fiche-avis-entete {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 35px;
}

.fiche-avis-intro h2 {
    margin: 0 0 10px;
    color: var(--couleur-titres, #2f3e2f);
    font-size: 38px;
    font-weight: 500;
}

.fiche-avis-intro > p:last-child {
    color: var(--couleur-texte-secondaire, #5b6258);
}

.fiche-avis-resume {
    min-width: 220px;
    padding: 18px 22px;
    text-align: center;
    background: var(--couleur-fond-cartes, #fffaf0);
    border-radius: 10px;
}

.fiche-avis-resume strong {
    display: block;
    margin-bottom: 4px;
    color: var(--couleur-titres, #2f3e2f);
    font-size: 30px;
}

.fiche-avis-resume small {
    display: block;
    margin-top: 5px;
    color: var(--couleur-texte-secondaire, #5b6258);
}

.fiche-avis-etoiles {
    color: #b4783f;
    letter-spacing: 2px;
}

.fiche-avis-grille {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.fiche-avis-carte {
    padding: 24px;
    background: var(--couleur-fond-cartes, #fffaf0);
    border-radius: 10px;
}

.fiche-avis-carte-haut {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.fiche-avis-carte h3 {
    margin: 0;
    color: var(--couleur-titres, #2f3e2f);
    font-size: 18px;
    font-weight: 600;
}

.fiche-avis-verifie {
    display: inline-block;
    margin-top: 7px;
    padding: 5px 9px;
    border-radius: 20px;
    background: #dcebdd;
    color: #315d35;
    font-size: 11px;
    font-weight: 700;
}

.fiche-avis-commentaire {
    margin: 0;
    color: var(--couleur-texte-secondaire, #5b6258);
    line-height: 1.65;
    white-space: pre-wrap;
}

.fiche-avis-date {
    margin-top: 16px;
    color: #8a8178;
    font-size: 12px;
}

.fiche-avis-medias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.fiche-avis-media {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 7px;
    background: #eee8df;
}

.fiche-avis-lien-global {
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 950px) {
    .fiche-avis-grille {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .fiche-avis-section {
        padding: 60px 20px;
    }

    .fiche-avis-entete {
        flex-direction: column;
        align-items: stretch;
    }

    .fiche-avis-grille {
        grid-template-columns: 1fr;
    }

    .fiche-avis-intro h2 {
        font-size: 30px;
    }
}


/* =====================================================
   CORRECTION AVIS FICHE PRODUIT V2
===================================================== */

/*
   La fiche produit avait min-height: calc(100vh - 130px)
   + 100px de padding vertical : c'est cela qui repoussait
   fortement les avis sous la ligne de flottaison.
*/
.fiche-produit {
    min-height: auto;
    padding-bottom: 45px;
}

/* Les avis suivent maintenant directement la fiche produit. */
.fiche-avis-section {
    padding: 35px 10% 65px;
}

/*
   IMPORTANT :
   le commentaire est injecté dans un template JS indenté.
   white-space: pre-wrap conservait ces espaces et retours à la ligne,
   ce qui provoquait le texte décalé visible sur la capture.
*/
.fiche-avis-carte .fiche-avis-commentaire {
    display: block;
    width: 100%;
    margin: 16px 0 0;
    padding: 0;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.fiche-avis-carte {
    min-height: 0;
    height: auto;
    align-self: start;
}

@media (max-width: 680px) {
    .fiche-produit {
        padding-bottom: 30px;
    }

    .fiche-avis-section {
        padding: 30px 20px 50px;
    }
}


/* =====================================================
   PAGE LE CUIVRE
===================================================== */

.page-cuivre {
    background-color: var(--couleur-fond-sections, #f5f1e8);
}

.cuivre-hero {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 70px;
    min-height: 650px;
    padding: 90px 10%;
    background:
        linear-gradient(
            120deg,
            var(--couleur-fond-sections, #f5f1e8) 0%,
            var(--couleur-fond-sections, #f5f1e8) 63%,
            var(--couleur-fond-images, #e7dfd0) 63%,
            var(--couleur-fond-images, #e7dfd0) 100%
        );
}

.cuivre-hero-contenu {
    max-width: 720px;
}

.cuivre-hero h1 {
    margin: 0 0 25px;
    color: var(--couleur-titres, #2f3e2f);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.05;
}

.cuivre-hero-contenu > p:not(.sur-titre) {
    max-width: 650px;
    margin-bottom: 35px;
    color: var(--couleur-texte-secondaire, #5b6258);
    font-size: 18px;
    line-height: 1.8;
}

.cuivre-hero-visuel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 360px);
    aspect-ratio: 1;
    margin: auto;
    border: 1px solid rgba(168, 107, 61, 0.35);
    border-radius: 50%;
    color: var(--couleur-primaire, #a86b3d);
    font-size: 110px;
    font-weight: 600;
}

.cuivre-hero-visuel::before,
.cuivre-hero-visuel::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(168, 107, 61, 0.18);
    border-radius: 50%;
}

.cuivre-hero-visuel::before {
    inset: 22px;
}

.cuivre-hero-visuel::after {
    inset: 48px;
}

.cuivre-hero-visuel span,
.cuivre-hero-visuel small {
    position: relative;
    z-index: 1;
}

.cuivre-hero-visuel small {
    position: absolute;
    top: 25%;
    right: 25%;
    font-size: 20px;
}

.cuivre-introduction,
.cuivre-caracteristiques,
.cuivre-entretien,
.cuivre-usages {
    padding: 100px 10%;
}

.cuivre-section-intro {
    max-width: 850px;
}

.cuivre-section-intro.centre {
    margin: 0 auto 45px;
    text-align: center;
}

.cuivre-section-intro h2,
.cuivre-bloc-texte h2,
.cuivre-patine h2,
.cuivre-usages h2,
.cuivre-engagement h2 {
    margin: 0 0 24px;
    color: var(--couleur-titres, #2f3e2f);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
}

.cuivre-section-intro p:not(.sur-titre),
.cuivre-bloc-texte p:not(.sur-titre),
.cuivre-patine p:not(.sur-titre),
.cuivre-usages p:not(.sur-titre),
.cuivre-engagement p:not(.sur-titre) {
    color: var(--couleur-texte-secondaire, #5b6258);
    font-size: 17px;
    line-height: 1.8;
}

.cuivre-reperes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.cuivre-repere {
    padding: 28px;
    background: var(--couleur-fond-cartes, #fffaf0);
    border-radius: 10px;
}

.cuivre-repere strong {
    display: block;
    margin-bottom: 8px;
    color: var(--couleur-primaire, #a86b3d);
    font-size: 38px;
}

.cuivre-repere span {
    color: var(--couleur-texte-secondaire, #5b6258);
}

.cuivre-alterne {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
    padding: 100px 10%;
    background: var(--couleur-fond-cartes, #fffaf0);
}

.cuivre-bloc-visuel {
    display: flex;
    justify-content: center;
}

.cuivre-cercle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 340px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--couleur-fond-images, #e7dfd0);
    color: var(--couleur-primaire, #a86b3d);
    font-size: 100px;
}

.cuivre-cartes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cuivre-carte {
    padding: 32px;
    background: var(--couleur-fond-cartes, #fffaf0);
    border-radius: 10px;
}

.cuivre-icone {
    display: block;
    margin-bottom: 20px;
    color: var(--couleur-primaire, #a86b3d);
    font-size: 34px;
}

.cuivre-carte h3,
.cuivre-conseils h3 {
    margin: 0 0 12px;
    color: var(--couleur-titres, #2f3e2f);
    font-size: 21px;
    font-weight: 600;
}

.cuivre-carte p,
.cuivre-conseils p {
    margin: 0;
    color: var(--couleur-texte-secondaire, #5b6258);
    line-height: 1.7;
}

.cuivre-patine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 100px 10%;
    background: #2f3e2f;
}

.cuivre-patine .sur-titre {
    color: #d79a69;
}

.cuivre-patine h2 {
    color: #fffaf0;
}

.cuivre-patine p:not(.sur-titre) {
    color: #d8ddd4;
}

.cuivre-patine-etapes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.cuivre-patine-etape {
    display: grid;
    grid-template-columns: 65px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.18);
}

.cuivre-patine-etape span {
    color: #d79a69;
    font-size: 22px;
}

.cuivre-patine-etape p {
    margin: 0;
}

.cuivre-conseils {
    display: grid;
    gap: 16px;
    margin-top: 45px;
}

.cuivre-conseils article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 26px 0;
    border-bottom: 1px solid #ded6c8;
}

.cuivre-conseils article > span {
    color: var(--couleur-primaire, #a86b3d);
    font-size: 24px;
}

.cuivre-usages {
    background: var(--couleur-fond-cartes, #fffaf0);
}

.cuivre-usages-contenu {
    max-width: 850px;
    margin: auto;
}

.cuivre-engagement {
    padding: 100px 20px;
    text-align: center;
    background: var(--couleur-fond-sections, #f5f1e8);
}

.cuivre-engagement > div {
    max-width: 780px;
    margin: auto;
}

.cuivre-engagement p:not(.sur-titre) {
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .cuivre-hero,
    .cuivre-alterne,
    .cuivre-patine {
        grid-template-columns: 1fr;
    }

    .cuivre-hero {
        min-height: auto;
        background: var(--couleur-fond-sections, #f5f1e8);
    }

    .cuivre-hero-visuel {
        max-width: 270px;
    }

    .cuivre-reperes,
    .cuivre-cartes {
        grid-template-columns: 1fr;
    }

    .cuivre-alterne {
        gap: 45px;
    }
}

@media (max-width: 680px) {
    .cuivre-hero,
    .cuivre-introduction,
    .cuivre-alterne,
    .cuivre-caracteristiques,
    .cuivre-patine,
    .cuivre-entretien,
    .cuivre-usages {
        padding: 60px 20px;
    }

    .cuivre-engagement {
        padding: 70px 20px;
    }

    .cuivre-hero h1 {
        font-size: 44px;
    }

    .cuivre-repere,
    .cuivre-carte {
        padding: 24px;
    }

    .cuivre-conseils article {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }
}


/* =====================================================
   FOOTER LÉGAL COMMUN
===================================================== */

.footer-site {
    margin-top: auto;
    background: #253328;
    color: #f6f0e6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-conteneur {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 45px 7%;
}

.footer-marque {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-marque strong {
    font-size: 19px;
    font-weight: 600;
}

.footer-marque span,
.footer-contact a {
    color: #cfd6cd;
    font-size: 14px;
}

.media-produit-admin[draggable="true"] { cursor: grab; }
.media-produit-admin[draggable="true"]::before {
    content: "⋮⋮ Glisser pour réordonner";
    display: block;
    padding: 8px 12px;
    color: #9a6b45;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.media-produit-admin.en-deplacement { opacity: .48; cursor: grabbing; }

.footer-reseaux {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 10px;
}

.footer-reseaux a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: #23452d;
    background: #ffffff;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.footer-reseaux a:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: #d89a67;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.footer-reseaux svg {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.footer-reseaux .footer-reseau-personnalise {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
    background: #9a6b45;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.footer-reseaux small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* Blocs sociaux — page Contact et accueil */
.contact-reseaux {
    padding: clamp(65px, 8vw, 115px) clamp(28px, 5vw, 75px);
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
    gap: clamp(45px, 7vw, 110px);
    align-items: center;
    background: #17251c;
    color: #fff;
}

.contact-reseaux[hidden],
.instagram-accueil[hidden] {
    display: none !important;
}

.contact-reseaux-intro h2 {
    margin: 0 0 24px;
    color: #fffaf4;
    font: 400 clamp(42px, 4.5vw, 70px)/1.03 "Italiana", Georgia, serif;
}

.contact-reseaux-intro > p:last-child {
    max-width: 570px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.75;
}

.contact-reseaux-liste {
    display: grid;
    gap: 12px;
}

.contact-reseau {
    min-height: 82px;
    padding: 13px 20px 13px 14px;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .055);
    color: #fff;
    text-decoration: none;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}

.contact-reseau:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1);
}

.contact-reseau-logo {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #9a6b45;
    color: #fff;
    font: 700 28px Arial, sans-serif;
}

.contact-reseau-instagram .contact-reseau-logo { background: linear-gradient(135deg, #833ab4, #e1306c 48%, #fcaf45); }
.contact-reseau-facebook .contact-reseau-logo { background: #1877f2; font-size: 39px; font-family: Arial, sans-serif; }
.contact-reseau-tiktok .contact-reseau-logo { background: #010101; text-shadow: -2px 0 #25f4ee, 2px 0 #fe2c55; }
.contact-reseau-pinterest .contact-reseau-logo { background: #e60023; font-family: Georgia, serif; }
.contact-reseau-youtube .contact-reseau-logo { background: #ff0000; font-size: 20px; }
.contact-reseau-x .contact-reseau-logo { background: #000; }
.contact-reseau-linkedin .contact-reseau-logo { background: #0a66c2; font-size: 21px; }

.logo-instagram-camera {
    width: 25px;
    height: 25px;
    position: relative;
    display: block;
    border: 2.5px solid #fff;
    border-radius: 7px;
}

.logo-instagram-camera::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 50%;
}

.logo-instagram-camera::after {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    right: 3px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
}

.contact-reseau-libelle { display: grid; gap: 4px; }
.contact-reseau-libelle strong { font-size: 16px; }
.contact-reseau-libelle small { color: rgba(255, 255, 255, .62); font-size: 12px; }
.contact-reseau-fleche { color: #dfaa7e; font-size: 23px; }

.instagram-accueil {
    padding: clamp(85px, 10vw, 155px) clamp(24px, 7vw, 110px);
    overflow: hidden;
    background: #f5f2ed;
}

.instagram-accueil-contenu {
    width: min(1320px, 100%);
    min-height: 520px;
    margin: 0 auto;
    padding: clamp(45px, 7vw, 105px);
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(420px, 1.3fr);
    gap: clamp(45px, 8vw, 130px);
    align-items: center;
    background: linear-gradient(130deg, #833ab4 0%, #c13584 32%, #e1306c 55%, #f77737 77%, #fcaf45 100%);
    color: #fff;
}

.instagram-accueil-contenu::after {
    content: "";
    width: 380px;
    height: 380px;
    position: absolute;
    right: -170px;
    bottom: -230px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.instagram-accueil-logo {
    width: clamp(170px, 18vw, 250px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 5px solid #fff;
    border-radius: 29%;
    box-shadow: 0 28px 65px rgba(77, 14, 75, .27);
}

.instagram-accueil-logo span {
    width: 43%;
    aspect-ratio: 1;
    position: relative;
    display: block;
    border: 5px solid #fff;
    border-radius: 50%;
}

.instagram-accueil-logo span::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    right: -33px;
    top: -33px;
    border-radius: 50%;
    background: #fff;
}

.instagram-accueil-texte { position: relative; z-index: 1; }
.instagram-accueil .sur-titre { color: rgba(255, 255, 255, .78); }
.instagram-accueil h2 { color: #fff; }
.instagram-accueil-texte > p:not(.sur-titre) { max-width: 620px; color: rgba(255, 255, 255, .8); font-size: 17px; line-height: 1.75; }
.instagram-accueil .instagram-accueil-bouton { margin-top: 24px; border-color: #fff; background: #fff; color: #7b256d; }
.instagram-accueil .instagram-accueil-bouton:hover { border-color: #17251c; background: #17251c; color: #fff; }

@media (max-width: 850px) {
    .contact-reseaux,
    .instagram-accueil-contenu { grid-template-columns: 1fr; }
    .instagram-accueil-logo { width: 150px; }
}

@media (max-width: 560px) {
    .contact-reseaux { padding: 55px 22px; }
    .contact-reseau { grid-template-columns: 48px 1fr auto; padding-right: 14px; }
    .contact-reseau-logo { width: 46px; height: 46px; }
    .instagram-accueil { padding: 60px 18px; }
    .instagram-accueil-contenu { min-height: 0; padding: 42px 26px; }
}

.footer-liens {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    gap: 12px 24px;
}

.footer-liens a,
.footer-contact a {
    text-decoration: none;
}

.footer-liens a {
    color: #f6f0e6;
    font-size: 14px;
}

.footer-liens a:hover,
.footer-contact a:hover {
    color: #d89a67;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-bas {
    padding: 16px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #aeb8ad;
    font-size: 12px;
}


/* =====================================================
   PAGES LÉGALES
===================================================== */

.page-legale {
    min-height: 70vh;
    padding: 80px 20px 100px;
    background: var(--couleur-fond-sections, #f5f1e8);
}

.legal-conteneur {
    max-width: 960px;
    margin: 0 auto;
}

.legal-entete {
    margin-bottom: 45px;
}

.legal-entete h1 {
    margin: 0 0 18px;
    color: var(--couleur-titres, #2f3e2f);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
}

.legal-entete > p:last-child {
    max-width: 760px;
    color: var(--couleur-texte-secondaire, #5b6258);
    font-size: 17px;
    line-height: 1.7;
}

.legal-avertissement {
    margin: 0 0 28px;
    padding: 18px 20px;
    border-left: 4px solid #b4783f;
    background: #fff3da;
    color: #684c24;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 18px;
    padding: 30px;
    background: var(--couleur-fond-cartes, #fffaf0);
    border: 1px solid #ded6c8;
    border-radius: 10px;
}

.legal-section h2 {
    margin: 0 0 18px;
    color: var(--couleur-titres, #2f3e2f);
    font-size: 24px;
    font-weight: 600;
}

.legal-section p,
.legal-section li {
    color: var(--couleur-texte-secondaire, #5b6258);
    font-size: 16px;
    line-height: 1.75;
}

.legal-section a {
    color: var(--couleur-primaire, #9a6b45);
}

.legal-section ul {
    padding-left: 22px;
}

.formulaire-retractation {
    margin-top: 20px;
    padding: 24px;
    border: 1px dashed #b9aa98;
    background: #ffffff;
}

.acceptation-cgv {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding: 16px;
    background: var(--couleur-fond-cartes, #fffaf0);
    border: 1px solid #ded6c8;
    color: var(--couleur-texte-secondaire, #5b6258);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.acceptation-cgv input {
    flex: none;
    margin-top: 3px;
}

.acceptation-cgv a {
    color: var(--couleur-primaire, #9a6b45);
}

#bouton-paiement:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 800px) {
    .footer-conteneur {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-liens {
        justify-content: center;
    }

    .page-legale {
        padding: 55px 18px 75px;
    }

    .legal-section {
        padding: 22px;
    }
}


/* =====================================================
   TYPOGRAPHIE ET PERSONNALISATION DYNAMIQUES
===================================================== */

body,
button,
input,
textarea,
select {
    font-family: var(--police-textes);
}

body {
    font-size: calc(16px * var(--echelle-textes));
}

p,
li,
label,
input,
textarea,
select,
button,
small,
.navigation a {
    font-size: calc(1em * var(--echelle-textes));
}

h1,
h2,
h3,
h4,
h5,
h6,
.produit-informations h3,
.fiche-avis-carte h3 {
    font-family: var(--police-titres);
}

/*
   On utilise un facteur d'échelle plutôt qu'une taille fixe.
   Les tailles desktop/tablette/mobile déjà présentes restent donc actives.
*/
.hero h1 {
    font-size: calc(70px * var(--echelle-titres));
}

.histoire-contenu h2,
.produits-intro h2,
.section-intro h2,
.contact h2 {
    font-size: calc(45px * var(--echelle-titres));
}

.fiche-produit-contenu h1,
.panier-titre h1 {
    font-size: calc(50px * var(--echelle-titres));
}

.commande-gauche h1 {
    font-size: calc(48px * var(--echelle-titres));
}

.cuivre-hero h1 {
    font-size: clamp(
        calc(48px * var(--echelle-titres)),
        calc(6vw * var(--echelle-titres)),
        calc(76px * var(--echelle-titres))
    );
}

.cuivre-section-intro h2,
.cuivre-bloc-texte h2,
.cuivre-patine h2,
.cuivre-usages h2,
.cuivre-engagement h2 {
    font-size: clamp(
        calc(34px * var(--echelle-titres)),
        calc(4vw * var(--echelle-titres)),
        calc(52px * var(--echelle-titres))
    );
}

.legal-entete h1 {
    font-size: clamp(
        calc(38px * var(--echelle-titres)),
        calc(5vw * var(--echelle-titres)),
        calc(58px * var(--echelle-titres))
    );
}

.bouton,
.bouton-produit,
.ajouter-panier,
.bouton-commande,
.bouton-relais,
.bouton-paiement,
.quantite-panier button {
    border-radius: var(--arrondi-boutons);
}

.produit,
.recapitulatif-commande,
.livraison-option,
.relais-selectionne,
.fiche-avis-carte,
.fiche-avis-resume,
.cuivre-repere,
.cuivre-carte,
.legal-section,
.formulaire-retractation,
.acceptation-cgv {
    border-radius: var(--arrondi-cartes);
}

.produit,
.fiche-avis-carte,
.cuivre-repere,
.cuivre-carte,
.legal-section {
    box-shadow: var(--ombre-cartes);
}

/* Espacement vertical global, sans modifier la largeur des sections. */
.produits,
.faq,
.contact,
.cuivre-introduction,
.cuivre-caracteristiques,
.cuivre-entretien,
.cuivre-usages,
.cuivre-alterne,
.cuivre-patine {
    padding-top: calc(100px * var(--echelle-espacement-sections));
    padding-bottom: calc(100px * var(--echelle-espacement-sections));
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: calc(48px * var(--echelle-titres));
    }

    .histoire-contenu h2 {
        font-size: calc(38px * var(--echelle-titres));
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: calc(39px * var(--echelle-titres));
    }

    .histoire-contenu h2,
    .produits-intro h2,
    .section-intro h2,
    .contact h2 {
        font-size: calc(34px * var(--echelle-titres));
    }

    .fiche-produit-contenu h1 {
        font-size: calc(38px * var(--echelle-titres));
    }

    .produits,
    .faq,
    .contact,
    .cuivre-introduction,
    .cuivre-caracteristiques,
    .cuivre-entretien,
    .cuivre-usages,
    .cuivre-alterne,
    .cuivre-patine {
        padding-top: calc(65px * var(--echelle-espacement-sections));
        padding-bottom: calc(65px * var(--echelle-espacement-sections));
    }
}


/* =====================================================
   ÉTAPE 9 — REFONTE PREMIUM / ARTISANALE
   Couche visuelle globale, compatible avec l'éditeur admin
===================================================== */

:root {
    --premium-largeur: 1240px;
    --premium-bordure: rgba(94, 72, 55, 0.16);
    --premium-ombre-douce: 0 12px 34px rgba(47, 42, 36, 0.08);
    --premium-ombre-hover: 0 22px 50px rgba(47, 42, 36, 0.13);
    --premium-transition: 220ms ease;
}

html {
    scroll-padding-top: 100px;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 12% 4%,
            color-mix(in srgb, var(--couleur-primaire) 7%, transparent),
            transparent 30rem
        ),
        var(--couleur-fond);
    color: var(--couleur-texte);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* -----------------------------------------------------
   HEADER / NAVIGATION
----------------------------------------------------- */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 88px;
    padding: 0 clamp(24px, 5vw, 72px);
    background:
        color-mix(
            in srgb,
            var(--couleur-fond-cartes) 92%,
            transparent
        );
    border-bottom: 1px solid var(--premium-bordure);
    box-shadow: 0 4px 18px rgba(47, 42, 36, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.logo img {
    height: 72px;
    transition:
        transform var(--premium-transition),
        opacity var(--premium-transition);
}

.logo a:hover img {
    transform: scale(1.025);
}

.navigation {
    gap: clamp(18px, 2.6vw, 38px);
}

.navigation a {
    position: relative;
    padding: 33px 0 29px;
    color: var(--couleur-titres);
    font-weight: 500;
    letter-spacing: 0.01em;
    transition:
        color var(--premium-transition),
        opacity var(--premium-transition);
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 0;
    height: 1px;
    background: var(--couleur-primaire);
    transform: translateX(-50%);
    transition: width var(--premium-transition);
}

.navigation a:hover {
    color: var(--couleur-primaire);
}

.navigation a:hover::after {
    width: 100%;
}

.panier {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--premium-bordure);
    border-radius: 50%;
    background: color-mix(in srgb, var(--couleur-fond-cartes) 94%, transparent);
    transition:
        transform var(--premium-transition),
        box-shadow var(--premium-transition);
}

.panier:hover {
    transform: translateY(-2px);
    box-shadow: var(--premium-ombre-douce);
}


/* -----------------------------------------------------
   HERO
----------------------------------------------------- */

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 88px);
    overflow: hidden;
    padding: 96px 24px 110px;
    background:
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--couleur-fond) 86%, transparent),
            var(--couleur-fond)
        );
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    top: -280px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid color-mix(in srgb, var(--couleur-primaire) 16%, transparent);
}

.hero::after {
    left: -170px;
    bottom: -260px;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(
            circle,
            color-mix(in srgb, var(--couleur-primaire) 8%, transparent),
            transparent 68%
        );
}

.hero-content {
    position: relative;
    max-width: 880px;
}

.hero-logo {
    width: min(350px, 78vw);
    margin-bottom: 34px;
    filter: drop-shadow(0 10px 24px rgba(45, 37, 31, 0.08));
}

.sur-titre {
    color: var(--couleur-primaire);
    font-weight: 700;
    text-transform: uppercase;
}

.hero .sur-titre {
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--couleur-titres);
    line-height: 1.03;
    letter-spacing: -0.025em;
}

.description {
    max-width: 680px;
    color: var(--couleur-texte-secondaire);
}

.bouton {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background: var(--couleur-primaire);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--couleur-primaire) 20%, transparent);
    transition:
        transform var(--premium-transition),
        box-shadow var(--premium-transition),
        background var(--premium-transition),
        color var(--premium-transition),
        border-color var(--premium-transition);
}

.bouton:hover {
    transform: translateY(-2px);
    background: color-mix(in srgb, var(--couleur-primaire) 88%, #000000);
    box-shadow: 0 16px 32px color-mix(in srgb, var(--couleur-primaire) 24%, transparent);
}


/* -----------------------------------------------------
   SECTIONS / TITRES
----------------------------------------------------- */

.histoire,
.produits,
.faq,
.contact {
    position: relative;
}

.histoire {
    max-width: none;
    min-height: 720px;
    gap: clamp(55px, 7vw, 110px);
    padding-left: max(7%, calc((100vw - var(--premium-largeur)) / 2));
    padding-right: max(7%, calc((100vw - var(--premium-largeur)) / 2));
    background:
        linear-gradient(
            135deg,
            var(--couleur-fond-cartes),
            color-mix(in srgb, var(--couleur-fond-cartes) 88%, var(--couleur-fond))
        );
}

.histoire-image {
    position: relative;
}

.histoire-image::before {
    content: "";
    position: absolute;
    inset: -18px 22px 22px -18px;
    border: 1px solid color-mix(in srgb, var(--couleur-primaire) 28%, transparent);
    border-radius: calc(var(--arrondi-cartes) + 8px);
    pointer-events: none;
}

.image-placeholder {
    position: relative;
    overflow: hidden;
    height: 500px;
    border-radius: var(--arrondi-cartes);
    background:
        linear-gradient(
            145deg,
            color-mix(in srgb, var(--couleur-fond-images) 82%, #ffffff),
            var(--couleur-fond-images)
        );
    box-shadow: var(--premium-ombre-douce);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.histoire-contenu {
    max-width: 570px;
}

.histoire-contenu h2,
.produits-intro h2,
.section-intro h2 {
    letter-spacing: -0.02em;
}

.histoire-contenu p {
    color: var(--couleur-texte-secondaire);
}

.bouton.secondaire {
    background: transparent;
    color: var(--couleur-primaire);
    border-color: color-mix(in srgb, var(--couleur-primaire) 65%, transparent);
    box-shadow: none;
}

.bouton.secondaire:hover {
    background: var(--couleur-primaire);
    color: #ffffff;
}


/* -----------------------------------------------------
   COLLECTION / CARTES PRODUITS
----------------------------------------------------- */

.produits {
    padding-left: max(7%, calc((100vw - var(--premium-largeur)) / 2));
    padding-right: max(7%, calc((100vw - var(--premium-largeur)) / 2));
    background:
        linear-gradient(
            180deg,
            var(--couleur-fond-sections),
            color-mix(in srgb, var(--couleur-fond-sections) 94%, #ffffff)
        );
}

.produits-intro {
    max-width: 780px;
}

.produits-grille {
    gap: clamp(22px, 2.6vw, 34px);
}

.produit {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--premium-bordure);
    border-radius: var(--arrondi-cartes);
    background: var(--couleur-fond-cartes);
    box-shadow: var(--ombre-cartes);
    transition:
        transform var(--premium-transition),
        box-shadow var(--premium-transition),
        border-color var(--premium-transition);
}

.produit:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--couleur-primaire) 40%, transparent);
    box-shadow: var(--premium-ombre-hover);
}

.produit-image {
    position: relative;
    overflow: hidden;
    height: 330px;
    background:
        linear-gradient(
            145deg,
            color-mix(in srgb, var(--couleur-fond-images) 88%, #ffffff),
            var(--couleur-fond-images)
        );
}

.produit-image img,
.produit-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.produit:hover .produit-image img,
.produit:hover .produit-image video {
    transform: scale(1.025);
}

.produit-informations {
    padding: 28px;
}

.produit-informations h3 {
    color: var(--couleur-titres);
    letter-spacing: -0.01em;
}

.produit-informations p {
    color: var(--couleur-texte-secondaire);
}


/* =====================================================
   BOUTON COMMUN — RETOUR EN HAUT
===================================================== */

#bouton-retour-haut.bouton-retour-haut {
    width: 64px;
    height: 64px;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 16px;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 1000;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgb(154, 107, 69);
    color: #ffffff;
    box-shadow:
        0 12px 32px rgba(45, 41, 38, 0.34),
        0 0 0 5px rgba(154, 107, 69, 0.16);
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -22px);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

#bouton-retour-haut.bouton-retour-haut.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

#bouton-retour-haut.bouton-retour-haut:hover {
    border-color: #ffffff;
    background: rgb(174, 123, 80);
    box-shadow:
        0 16px 38px rgba(45, 41, 38, 0.42),
        0 0 0 7px rgba(154, 107, 69, 0.20);
    transform: translate(-50%, 3px);
}

#bouton-retour-haut.bouton-retour-haut:focus-visible {
    outline: 3px solid rgba(154, 107, 69, 0.42);
    outline-offset: 4px;
}

#bouton-retour-haut.bouton-retour-haut span {
    display: block;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    #bouton-retour-haut.bouton-retour-haut {
        width: 54px;
        height: 54px;
        top: 10px;
        right: auto;
        left: 50%;
        font-size: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #bouton-retour-haut.bouton-retour-haut {
        transition: none;
    }
}


/* =====================================================
   FAVORIS VISITEUR
===================================================== */

.header .acces-favoris {
    width: 52px;
    height: 52px;
    position: absolute;
    right: calc(clamp(28px, 4.5vw, 90px) + 68px);
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    border: 1px solid rgba(154, 107, 69, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: rgb(154, 107, 69);
    text-decoration: none;
    transform: translateY(-50%);
    transition: 180ms ease;
}

.header .acces-favoris:hover {
    background: rgb(154, 107, 69);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.header .acces-favoris > span {
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
}

.header .acces-favoris strong {
    width: 18px;
    min-width: 18px;
    height: 18px;
    padding: 0;
    position: absolute;
    top: -8px;
    right: -10px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--couleur-primaire, #a86b3d);
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
}

.produit,
.produit-similaire {
    position: relative;
}

.bouton-favori {
    margin: 0;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(154, 107, 69, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: rgb(154, 107, 69);
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.bouton-favori:hover {
    background: rgb(154, 107, 69);
    color: #ffffff;
    transform: scale(1.08);
}

.bouton-favori.actif {
    background: rgb(154, 107, 69);
    color: #ffffff;
}

.bouton-favori-carte {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 6;
    font-size: 24px;
    box-shadow: 0 8px 22px rgba(45, 41, 38, 0.18);
}

.bouton-favori-fiche {
    min-height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 2px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bouton-favori-fiche [data-favori-icone] {
    font-family: Arial, sans-serif;
    font-size: 23px;
    line-height: 1;
}

.partage-creation {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 10px;
    position: relative;
}

.partage-creation-bouton,
.partage-creation-copier {
    min-height: 56px;
    border: 1px solid rgba(154, 107, 69, .45);
    background: transparent;
    color: #23452d;
    font: 600 12px Arial, sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.partage-creation-bouton { display: inline-flex; align-items: center; justify-content: center; gap: 11px; }
.partage-creation-bouton > span:first-child { font-size: 20px; line-height: 1; }
.partage-creation-copier { font-size: 20px; letter-spacing: 0; }
.partage-creation-bouton:hover,
.partage-creation-copier:hover { transform: translateY(-2px); border-color: #9a6b45; background: #9a6b45; color: #fff; }
.partage-creation-message { grid-column: 1 / -1; min-height: 18px; color: #6e655d; font-size: 12px; text-align: center; }
.partage-creation-options {
    grid-column: 1 / -1;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid rgba(154, 107, 69, .28);
    background: #fffaf4;
    box-shadow: 0 16px 36px rgba(45, 41, 38, .1);
}
.partage-creation-options[hidden] { display: none !important; }
.partage-creation-options button { min-height: 46px; padding: 8px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(45, 41, 38, .12); background: #fff; color: #3e3935; font-weight: 600; cursor: pointer; }
.partage-creation-options button:hover { border-color: #9a6b45; background: #f5eee5; }
.partage-creation-options b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #23452d; color: #fff; font: 700 15px Arial, sans-serif; }
.partage-creation-options [data-partage-reseau="facebook"] b { background: #1877f2; font-size: 21px; }
.partage-creation-options [data-partage-reseau="pinterest"] b { background: #e60023; }
.partage-creation-options [data-partage-reseau="x"] b { background: #000; }

@media (max-width: 520px) { .partage-creation-options { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
    .header .acces-favoris {
        right: 92px;
    }
}

@media (max-width: 600px) {
    .header .acces-favoris {
        width: 52px;
        height: 52px;
        right: 82px;
    }

    .bouton-favori-carte {
        width: 42px;
        height: 42px;
        top: 11px;
        right: 11px;
    }
}

.badges-produit {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.badge-produit {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border: 1px solid color-mix(in srgb, var(--couleur-primaire) 32%, transparent);
    background: color-mix(in srgb, var(--couleur-primaire) 8%, var(--couleur-fond-cartes));
    color: var(--couleur-primaire);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
}

.badge-piece-unique { color: var(--couleur-bouton); border-color: color-mix(in srgb, var(--couleur-bouton) 30%, transparent); }
.badge-coup-coeur { background: color-mix(in srgb, #b86b66 11%, var(--couleur-fond-cartes)); color: #8b4541; }
.badge-vendu { background: #2d2926; border-color: #2d2926; color: #fff; }
.badge-reserve { background: #eee5d6; color: #765b36; }

.bouton-produit,
.ajouter-panier,
.bouton-commande,
.bouton-relais,
.bouton-paiement {
    border-radius: var(--arrondi-boutons);
    background: var(--couleur-bouton);
    transition:
        transform var(--premium-transition),
        box-shadow var(--premium-transition),
        background var(--premium-transition);
}

.bouton-produit:hover,
.ajouter-panier:hover,
.bouton-commande:hover,
.bouton-relais:hover,
.bouton-paiement:hover {
    transform: translateY(-2px);
    background: var(--couleur-primaire);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--couleur-primaire) 20%, transparent);
}


/* -----------------------------------------------------
   FAQ
----------------------------------------------------- */

.faq {
    padding-left: max(7%, calc((100vw - 1080px) / 2));
    padding-right: max(7%, calc((100vw - 1080px) / 2));
    background: var(--couleur-fond-cartes);
}

.faq-liste {
    max-width: 940px;
}

.faq-item {
    padding: 28px 6px;
    border-bottom: 1px solid var(--premium-bordure);
}

.faq-item h3 {
    color: var(--couleur-titres);
    font-weight: 600;
}

.faq-item p {
    max-width: 830px;
    color: var(--couleur-texte-secondaire);
}


/* -----------------------------------------------------
   CONTACT
----------------------------------------------------- */

.contact {
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--couleur-bouton) 94%, #000000),
            color-mix(in srgb, var(--couleur-bouton) 82%, var(--couleur-primaire))
        );
}

.contact::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    transform: translateX(-50%);
}

.contact-contenu {
    position: relative;
    z-index: 1;
}

.contact .bouton {
    background: var(--couleur-primaire);
}


/* -----------------------------------------------------
   FICHE PRODUIT
----------------------------------------------------- */

.fiche-produit {
    max-width: 1450px;
    margin: 0 auto;
    padding: 95px clamp(24px, 6vw, 90px);
}

.produit-image-grande,
.galerie-principale {
    overflow: hidden;
    border: 1px solid var(--premium-bordure);
    border-radius: var(--arrondi-cartes);
    box-shadow: var(--premium-ombre-douce);
}

.fiche-produit-contenu h1 {
    letter-spacing: -0.025em;
}

.fiche-prix {
    color: var(--couleur-primaire);
}


/* -----------------------------------------------------
   PANIER / COMMANDE
----------------------------------------------------- */

.page-panier,
.commande {
    max-width: 1320px;
}

.ligne-panier {
    border-bottom: 1px solid var(--premium-bordure);
}

.reservation-panier-global,
.recapitulatif-commande,
.livraison-option,
.mondial-relay,
.relais-selectionne,
.acceptation-cgv {
    border-color: var(--premium-bordure);
    border-radius: var(--arrondi-cartes);
    background: var(--couleur-fond-cartes);
    box-shadow: 0 8px 28px rgba(45, 41, 38, 0.05);
}

.champ input,
.champ select,
.champ textarea {
    border-radius: max(4px, calc(var(--arrondi-cartes) * 0.55));
    border-color: var(--premium-bordure);
    background: var(--couleur-fond-cartes);
    transition:
        border-color var(--premium-transition),
        box-shadow var(--premium-transition);
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
    outline: none;
    border-color: var(--couleur-primaire);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--couleur-primaire) 13%, transparent);
}


/* -----------------------------------------------------
   AVIS
----------------------------------------------------- */

.fiche-avis-carte,
.cuivre-carte,
.cuivre-repere,
.legal-section {
    border: 1px solid var(--premium-bordure);
    box-shadow: var(--ombre-cartes);
    transition:
        transform var(--premium-transition),
        box-shadow var(--premium-transition);
}

.fiche-avis-carte:hover,
.cuivre-carte:hover,
.cuivre-repere:hover {
    transform: translateY(-4px);
    box-shadow: var(--premium-ombre-hover);
}


/* -----------------------------------------------------
   PAGE CUIVRE
----------------------------------------------------- */

.cuivre-hero {
    position: relative;
    overflow: hidden;
}

.cuivre-hero-visuel,
.cuivre-cercle {
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--couleur-primaire) 15%, transparent),
        0 22px 50px rgba(45, 41, 38, 0.08);
}

.cuivre-patine {
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--couleur-bouton) 96%, #000000),
            color-mix(in srgb, var(--couleur-bouton) 88%, var(--couleur-primaire))
        );
}


/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */

.footer-site {
    background:
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--couleur-bouton) 97%, #000000),
            color-mix(in srgb, var(--couleur-bouton) 88%, #000000)
        );
}

.footer-conteneur {
    max-width: var(--premium-largeur);
}

.footer-liens a,
.footer-contact a {
    transition: color var(--premium-transition);
}


/* -----------------------------------------------------
   MICRO-ANIMATIONS
----------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
    .hero-content,
    .histoire-image,
    .histoire-contenu,
    .produits-intro {
        animation: apparition-premium 500ms ease both;
    }

    .histoire-image {
        animation-delay: 70ms;
    }

    .histoire-contenu {
        animation-delay: 130ms;
    }

    @keyframes apparition-premium {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 1050px) {
    .header {
        height: auto;
        min-height: 88px;
    }

    .navigation {
        gap: 20px;
    }

    .histoire {
        padding-left: 7%;
        padding-right: 7%;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 14px 24px;
    }

    .navigation a {
        padding: 8px 0;
    }

    .navigation a::after {
        bottom: 2px;
    }

    .hero {
        min-height: auto;
        padding: 82px 24px 92px;
    }

    .histoire {
        min-height: auto;
    }

    .histoire-image::before {
        inset: -12px 16px 16px -12px;
    }

    .image-placeholder {
        height: 390px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 16px 18px 18px;
    }

    .logo img {
        height: 68px;
    }

    .navigation {
        gap: 10px 18px;
    }

    .hero {
        padding: 65px 20px 78px;
    }

    .hero-logo {
        width: 245px;
    }

    .histoire {
        padding-left: 20px;
        padding-right: 20px;
    }

    .histoire-image::before {
        display: none;
    }

    .image-placeholder {
        height: 310px;
    }

    .produit-image {
        height: 285px;
    }

    .produit-informations {
        padding: 24px;
    }

    .contact {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =====================================================
   ACTIONS DU HEADER — PANIER ET FAVORIS UNIFORMISÉS
===================================================== */

.header > .panier,
.header > .acces-favoris {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: 50% !important;
    z-index: 10 !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(154, 107, 69, 0.4) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: rgb(154, 107, 69) !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transform: translateY(-50%) !important;
    transition: background-color 180ms ease, color 180ms ease,
        border-color 180ms ease, box-shadow 180ms ease,
        transform 180ms ease !important;
}

.header > .panier {
    right: clamp(28px, 4.5vw, 90px) !important;
    font-family: Arial, sans-serif !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

.header > .acces-favoris {
    right: calc(clamp(28px, 4.5vw, 90px) + 68px) !important;
}

.header > .panier:hover,
.header > .acces-favoris:hover {
    border-color: rgb(154, 107, 69) !important;
    background: rgb(154, 107, 69) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(66, 42, 25, 0.16) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.header > .panier #compteur-panier,
.header > .acces-favoris [data-compteur-favoris] {
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: -8px !important;
    right: -10px !important;
    display: grid !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgb(154, 107, 69) !important;
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

@media (max-width: 900px) {
    .header > .panier {
        right: 24px !important;
    }

    .header > .acces-favoris {
        right: 92px !important;
    }
}

@media (max-width: 600px) {
    .header > .panier {
        right: 18px !important;
    }

    .header > .acces-favoris {
        right: 86px !important;
    }
}
