/* ==========================================================================
   1. GLOBAL STYLES & RESET (issu de inc.head.php)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a !important;
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

.titre {
    font-family: 'Playfair Display', serif;
}

.gold {
    color: #c9a84c;
}

.label-section {
    font-size: 11px;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-section::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c9a84c;
}

.btn-gold {
    background: #c9a84c;
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 2px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-gold:hover {
    background: #b8943e;
    color: #0a0a0a;
}

.btn-outline-gold {
    border: 1px solid #c9a84c;
    color: #c9a84c;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 2px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    background: #c9a84c;
    color: #0a0a0a;
}

/* ==========================================================================
   2. PAGE - ACCUEIL (issu de v-accueil.php)
   ========================================================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f5f0e8;
}

.hero-title em {
    color: #c9a84c;
    font-style: italic;
}

.hero-sub {
    font-size: 15px;
    color: #888;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 2.5rem;
}

.hero-right {
    position: relative;
    background: linear-gradient(135deg, #1a0a00 0%, #2d1500 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(10, 10, 10, 0.9);
    border: 0.5px solid #2a2a2a;
    padding: 1rem 1.25rem;
    border-radius: 4px;
}

.badge-label {
    font-size: 10px;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.badge-val {
    font-size: 22px;
    font-weight: 600;
    color: #f5f0e8;
}

.badge-sub {
    font-size: 11px;
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0.5px solid #1a1a1a;
}

.stat {
    padding: 2rem 2.5rem;
    border-right: 0.5px solid #1a1a1a;
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #c9a84c;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section {
    padding: 5rem 2.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #f5f0e8;
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.card-plat {
    background: #111;
    border: 0.5px solid #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.card-plat:hover {
    border-color: #c9a84c;
}

.card-plat img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-nom {
    font-size: 15px;
    font-weight: 500;
    color: #f5f0e8;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-prix {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #c9a84c;
}

.card-lien {
    font-size: 11px;
    color: #c9a84c;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        min-height: 300px;
    }

    .hero-title {
        font-size: 36px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   3. PAGE - CARTE / LISTE PRODUITS (issu de v.lstProduit.php)
   ========================================================================== */
.carte-header {
    padding: 5rem 2.5rem 3rem;
    border-bottom: 0.5px solid #1e1e1e;
}

.carte-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #f5f0e8;
    margin-bottom: 1rem;
}

.carte-title em {
    color: #c9a84c;
    font-style: italic;
}

.carte-sub {
    font-size: 15px;
    color: #666;
    max-width: 500px;
    line-height: 1.8;
}

.carte-section {
    padding: 4rem 2.5rem;
}

.carte-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Rupture de stock */
.card-plat.rupture {
    opacity: 0.55;
    pointer-events: none;
    cursor: default;
}

.card-rupture-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}

@media (max-width: 992px) {
    .carte-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .carte-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carte-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .carte-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   4. PAGE - DETAIL PRODUIT (issu de v-unProduit.php)
   ========================================================================== */
.produit-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.produit-img {
    position: relative;
    overflow: hidden;
    background: #111;
}

.produit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.produit-retour {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 10, 0.8);
    padding: 8px 16px;
    border-radius: 2px;
    border: 0.5px solid #2a2a2a;
}

.produit-retour:hover {
    color: #c9a84c;
}

.produit-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
    background: #0d0d0d;
    border-left: 0.5px solid #1e1e1e;
}

.produit-nom {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #f5f0e8;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.produit-prix {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #c9a84c;
    margin-bottom: 2rem;
}

.produit-separateur {
    width: 40px;
    height: 1px;
    background: #c9a84c;
    margin-bottom: 2rem;
}

.produit-desc-label {
    font-size: 11px;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.produit-desc {
    font-size: 15px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.quantite-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantite-label {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Custom Quantity Selector */
.custom-qty-wrapper {
    display: flex;
    align-items: center;
    background: #0a0a0a;
    border: 0.5px solid #2a2a2a;
    border-radius: 2px;
    overflow: hidden;
    width: fit-content;
    transition: border-color 0.2s;
}

.custom-qty-wrapper:focus-within {
    border-color: #c9a84c;
}

.custom-qty-btn {
    background: transparent;
    color: #c9a84c;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.custom-qty-btn:hover {
    background: #1a1a1a;
}

.custom-qty-input {
    width: 40px;
    background: transparent;
    border: none;
    color: #f5f0e8;
    text-align: center;
    font-size: 14px;
    outline: none;
    -moz-appearance: textfield;
}

.custom-qty-input::-webkit-outer-spin-button,
.custom-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-panier {
    background: #c9a84c;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 2px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.btn-panier:hover {
    background: #b8943e;
}

@media (max-width: 768px) {
    .produit-wrap {
        grid-template-columns: 1fr;
    }

    .produit-img {
        min-height: 350px;
    }

    .produit-nom {
        font-size: 32px;
    }

    .produit-info {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   5. PAGE - PANIER (issu de v-panier.php)
   ========================================================================== */
.panier-header {
    padding: 4rem 2.5rem 2rem;
    border-bottom: 0.5px solid #1e1e1e;
}

.panier-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #f5f0e8;
    margin-bottom: 0.5rem;
}

.panier-title em {
    color: #c9a84c;
    font-style: italic;
}

.panier-count {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

.panier-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    padding: 3rem 2.5rem;
    align-items: start;
}

.panier-liste {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panier-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: #111;
    border: 0.5px solid #1e1e1e;
    border-radius: 4px;
    padding: 1.25rem;
    transition: border-color 0.2s;
}

.panier-item:hover {
    border-color: #2a2a2a;
}

.panier-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.item-nom {
    font-size: 15px;
    font-weight: 500;
    color: #f5f0e8;
    margin-bottom: 4px;
}

.item-prix-unit {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-quantite {
    background: #0a0a0a;
    border: 0.5px solid #2a2a2a;
    color: #f5f0e8;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 14px;
    width: 70px;
    text-align: center;
    outline: none;
}

.item-quantite:focus {
    border-color: #c9a84c;
}

.item-supprimer {
    font-size: 11px;
    color: #444;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.item-supprimer:hover {
    color: #c9a84c;
}

.item-sous-total {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #c9a84c;
    white-space: nowrap;
}

.panier-vide {
    text-align: center;
    padding: 5rem 2.5rem;
}

.panier-vide-titre {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #f5f0e8;
    margin-bottom: 1rem;
}

.panier-vide-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 2rem;
}

.recap {
    background: #111;
    border: 0.5px solid #1e1e1e;
    border-radius: 4px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.recap-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #f5f0e8;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.5px solid #1e1e1e;
}

.recap-ligne {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.recap-label {
    font-size: 13px;
    color: #666;
}

.recap-val {
    font-size: 13px;
    color: #f5f0e8;
}

.recap-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 0.5px solid #1e1e1e;
    margin-bottom: 1.5rem;
}

.recap-total-label {
    font-size: 14px;
    color: #f5f0e8;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recap-total-val {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #c9a84c;
}

.btn-commander {
    background: #c9a84c;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 2px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    margin-bottom: 1rem;
}

.btn-commander:hover {
    background: #b8943e;
}

.btn-continuer {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px;
}

.btn-continuer:hover {
    color: #c9a84c;
}

@media (max-width: 992px) {
    .panier-wrap {
        grid-template-columns: 1fr;
    }

    .recap {
        position: static;
    }
}

@media (max-width: 576px) {
    .panier-item {
        grid-template-columns: 80px 1fr;
    }

    .item-sous-total {
        display: none;
    }

    .panier-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   6. PAGE - COMMANDE (issu de v-commande.php)
   ========================================================================== */
.commande-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    padding: 3rem 2.5rem;
    align-items: start;
}

.commande-header {
    padding: 4rem 2.5rem 2rem;
    border-bottom: 0.5px solid #1e1e1e;
}

.commande-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #f5f0e8;
    margin-bottom: 0.5rem;
}

.commande-title em {
    color: #c9a84c;
    font-style: italic;
}

.section-form {
    margin-bottom: 2.5rem;
}

.section-form-title {
    font-size: 13px;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.5px solid #1e1e1e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-form-title::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #c9a84c;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 11px;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    background: #111;
    border: 0.5px solid #2a2a2a;
    color: #f5f0e8;
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 14px;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #c9a84c;
}

.form-input::placeholder {
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.checkbox-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #c9a84c;
    cursor: pointer;
}

.checkbox-wrap label {
    font-size: 13px;
    color: #888;
    cursor: pointer;
}

.livraison-section {
    transition: opacity 0.3s;
}

.livraison-section.masque {
    opacity: 0.3;
    pointer-events: none;
}

.btn-payer {
    background: #c9a84c;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 2px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.btn-payer:hover {
    background: #b8943e;
}

@media (max-width: 992px) {
    .commande-wrap {
        grid-template-columns: 1fr;
    }

    .recap {
        position: static;
    }
}

@media (max-width: 576px) {

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .commande-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   7. PAGE - CONFIRMATION (issu de v-confirmation.php)
   ========================================================================== */
.confirmation-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2.5rem;
    text-align: center;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.confirmation-icon i {
    font-size: 32px;
    color: #c9a84c;
}

.confirmation-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #f5f0e8;
    margin-bottom: 1rem;
}

.confirmation-title em {
    color: #c9a84c;
    font-style: italic;
}

.confirmation-sub {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.confirmation-detail {
    background: #111;
    border: 0.5px solid #1e1e1e;
    border-radius: 4px;
    padding: 2rem 3rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 550px;
}

.confirmation-section-title {
    font-size: 11px;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.5px solid #1e1e1e;
    text-align: left;
}

.confirmation-ligne {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 0.75rem;
}

.confirmation-label {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.confirmation-val {
    font-size: 13px;
    color: #f5f0e8;
    text-align: right;
}

.confirmation-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 0.5px solid #1e1e1e;
}

.confirmation-total-label {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.confirmation-total-val {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #c9a84c;
}

/* ==========================================================================
   8. PAGE - REDIRECTION PAIEMENT (issu de v-paiement.php)
   ========================================================================== */
.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    border-top-color: #c9a84c;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.redirect-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #f5f0e8;
    margin-bottom: 1rem;
}

.redirect-text {
    color: #888;
    font-size: 15px;
}

/* ==========================================================================
   9. PAGE - PAIEMENT ANNULE (issu de v-paiement-annule.php)
   ========================================================================== */
.annule-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2.5rem;
    text-align: center;
}

.annule-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ff4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.annule-icon i {
    font-size: 32px;
    color: #ff4d4d;
}

.annule-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #f5f0e8;
    margin-bottom: 1rem;
}

.annule-sub {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 3rem;
}

/* ==========================================================================
   10. PAGE - CONTACT (issu de v-contact.php)
   ========================================================================== */
.contact-section {
    padding: 5rem 2.5rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5f0e8;
    margin-bottom: 1.5rem;
}

.contact-title em {
    color: #c9a84c;
    font-style: italic;
}

.contact-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.info-label {
    font-size: 11px;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 15px;
    color: #f5f0e8;
    line-height: 1.6;
}

.contact-form {
    background: #111;
    border: 0.5px solid #1e1e1e;
    border-radius: 4px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: #0a0a0a;
    border: 0.5px solid #2a2a2a;
    border-radius: 4px;
    padding: 1rem;
    color: #f5f0e8;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #c9a84c;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: #c9a84c;
    color: #1a0a00;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #d4b86a;
    transform: translateY(-2px);
}

.alert-success {
    background: rgba(201, 168, 76, 0.1);
    border: 0.5px solid #c9a84c;
    color: #c9a84c;
    padding: 1rem;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 1.5rem;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23c9a84c%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* ==========================================================================
   Mentions Légales
   ========================================================================== */
.mentions-header {
    text-align: center;
    padding: 6rem 2rem 3rem;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}

.mentions-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mentions-sub {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mentions-section {
    padding: 5rem 2rem;
    background: #111;
}

.mentions-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mentions-block {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
}

.mentions-block-title {
    color: #c9a84c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mentions-text {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
}

.mentions-text strong {
    color: #f5f0e8;
}

/* ==========================================================================
   Toast Notification Newsletter
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: -100px; /* Caché en bas */
    right: 30px;
    background: #1a1a1a;
    border-left: 4px solid #c9a84c;
    color: #f5f0e8;
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
}

.toast-notification.show {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

.toast-icon {
    background: rgba(201, 168, 76, 0.1);
    color: #c9a84c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.toast-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #c9a84c;
    margin-bottom: 0.25rem;
}

.toast-text {
    font-size: 0.85rem;
    color: #999;
}