/* Palette et typographie inspirées de la signature visuelle ABORE */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FAF8F5;
    color: #2D2D2D;
}

/* En-tête */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 0;
    background: rgba(26, 26, 26, 0.35);
    backdrop-filter: blur(10px);
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #FAF8F5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #C9A961;
}

/* Titre principal */
.panier-titre-section {
    margin-top: 140px;
    text-align: center;
}

.panier-titre {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1A1A1A;
}

/* Contenu du panier */
.panier-container {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 40px;
}

/* Message panier vide */
.panier-vide {
    font-size: 20px;
    text-align: center;
    color: #555;
}

/* Liste des articles */
.panier-item {
    display: flex;
    gap: 30px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.panier-image {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
}

.panier-details {
    flex: 1;
}

.panier-nom {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.panier-prix {
    font-size: 18px;
    font-weight: 600;
    color: #C9A961;
    margin-bottom: 15px;
}

.panier-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-panier {
    padding: 10px 16px;
    background: #C9A961;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 8px;
}

.btn-supprimer {
    padding: 10px 16px;
    background: #9D7B3A;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* Total général */
.panier-total-container {
    text-align: right;
    margin-top: 40px;
}

.panier-total-titre {
    font-size: 26px;
    font-family: 'Playfair Display', serif;
}

.panier-total {
    font-size: 24px;
    color: #C9A961;
    margin-top: 10px;
    margin-bottom: 25px;
}

.btn-valider {
    padding: 15px 30px;
    text-decoration: none;
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    color: #1A1A1A;
    border-radius: 30px;
    font-weight: 600;
}
