/*
Theme Name: Luxe Friperie Child - Corrected
Description: Version corrigée avec couleurs luxueuses
Template: astra
Version: 1.0
*/

@import url("../astra/style.css");

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --dark-bg: #0a0a0a;
    --light-bg: #f8f9fa;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --accent-gray: #6c757d;
}

/* Masquer header/footer sur page d'accueil */
.home .site-header,
.home .site-footer {
    display: none !important;
}

.home .site-content {
    padding-top: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Marques Prestigieuses - LUXUEUSE */
.luxury-brands {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.brands-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 200;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 3px;
    position: relative;
}

.brands-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

.brands-subtitle {
    font-size: 1.4rem;
    color: var(--accent-gray);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Carrousel de marques - MODERNE ET LUXUEUX */
.brands-carousel {
    position: relative;
    overflow: hidden;
    margin: 80px 0;
    padding: 30px 0;
}

.brands-track {
    display: flex;
    animation: scroll 50s linear infinite;
    gap: 60px;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Cards de marques - LUXUEUSES */
.brand-card {
    flex: 0 0 320px;
    height: 180px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Ombres luxueuses sophistiquées */
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.06),
        0 24px 60px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 0 0 1px rgba(212,175,55,0.1);
    
    border: 1px solid rgba(212,175,55,0.15);
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.8s ease;
}

.brand-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.12),
        0 25px 60px rgba(0,0,0,0.08),
        0 35px 80px rgba(0,0,0,0.06),
        0 0 0 2px var(--primary-gold),
        inset 0 1px 0 rgba(255,255,255,1);
}

.brand-card:hover::before {
    left: 100%;
}

.brand-logo {
    width: 140px;
    height: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.3) brightness(1.1);
    z-index: 2;
    position: relative;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
    filter: grayscale(0) brightness(1.2);
}

/* Section Collections - ÉLÉGANTE */
.collections-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.collections-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.collections-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.collections-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.collections-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.collection-card {
    position: relative;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(212,175,55,0.2);
}

.collection-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 50px 40px 40px;
    transition: all 0.4s ease;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(transparent, rgba(212,175,55,0.95));
}

.collection-name {
    font-size: 2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-name {
    transform: translateY(-10px);
    color: var(--dark-bg);
}

.collection-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-description {
    transform: translateY(-10px);
    color: var(--dark-bg);
}

.collection-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.collection-btn:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-3px);
    border-color: white;
}

/* Section Pièces d'Exception - 4 FLIP CARDS LUXUEUSES */
.luxury-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.showcase-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 70px 0;
}

/* Flip Cards - 4 CARTES LUXUEUSES */
.luxe-showcase-card {
    perspective: 1000px;
    height: 600px;
    position: relative;
}

.luxe-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}

.luxe-showcase-card:hover .luxe-card-inner {
    transform: rotateY(180deg);
}

.luxe-card-front,
.luxe-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    border: 3px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 30px 60px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 35px;
}

.luxe-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
}

.luxe-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.luxe-badge {
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-authentifie { background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold)); color: var(--dark-bg); }
.badge-nouveau { background: linear-gradient(135deg, #28a745, #20c997); color: white; }
.badge-rare { background: linear-gradient(135deg, #dc3545, #e83e8c); color: white; }
.badge-exclusif { background: linear-gradient(135deg, #6f42c1, #e83e8c); color: white; }

.luxe-product-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(212,175,55,0.3);
    margin: 0 auto 30px auto;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.luxe-product-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.luxe-product-price {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.luxe-product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 25px 20px 0 20px;
    border-top: 1px solid rgba(212,175,55,0.3);
}

.luxe-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.luxe-detail-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

/* Verso de la carte */
.luxe-card-back {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.luxe-back-content h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.luxe-back-details {
    list-style: none;
    margin-bottom: 40px;
}

.luxe-back-details li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    line-height: 1.5;
}

.luxe-back-details li strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.luxe-add-to-cart {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.luxe-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

/* Nouvelle Section Produits - LUXUEUSE */
.products-showcase {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.products-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.products-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.products-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gray);
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.product-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1rem;
    color: var(--accent-gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

.product-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

/* Statistiques finales */
.showcase-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-top: 100px;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .luxe-showcase-card {
        height: 550px;
    }
    
    .luxe-product-image {
        width: 260px;
        height: 260px;
    }
    
    .luxe-card-front,
    .luxe-card-back {
        padding: 25px;
    }
    
    .brands-track {
        gap: 40px;
    }
    
    .brand-card {
        flex: 0 0 280px;
        height: 160px;
    }
    
    .brand-logo {
        width: 120px;
        height: 70px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-brands,
.collections-section,
.luxury-showcase,
.products-showcase {
    animation: fadeInUp 0.8s ease-out;
}



/* ===== WOOCOMMERCE PAGES STYLING - HAUTE SPÉCIFICITÉ ===== */

/* Container principal - Force l'application */
body.woocommerce-page .woocommerce,
body.woocommerce .woocommerce,
body .woocommerce {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    font-family: 'Georgia', serif !important;
}

/* Titres de pages */
body .woocommerce .entry-title,
body .woocommerce h1.page-title {
    font-size: 3rem !important;
    font-weight: 200 !important;
    color: var(--text-dark) !important;
    text-align: center !important;
    margin: 0 0 50px 0 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

/* Messages */
body .woocommerce-message,
body .woocommerce-error,
body .woocommerce-info {
    padding: 15px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 25px !important;
    border: none !important;
    font-weight: 500 !important;
}

body .woocommerce-message {
    background: #d4edda !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}

body .woocommerce-error {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}

/* Table du panier - Spécificité maximale */
body .woocommerce table.shop_table {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e9ecef !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

body .woocommerce table.shop_table th {
    background: var(--light-bg) !important;
    padding: 20px 15px !important;
    font-size: 0.8rem !important;
    color: var(--accent-gray) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #e9ecef !important;
    border: none !important;
}

body .woocommerce table.shop_table td {
    padding: 25px 15px !important;
    border-bottom: 1px solid #e9ecef !important;
    vertical-align: middle !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

body .woocommerce table.shop_table tr:hover {
    background: rgba(212, 175, 55, 0.02) !important;
}

/* Images produits */
body .woocommerce table.shop_table .product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

/* Noms de produits */
body .woocommerce table.shop_table .product-name a {
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

body .woocommerce table.shop_table .product-name a:hover {
    color: var(--primary-gold) !important;
}

/* Prix */
body .woocommerce table.shop_table .product-price,
body .woocommerce table.shop_table .product-subtotal {
    font-weight: 600 !important;
    color: var(--text-dark) !important;
}

/* Inputs de quantité */
body .woocommerce table.shop_table .qty {
    width: 70px !important;
    padding: 8px 12px !important;
    border: 1px solid #e9ecef !important;
    border-radius: 6px !important;
    text-align: center !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

body .woocommerce table.shop_table .qty:focus {
    outline: none !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

/* Bouton supprimer */
body .woocommerce table.shop_table .product-remove a {
    color: #dc3545 !important;
    font-size: 20px !important;
    text-decoration: none !important;
    padding: 8px !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

body .woocommerce table.shop_table .product-remove a:hover {
    background: rgba(220, 53, 69, 0.1) !important;
}

/* Actions du panier */
body .woocommerce table.shop_table .actions {
    background: var(--light-bg) !important;
    padding: 30px 20px !important;
}

body .woocommerce table.shop_table .coupon {
    margin-bottom: 20px !important;
}

body .woocommerce table.shop_table .coupon input[type="text"] {
    padding: 12px 15px !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    margin-right: 10px !important;
    width: 200px !important;
}

/* Boutons - Force l'application */
body .woocommerce .button,
body .woocommerce button.button,
body .woocommerce input.button {
    background: var(--primary-gold) !important;
    color: white !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-family: 'Georgia', serif !important;
}

body .woocommerce .button:hover,
body .woocommerce button.button:hover,
body .woocommerce input.button:hover {
    background: #b8941f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3) !important;
}

/* Bouton checkout principal */
body .woocommerce .wc-proceed-to-checkout .checkout-button {
    width: 100% !important;
    background: linear-gradient(135deg, var(--text-dark) 0%, #000 100%) !important;
    color: white !important;
    padding: 18px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

body .woocommerce .wc-proceed-to-checkout .checkout-button:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%) !important;
}

/* Totaux du panier */
body .woocommerce .cart-collaterals {
    margin-top: 40px !important;
}

body .woocommerce .cart_totals {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e9ecef !important;
    padding: 30px !important;
    float: right !important;
    width: 400px !important;
}

body .woocommerce .cart_totals h2 {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: var(--text-dark) !important;
    margin: 0 0 25px 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid var(--primary-gold) !important;
    padding-bottom: 15px !important;
}

body .woocommerce .cart_totals table {
    width: 100% !important;
    border-collapse: collapse !important;
}

body .woocommerce .cart_totals table th,
body .woocommerce .cart_totals table td {
    padding: 15px 0 !important;
    border-bottom: 1px solid #e9ecef !important;
    text-align: left !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

body .woocommerce .cart_totals table .order-total th,
body .woocommerce .cart_totals table .order-total td {
    border-bottom: 2px solid var(--primary-gold) !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    padding-top: 20px !important;
}

/* Formulaire de checkout - Spécificité maximale */
body .woocommerce-checkout .col2-set {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

body .woocommerce-checkout .col-1,
body .woocommerce-checkout .col-2 {
    flex: 1 !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e9ecef !important;
    padding: 30px !important;
}

body .woocommerce-checkout h3 {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    margin: 0 0 25px 0 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid var(--primary-gold) !important;
    padding-bottom: 10px !important;
}

/* Champs de formulaire */
body .woocommerce-checkout .form-row label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

body .woocommerce-checkout .form-row .required {
    color: #dc3545 !important;
}

body .woocommerce-checkout .form-row input[type="text"],
body .woocommerce-checkout .form-row input[type="email"],
body .woocommerce-checkout .form-row input[type="tel"],
body .woocommerce-checkout .form-row select,
body .woocommerce-checkout .form-row textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
    box-sizing: border-box !important;
    font-family: 'Georgia', serif !important;
}

body .woocommerce-checkout .form-row input:focus,
body .woocommerce-checkout .form-row select:focus,
body .woocommerce-checkout .form-row textarea:focus {
    outline: none !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

body .woocommerce-checkout .form-row {
    margin-bottom: 20px !important;
}

/* Révision de commande */
body .woocommerce-checkout #order_review {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e9ecef !important;
    padding: 30px !important;
    margin-top: 30px !important;
}

/* Bouton de commande */
body .woocommerce-checkout #place_order {
    width: 100% !important;
    background: linear-gradient(135deg, var(--text-dark) 0%, #000 100%) !important;
    color: white !important;
    border: none !important;
    padding: 18px !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 25px !important;
    font-family: 'Georgia', serif !important;
}

body .woocommerce-checkout #place_order:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3) !important;
}

/* Panier vide */
body .woocommerce .cart-empty {
    text-align: center !important;
    padding: 80px 20px !important;
    background: var(--light-bg) !important;
    border-radius: 12px !important;
    font-size: 1.2rem !important;
    color: var(--accent-gray) !important;
}

body .woocommerce .return-to-shop {
    text-align: center !important;
    margin-top: 30px !important;
}

/* Responsive - Force l'application */
@media (max-width: 768px) {
    body .woocommerce {
        padding: 30px 15px !important;
    }
    
    body .woocommerce .entry-title,
    body .woocommerce h1.page-title {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }

    body .woocommerce-checkout .col2-set {
        flex-direction: column !important;
        gap: 30px !important;
    }

    body .woocommerce .cart_totals {
        width: 100% !important;
        float: none !important;
        margin-top: 30px !important;
    }

    body .woocommerce table.shop_table th,
    body .woocommerce table.shop_table td {
        padding: 15px 8px !important;
        font-size: 0.9rem !important;
    }

    body .woocommerce table.shop_table .product-thumbnail img {
        width: 60px !important;
        height: 60px !important;
    }
    
    body .woocommerce table.shop_table .coupon input[type="text"] {
        width: 100% !important;
        margin-bottom: 10px !important;
        margin-right: 0 !important;
    }
}
/* WooCommerce Fix */
.woocommerce .wc-proceed-to-checkout { display: none !important; }
.woocommerce .button { background: #D4AF37 !important; color: white !important; }
.woocommerce .button:hover { background: #b8941f !important; }
