/* ==========================================
   BOÎTE À OUTILS PERSONNALISÉE - STYLES
   Version 1.1 - Hero Image Full Height Desktop
   Date: 31 Décembre 2025
   ========================================== */

/* ==========================================
   1. CSS VARIABLES
   ========================================== */
:root {
    /* Couleurs principales */
    --color-primary: #fdd835;
    --color-secondary: #ff0000;
    --color-dark: #2c3135;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-light: #f5f5f5;
    --color-background-lighter: #f9f9f9;

    /* Gradient */
    --gradient-purple: linear-gradient(135deg, #764ba2 0%, #667eea 100%);

    /* Typographie */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;

    /* Espacements */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 60px;
    --spacing-xxxl: 80px;

    /* Border radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 50px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Ombres */
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 15px rgba(0,0,0,0.15);
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Accessibilité : masquer visuellement mais garder pour lecteurs d'écran */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ==========================================
   3. LAYOUT UTILITIES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: clamp(4rem, 5vw, 4rem);

    line-height: 1; /* 1 fois la taille de police */


    font-weight: 800;
    text-align: center;
    color: #727070;
    margin-bottom: var(--spacing-xl);
}








/* ==========================================
   3. PAYEMENT LOGOS
   ========================================== */



    <!-- Styles pour la section logos sécurité -->
    <style>


       


        /* Conteneur reste identique */
        .payment-logo.medium {
            padding: 8px 16px;     /* Au lieu de 12px 20px */
        }

        .payment-logo.medium img {
            height: 40px;          /* Image plus grande ! */
        }

        /* Encore plus grand */
        .payment-logo.large {
            padding: 6px 12px;     /* Padding minimal */
        }

        .payment-logo.large img {
            height: 48px;          /* Image très grande */
        }

        /* L'image dépasse légèrement du conteneur : */

        .payment-logo.fill img {
        max-height: 100%;      /* Remplit toute la hauteur */
        max-width: 100%;       /* Remplit toute la largeur */
        height: auto;
        width: auto;
        }

        /* L'image remplit automatiquement tout l'espace disponible : */

        .payment-logo.overflow {
            overflow: visible;     /* Permet le débordement */
        }

        .payment-logo.overflow img {
            height: 45px;          /* Plus grand que l'espace */
            max-width: 110%;       /* Peut dépasser de 10% */
        }







        .payment-section {
            background: #f9f9f9;
            padding: 48px 24px;
            text-align: center;
        }

        .payment-section h2 {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 32px;
        }

        .payment-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto 48px;
        }

        .payment-logo {
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 12px 20px;
            /* Tous les encadrés ont la même dimension */
            width: 90px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .payment-logo:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .payment-logo img {
            /* Tous les logos ont la même hauteur */
            height: 32px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
        }

        .security-section {
            max-width: 600px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid #e5e5e5;
        }

        .security-section h3 {
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .security-section p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .lock-icon {
            width: 16px;
            height: 16px;
            fill: #4caf50;
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .payment-section {
                padding: 40px 20px;
            }

            .payment-section h2 {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .payment-logos {
                gap: 12px;
                margin-bottom: 32px;
            }

            .payment-logo {
                padding: 10px 16px;
                width: 85px;
                height: 52px;
            }

            .payment-logo img {
                height: 28px;
            }

            .security-section h3 {
                font-size: 14px;
            }

            .security-section p {
                font-size: 13px;
            }
        }

        /* Responsive - Small Mobile */
        @media (max-width: 480px) {
            .payment-logos {
                gap: 10px;
            }

            .payment-logo {
                width: 80px;
                height: 50px;
            }

            .payment-logo img {
                height: 26px;
            }


        }



    
    </style>










/* ==========================================
   4. BANNER PROMOTIONNELLE
   ========================================== */

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


.promo-banner {
    background-color: var(--color-dark);
    color: white;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.promo-text {
    font-size: var(--font-size-small);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.promo-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: var(--spacing-xs) 24px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.promo-btn:hover {
    background: white;
    color: var(--color-dark);
}

/* ==========================================
   5. HEADER & NAVIGATION
   ========================================== */
.main-header {
    background: var(--color-primary);
    padding: 15px var(--spacing-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Logo */
.logo img {
    max-width: 370px;
    height: auto;
}

/* Navigation Desktop */
.nav-desktop {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-desktop a {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.nav-desktop a:hover {
    color: var(--color-secondary);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    position: relative;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.icon-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text);
}

/* Cart Badge */
.cart-badge {
    background: var(--color-secondary);
    color: white;
    border-radius: var(--radius-full);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: 2px;
    right: 2px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    padding: 5px;
    flex-direction: column;
    gap: 4px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Search Bar */
.search-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 15px var(--spacing-md);
    box-shadow: var(--shadow-md);
    animation: slideDown var(--transition-normal);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-bar.active {
    display: block;
}

.search-bar input {
    width: 100%;
    max-width: 600px;
    padding: var(--spacing-sm) 15px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-family);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--color-secondary);
}

/* Navigation Mobile */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left var(--transition-normal);
    z-index: 2000;
    padding: 80px var(--spacing-lg) var(--spacing-lg);
}

.nav-mobile.active {
    left: 0;
}

.nav-mobile a {
    display: block;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
    transition: color var(--transition-normal);
}

.nav-mobile a:hover {
    color: var(--color-secondary);
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ==========================================
   6. FEATURES TICKER (Barre défilante)
   ========================================== */
.features-ticker {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.features-track {
    display: flex;
    gap: 50px;
    animation: scroll 100s linear infinite;
    width: max-content;
}

.features-track.paused {
    animation-play-state: paused;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    white-space: nowrap;
    padding: 0 var(--spacing-md);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.3em;
    /* font-size: var(--font-size-small); 
    font-weight: 500;
    */
    font-weight: 700;
    color: var(--color-text);
}

/* REMPLACER LA SECTION 7 PAR CECI : */

/* ==========================================
   7. HERO SECTION ★★★ MODIFIÉ ★★★
   ========================================== */
.hero-section {
    background: var(--color-background);
    padding: 0;
}

/* ★ Container SANS max-width pour aller jusqu'aux bords */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* 50% / 50% */
    gap: 0;  /* ★ MODIFIÉ : était var(--spacing-xl) */
    align-items: stretch;
    min-height: 600px;
    max-width: none;  /* ★ NOUVEAU : enlève la limite de largeur */
    margin: 0;        /* ★ MODIFIÉ : était "0 auto" */
    padding: 0;       /* ★ NOUVEAU : aucun padding */
}

/* ★ Image va jusqu'au bord gauche */
.hero-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* ★ Contenu avec padding pour respiration */
.hero-content {
    font-size: 1.8em;
    line-height: 0.9; /* 1.2 fois la taille de police */
    
    padding: var(--spacing-xl);  /* ★ MODIFIÉ : plus de padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 620px;  /* ★ NOUVEAU : limite la largeur du texte */
    padding-left: 80px;
   
}

    .hero-description {
        font-size: 1.2rem;
        line-height: 1.2; /* 1.2 fois la taille de police */
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0px;
    }


/* ==========================================
   8. BUTTONS (CTA)
   ========================================== */
.cta-btn {
    display: inline-block;
    padding: 15px var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-normal);
    border: none;
    margin-top: 15px;
    margin-bottom: 15px;
}

.cta-btn--primary {
    background: #000000;
    color: white;
}

.cta-btn--primary:hover {
    background: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn--secondary {
    background: var(--color-secondary);
    color: white;
    font-size: 20px;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.cta-btn--secondary:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Mobile - 768px */
/* Mobile - 768px */
@media (max-width: 768px) {
    .cta-btn--white {
        background: transparent;      /* ← Transparent */
        color: white;                 /* ← Texte blanc */
        padding: 14px 30px;
        font-size: 16px;
        border: 2px solid white;      /* ← Bordure blanche */
    }
    
    .cta-btn--white:hover {
        background: white;            /* ← Blanc au hover */
        color: var(--color-text);     /* ← Texte foncé au hover */
    }
}


.cta-btn--dark {
    background: #000000;
    color: white;
    border-radius: var(--radius-sm);
}

.cta-btn--dark:hover {
    background: var(--color-text);
    transform: translateY(-2px);
}

/* ==========================================
   9. PRODUCTS SECTION
   ========================================== */
.products-section {
    background: white;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xxl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--color-background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
    
    /* ↓ AJOUT : Flexbox pour structure verticale */
    display: flex;
    flex-direction: column;
    height: 100%;  /* Prend toute la hauteur disponible */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card--featured {
    border: 2px solid var(--color-primary);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
    font-weight: 600;
}

.product-badge--premium {
    background: var(--color-primary);
}

.product-badge--prestige {
    background: var(--color-secondary);
    color: white;
}

.product-content {
    padding: var(--spacing-md);
    
    /* ↓ AJOUT : Flexbox pour organiser le contenu */
    display: flex;
    flex-direction: column;
    flex: 1;  /* Prend tout l'espace restant */
}
.product-name {
    font-size: 18px;
    font-weight: 800;
    color: #727070;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1.3em;
    font-size: var(--font-size-small);
    margin-bottom: 5px;
    line-height: 1.4;
    flex: 1;  /* ← CLEF : S'adapte à l'espace disponible */
}


.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 15px;
}



/* ============================================================
   BOUTON "BUY NOW" DANS PRODUCT-CARD (Grid Layout)
   ============================================================ */

/* Bouton Buy Now - identique au bestseller-btn */
.product-btn {
    width: 100%;
    background: var(--color-btn-dark, #2c3135);
    color: white;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-family);
    margin-top: auto; /* Pousse le bouton en bas */
}

.product-btn:hover {
    background: var(--color-btn-hover, #1a1d1f);
    transform: translateY(-2px);
}

/* Ajustements pour .product-content */
.products-section .product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--spacing-md);
}

.products-section .product-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 var(--spacing-sm) 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    flex-shrink: 0;
    padding-bottom: 20px;
}

.products-section .product-price {
    margin: var(--spacing-xs) 0;
    flex-shrink: 0;
}

.products-section .product-price .price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}

/* Responsive Mobile */
@media (max-width: 480px) {
    .product-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .products-section .product-name {
        font-size: 13px;
        min-height: 36px;
    }
    
    .products-section .product-price .price-current {
        font-size: 18px;
    }
}


/* ↓ LE BOUTON EST POUSSÉ VERS LE BAS */
.product-content .cta-btn--secondary {
    display: block;
    margin: 0 auto;
    width: fit-content;
    margin-top: auto;  /* ← MAGIE : Pousse le bouton en bas */
}

/* ==========================================
   10. TESTIMONIALS SLIDER SECTION
   ========================================== */

.testimonials-slider-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 300px;
}

.testimonial-slide.active {
    display: block;
    animation: fadeInSlide 0.6s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    font-size: 28px;
    color: #fdd835;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

/* REVIEWS DOTS - FIX */
.reviews-dots {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 10px 0;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.review-dot:hover {
    border-color: #999;
    transform: scale(1.1);
}

.review-dot.active {
    background: #999;        /* Gris clair */
    border-color: #999;
    transform: scale(1.2);
}


/* Responsive */
@media (max-width: 768px) {
    .testimonials-slider-section {
        padding: 60px 20px;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .testimonial-stars {
        font-size: 24px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .reviews-dots {
        gap: 10px;
        margin-top: 24px;
    }
    
    .review-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        padding: 24px 16px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author-name {
        font-size: 14px;
    }
    
    .reviews-dots {
        gap: 8px;
    }
    
    .review-dot {
        width: 8px;
        height: 8px;
    }
}


/* ==========================================
   11. ABOUT SECTION
   ========================================== */
.about-section {
    background: white;
    padding: var(--spacing-md);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-text {
    font-size: 1.2em;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
    margin-top: 30px;
}

/* ==========================================
   12. EXCLUSIVE OFFER SECTION
   ========================================== */
.exclusive-offer-section {
    background: var(--gradient-purple);
    padding: var(--spacing-xxxl) var(--spacing-md);
    text-align: center;
    color: white;
}

.exclusive-offer-content {
    max-width: 800px;
    margin: 0 auto;
}

.exclusive-offer-avatar {
    margin: 0 auto 30px;
}

.exclusive-offer-avatar img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    border: 5px solid white;
    margin: 0 auto;
}

.exclusive-offer-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.exclusive-offer-text {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: var(--spacing-lg);
}

/* ==========================================
   13. SHIPPING SECTION
   ========================================== */
.shipping-section {
    background: var(--color-background-light);
    padding: var(--spacing-xxxl) var(--spacing-md);
}

.shipping-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.shipping-highlight {
    font-size: var(--font-size-large);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 600;
}

.shipping-divider {
    border: 2px solid var(--color-text);
    width: 50px;
    margin: var(--spacing-md) 0;
}

.shipping-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ==========================================
   14. PARIS SECTION
   ========================================== */
.paris-section {
    background: white;
    padding: var(--spacing-md);
}

.paris-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.paris-image {
    position: relative;
   
    overflow: hidden;
}

.paris-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.paris-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.paris-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.paris-location {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-text);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) 0;
    font-size: 24px;
}

/* ==========================================
   15. FOOTER
   ========================================== */
.footer {
    background: white;
    text-align: center;
    color: #999999;
    font-size: 12px;
    border-top: 1px solid #eeeeee;
}

.footer-text {
    margin: 10px 0;
}

.footer-links {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: #999999;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-text);
}

/* ==========================================
   16. RESPONSIVE DESIGN
   ========================================== */

/* Tablette (≤ 768px) */
@media (max-width: 768px) {
    /* Header */
    .nav-desktop {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    .logo img {
        max-width: 200px;
    }

    .header-actions {
        gap: var(--spacing-sm);
    }

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    /* Promo */
    .promo-text {
        font-size: 10px;
    }

    .promo-btn {
        padding: 6px 16px;
        font-size: 12px;
    }

    /* Features Ticker */
    .feature-item {
        gap: var(--spacing-xs);
        padding: 0 15px;
    }

    .feature-icon {
        font-size: 24px;
    }

    .feature-text {
        font-size: 15px;
    }

    /* Hero - ★ MODIFIÉ pour mobile ★ */
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0;
        min-height: auto;  /* ★ Pas de min-height forcée en mobile */
    }

    .hero-image {
        order: 1;
        min-height: 400px;  /* ★ Hauteur fixe en mobile */
    }

    .hero-image img {
        position: relative;  /* ★ Position normale (pas absolute) en mobile */
        width: 100%;
        height: 400px;       /* ★ Hauteur fixe */
        border-radius: 0;
    }

    .hero-content {
        order: 2;
        padding: 24px 24px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 0.9; /* 1.2 fois la taille de police */
        margin-bottom: 10px;
        margin-left: px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.2; /* 1.2 fois la taille de police */
        margin-top: 10px;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    /* Grids */
    .about-grid,
    .shipping-grid,
    .paris-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .logo img {
        max-width: 170px;
    }

    .header-actions {
        gap: var(--spacing-xs);
    }

    .icon-btn {
        padding: 4px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-top: 20px;
        margin-bottom: 20px;
        
    }

    .cta-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 16px;
    }
}

/* ==========================================
   17. PRINT STYLES
   ========================================== */
@media print {
    .promo-banner,
    .main-header,
    .features-ticker,
    .nav-mobile,
    .overlay,
    .footer-links {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: underline;
    }
}

/* ==========================================
   18. ANIMATIONS & TRANSITIONS
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ==========================================
   HERO SLIDER SECTION ★ CORRIGÉ ★
   Image en arrière-plan full-screen
   ========================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-background);
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: 100vh; /* Pleine hauteur écran */
    max-height: 900px; /* Limite sur grands écrans */
}

/* Slides avec image en background */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;

    /* Image en arrière-plan */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Overlay sombre sur toute l'image */
.hero-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Filtre sombre */
    z-index: 1;
}

/* Content superposé au centre */
.hero-slide__content {
    position: relative;
    z-index: 2; /* Au-dessus de l'overlay */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
}

.hero-slide__inner {
    max-width: 700px;
    text-align: center;
    margin-top: 250px;
}

/* Typography en blanc pour contraster */
.hero-slide__tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-slide__title {
    font-size: clamp(3rem, 6vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-slide__description {
    font-size: clamp(1.3rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: white;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Bouton transparent pour contraster - EFFET INVERSÉ */
.cta-btn--white {
    background: transparent;          /* ← Transparent par défaut */
    color: white;                     /* ← Texte blanc */
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid white;          /* ← Bordure blanche */
    transition: all var(--transition-normal);
}

.cta-btn--white:hover {
    background: white;                /* ← Fond blanc au hover */
    color: var(--color-text);         /* ← Texte foncé au hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}







/* ============================================================
   ANIMATION SLIDE-UP - TOUS LES ÉLÉMENTS EN MÊME TEMPS
   ============================================================ */

/* 1. MASQUER LE CONTENU PAR DÉFAUT */
.hero-slide__inner > * {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. AFFICHER TOUT LE CONTENU ENSEMBLE (même délai pour tous) */
.hero-slide.active .hero-slide__tagline,
.hero-slide.active .hero-slide__title,
.hero-slide.active .hero-slide__description,
.hero-slide.active .cta-btn--white {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;  /* ← MÊME DÉLAI pour tous */
}

/* 3. ANIMATION DE SORTIE */
.hero-slide:not(.active) .hero-slide__inner > * {
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}













/* Navigation Dots */
.hero-slider__dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider__dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider__dot.active {
    background: white;
}

.hero-slider__dot.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--color-primary);
    animation: dotProgress 5s linear;
}

@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}

.hero-slider__dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Navigation Arrows */
.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all var(--transition-normal);
    color: var(--color-text);
    backdrop-filter: blur(5px);
}

.hero-slider__arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-slider__arrow--prev {
    left: 30px;
}

.hero-slider__arrow--next {
    right: 30px;
}

.hero-slider__arrow--next svg {
    transform: scaleX(1); /* Miroir horizontal */
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 600px;
        height: 100vh;
        max-height: 700px;
    }

    .hero-slide__content {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero-slide__inner {
        max-width: 100%;
        margin-top: 200px;
    }

    .hero-slide__title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-slide__description {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .cta-btn--white {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Hide arrows on mobile */
    .hero-slider__arrow {
        display: none;
    }

    /* Adjust dots */
    .hero-slider__dots {
        bottom: 25px;
        gap: 10px;
    }

    .hero-slider__dot {
        width: 35px;
        height: 3px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-slider {
        min-height: 500px;
    }

    .hero-slide__tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-slide__title {
        font-size: 1.8rem;
    }

    .hero-slide__description {
        font-size: 1.3rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-slider {
        min-height: 650px;
    }

    .hero-slide__inner {
        max-width: 600px;
    }

    .hero-slide__title {
        font-size: 3.5rem;
    }
}

/* ==========================================
   BENEFITS SECTION - Animation ULTRA Fluide ★ V4 ★
   Optimisée pour mobile
   ========================================== */
.benefits-section {
    background: var(--color-background-lighter);
    padding: var(--spacing-xxxl) var(--spacing-md);
}

.benefits-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent; /* ★ Supprime le flash sur mobile */
}

.accordion-header:hover {
    opacity: 0.7;
}

.accordion-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
}

.accordion-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-text);
}

.accordion-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    text-align: left;
}

/* Toggle Icon - NOUVEAU : + et - au lieu de flèches */
.accordion-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

/* Symbole + (état fermé) */
.accordion-toggle::before,
.accordion-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Ligne horizontale du + */
.accordion-toggle::before {
    width: 18px;
    height: 2px;
}

/* Ligne verticale du + */
.accordion-toggle::after {
    width: 2px;
    height: 18px;
}

/* Symbole - (état ouvert) : la ligne verticale disparaît */
.accordion-header.active .accordion-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Rotation subtile au hover */
.accordion-toggle:hover {
    transform: scale(1.1);
}

/* SUPPRIMEZ LE SVG - Plus besoin */
.accordion-toggle svg {
    display: none;
}

.accordion-header.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-toggle svg {
    color: var(--color-text);
}

/* ★ ANIMATION ULTRA FLUIDE V4 ★ */
.accordion-content {
    display: grid; /* ★ CLEF : Grid au lieu de block */
    grid-template-rows: 0fr; /* ★ 0fr = fermé */
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* ★ 0.5s pour fluidité */
    overflow: hidden;
    padding-left: 60px;
}

.accordion-content.open {
    grid-template-rows: 1fr; /* ★ 1fr = ouvert */
}

/* ★ Wrapper interne pour éviter les bugs */
.accordion-content > div {
    overflow: hidden;
}

.accordion-content p {
    font-size: 1em;
    line-height: 1.2;
    color: var(--color-text-light);
    margin: 0;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s; /* ★ Delay pour apparition progressive */
}

.accordion-content.open p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .accordion-header {
        padding: var(--spacing-md) 0;
    }

    .accordion-left {
        gap: 15px;
    }

    .accordion-icon {
        width: 35px;
        height: 35px;
    }

    .accordion-icon svg {
        width: 35px;
        height: 35px;
    }

    .accordion-title {
        font-size: 17px;
    }

    .accordion-content {
        padding-left: 50px;
    }
}

@media (max-width: 480px) {
    .accordion-title {
        font-size: 16px;
    }

    .accordion-content {
        padding-left: 8px;

    }
}


    .accordion-toggle {
        width: 26px;
        height: 26px;
    }
    
    .accordion-toggle::before {
        width: 16px;
    }
    
    .accordion-toggle::after {
        height: 16px;
    }
 }

@media (max-width: 480px) {
    .accordion-toggle {
        width: 24px;
        height: 24px;
    }
    
    .accordion-toggle::before {
        width: 14px;
    }
    
    .accordion-toggle::after {
        height: 14px;
    }
}


/* ==========================================
   PRODUCTS SECTION - Liste Horizontale
   ========================================== */
.products-section {
    background: var(--color-background-lighter);
    padding: var(--spacing-xxxl) var(--spacing-md);
}

/* Products List - Layout vertical */
.products-list {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Product Item - Layout horizontal */
.product-item {
    border-bottom: 1px solid #e0e0e0;
}

.product-item:last-child {
    border-bottom: none;
}

.product-item-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

.product-item-link:hover {
    opacity: 0.7;
}

/* Image à gauche - Petite et carrée */
.product-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: white;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-item-link:hover .product-item-image img {
    transform: scale(1.05);
}

/* Content à droite */
.product-item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

/* Product Name */
.product-item-name {
    flex: 1;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
}

/* Product Price - À droite */
.product-item-price {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    min-width: 80px;
    text-align: right;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .product-item-link {
        padding: var(--spacing-md) 0;
        gap: var(--spacing-md);
    }

    .product-item-image {
        width: 100px;
        height: 100px;
    }

    .product-item-name {
        font-size: 15px;
    }

    .product-item-price {
        font-size: 16px;
        min-width: 70px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .products-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .product-item-link {
        padding: 15px 0;
        gap: 12px;
    }

    .product-item-image {
        width: 80px;
        height: 100px;
    }

    .product-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .product-item-name {
        font-size: 14px;
    }

    .product-item-price {
        font-size: 16px;
        text-align: left;
    }
}

/* Animation au chargement */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item {
    animation: fadeIn 0.4s ease-out;
}

.product-item:nth-child(1) { animation-delay: 0.05s; }
.product-item:nth-child(2) { animation-delay: 0.1s; }
.product-item:nth-child(3) { animation-delay: 0.15s; }
.product-item:nth-child(4) { animation-delay: 0.2s; }
.product-item:nth-child(5) { animation-delay: 0.25s; }
.product-item:nth-child(6) { animation-delay: 0.3s; }







/* ==========================================
   3 SECTIONS COMBINED - VERSION CORRIGÉE ★
   N'écrase PAS les couleurs existantes
   ========================================== */

/* AJOUT de nouvelles variables SANS écraser les existantes */
:root {
    --color-btn-dark: #2c3135;
    --color-btn-hover: #1a1d1f;
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.categories-section {
    background: var(--color-background);
    padding: var(--spacing-xxxl) var(--spacing-md);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Carré 1:1 */
    overflow: hidden;
    background: var(--color-background-light);
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.category-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: var(--spacing-md);
    margin: 0;
    color: var(--color-text);
}

/* Responsive Categories */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

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

    .category-name {
        font-size: 16px;
    }
}

/* ==========================================
   FASHION IN ACTION SECTION
   ========================================== */
.fashion-section {
    background: var(--color-background-lighter);
    padding: var(--spacing-xxxl) var(--spacing-md);
}

.fashion-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
}

.fashion-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    
}

.fashion-media img,
.fashion-media video {
    width: 100%;
    height: auto;
    display: block;
}

.fashion-content {
    padding: var(--spacing-lg);
}

.fashion-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary); /* ★ Garde ton jaune pour le tagline */
    margin-bottom: var(--spacing-sm);
}

.fashion-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.fashion-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* ★ BOUTON Fashion avec couleur SPÉCIFIQUE (pas primary) */
.fashion-section .cta-btn {
    display: inline-block;
    background: var(--color-btn-dark); /* ★ Nouveau gris foncé */
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.fashion-section .cta-btn:hover {
    background: var(--color-btn-hover); /* ★ Plus foncé au hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Fashion */
@media (max-width: 768px) {
    .fashion-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .fashion-content {
        padding: var(--spacing-md) 0;
    }
}







/* ==========================================
   BEST SELLERS SECTION - HYBRIDE
   Desktop: Grille normale | Mobile: Carousel centré
   ========================================== */

.bestsellers-section {
  background: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.bestsellers-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 70px;
  overflow: hidden;
}

/* Masques blancs - Desktop uniquement */
.bestsellers-slider-wrapper::before,
.bestsellers-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  background: #ffffff;
  z-index: 5;
  pointer-events: none;
}

.bestsellers-slider-wrapper::before { left: 0; }
.bestsellers-slider-wrapper::after { right: 0; }

/* Container du slider - Desktop */
.bestsellers-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* Carte produit - Desktop (4 cartes) */
.bestseller-card {
  flex: 0 0 auto;
  width: calc((100% - 90px) / 4);
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bestseller-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bestseller-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.bestseller-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.bestseller-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.bestseller-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.bestseller-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}

.bestseller-price {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 8px 0;
}

.bestseller-btn {
  width: 100%;
  background: #2c3135;
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: auto;
}

.bestseller-btn:hover {
  background: #1a1d1f;
  transform: translateY(-2px);
}

/* Flèches */
.bestseller-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 10;
  color: #333;
}

.bestseller-arrow:hover:not(:disabled) {
  background: #2c3135;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bestseller-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bestseller-arrow--prev { left: 10px; }
.bestseller-arrow--next { right: 10px; }

/* Dots */
.bestsellers-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding: 0;
}

.bestseller-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.bestseller-dot:hover {
  background: #999;
  transform: scale(1.2);
}

.bestseller-dot.active {
  background: #666;
  width: 36px;
  border-radius: 6px;
}

/* ==========================================
   RESPONSIVE - TABLETTE LARGE (≤1024px)
   3 cartes côte à côte
   ========================================== */
@media (max-width: 1024px) {
  .bestseller-card {
    width: calc((100% - 60px) / 3);
  }
  
  .bestsellers-slider {
    gap: 30px;
  }
  
  .bestsellers-slider-wrapper {
    padding: 0 60px;
  }
  
  .bestsellers-slider-wrapper::before,
  .bestsellers-slider-wrapper::after {
    width: 60px;
  }
  
  .bestseller-arrow {
    width: 45px;
    height: 45px;
  }
}/* ==========================================
   RESPONSIVE - TABLETTE (≤768px)
   CENTRAGE ABSOLU avec Flexbox
   ========================================== */
@media (max-width: 768px) {
  .bestsellers-section {
    padding: 60px 0;
    width: 100%;
  }
  
  /* Container prend toute la largeur */
  .bestsellers-slider-wrapper {
    padding: 0 !important;
    overflow: visible;
    max-width: none !important; /* ✅ Supprime toute limite */
    width: 100vw;
    margin: 60px 0 0 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important; /* ✅ Force le plein écran */
    margin-right: -50vw !important;
  }
  
  /* Supprimer les masques */
  .bestsellers-slider-wrapper::before,
  .bestsellers-slider-wrapper::after {
    display: none !important;
  }
  
  /* Slider avec scroll-snap pour centrage parfait */
  .bestsellers-slider {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 0 calc((100vw - 85vw) / 2); /* ✅ Centrage mathématique */
  }
  
  /* Cache la scrollbar */
  .bestsellers-slider::-webkit-scrollbar {
    display: none;
  }
  
  .bestseller-card {
    width: 85vw;
    max-width: 400px;
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: center; /* ✅ Snap au centre */
  }
  
  .bestseller-arrow {
    width: 42px;
    height: 42px;
    position: absolute;
    z-index: 20;
  }
  
  .bestseller-arrow--prev { left: 10px; }
  .bestseller-arrow--next { right: 10px; }
  
  .bestsellers-dots {
    gap: 10px;
    margin-top: 40px;
  }
  
  .bestseller-dot {
    width: 10px;
    height: 10px;
  }
  
  .bestseller-dot.active {
    width: 28px;
  }
  
  .bestseller-name {
    font-size: 13px;
    min-height: 36px;
  }
  
  .bestseller-price {
    font-size: 20px;
  }
  
  .bestseller-btn {
    padding: 10px;
    font-size: 13px;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE (≤480px)
   ========================================== */
@media (max-width: 480px) {
  .bestsellers-section {
    padding: 40px 0;
    width: 100%;
  }
  
  .bestsellers-slider-wrapper {
    padding: 0 !important;
    overflow: visible;
    max-width: none !important;
    width: 100vw;
    margin: 40px 0 0 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  
  .bestsellers-slider-wrapper::before,
  .bestsellers-slider-wrapper::after {
    display: none !important;
  }
  
  .bestseller-card {
    width: 90vw;
    max-width: 340px;
    min-width: 280px;
    flex-shrink: 0;
  }
  
  .bestsellers-slider {
    display: flex;
    gap: 20px;
    padding: 0 5vw; /* 5% de chaque côté */
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .bestsellers-slider::-webkit-scrollbar {
    display: none;
  }
  
  .bestseller-card {
    scroll-snap-align: center;
  }
  
  .bestseller-arrow {
    display: none;
  }
  
  .bestsellers-dots {
    gap: 8px;
    margin-top: 30px;
  }
  
  .bestseller-dot {
    width: 8px;
    height: 8px;
  }
  
  .bestseller-dot.active {
    width: 24px;
  }
  
  .bestseller-content {
    padding: 15px;
  }
  
  .bestseller-name {
    font-size: 14px;
    min-height: 40px;
  }
  
  .bestseller-price {
    font-size: 22px;
  }
  
  .bestseller-btn {
    padding: 12px;
    font-size: 14px;
  }
}










































/* ==========================================
   VIDEO SECTION - 
   ========================================== */
/* ==========================================
   HERO VIDEO BACKGROUND
========================================== */

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vidéo en background */
.hero-video__background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

/* Overlay sombre pour lisibilité */
.hero-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Contenu par-dessus */
.hero-video__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: var(--spacing-md);
}

.hero-video__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-video__subtitle {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: var(--spacing-xl);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}



/* Bouton transparent pour contraster - EFFET INVERSÉ */
.hero-video__btn {
    background: transparent;          /* ← Transparent par défaut */
    color: white;                     /* ← Texte blanc */
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid white;          /* ← Bordure blanche */
    transition: all var(--transition-normal);
}

.hero-video__btn:hover {
    background: white;                /* ← Fond blanc au hover */
    color: var(--color-text);         /* ← Texte foncé au hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}















/* Mobile */
@media (max-width: 768px) {
  .hero-video {
    min-height: 500px;
  }
  
  .hero-video__title {
    font-size: 2rem;
  }
  
  .hero-video__subtitle {
    font-size: 1rem;
  }
  
  .hero-video__btn {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* =====================================================
   CUSTOMER REVIEWS SECTION - Grid Design (Inspired by mywayfarers.company.site)
   ===================================================== */

.customer-reviews-section {
    background: #f9f9f9;
    padding: var(--spacing-xxxl) var(--spacing-md);
}

/* Grille des avis - 2 colonnes desktop */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
}

/* Carte d'avis individuelle */
.customer-review-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.customer-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Header - Étoiles à gauche, Nom à droite */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

/* Étoiles jaunes */
.review-stars {
    color: #FFD700; /* Or jaune comme sur le site */
    font-size: 20px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

/* Nom et pays */
.review-author {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: right;
    line-height: 1.4;
}

/* Texte de l'avis */
.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    flex: 1;
}

/* Badge "Verified Buyer" */
.verified-badge {
    font-size: 13px;
    color: #666;
    font-style: italic;
    display: inline-block;
    margin-top: 5px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablette - 2 colonnes */
@media (max-width: 1024px) {
    .reviews-grid {
        gap: 25px;
    }
    
    .customer-review-card {
        padding: 25px;
    }
}

/* Tablette - 1 colonne */
@media (max-width: 768px) {
    .customer-reviews-section {
        padding: var(--spacing-xxl) var(--spacing-md);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr; /* 1 seule colonne */
        gap: 20px;
    }
    
    .customer-review-card {
        padding: 20px;
    }
    
    .review-stars {
        font-size: 18px;
    }
    
    .review-author {
        font-size: 13px;
    }
    
    .review-text {
        font-size: 14px;
    }
}

/* Mobile - optimisé */
@media (max-width: 480px) {
    .customer-reviews-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .reviews-grid {
        gap: 15px;
    }
    
    .customer-review-card {
        padding: 18px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-author {
        text-align: left;
    }
    
    .review-stars {
        font-size: 16px;
        letter-spacing: 1px;
    }
}




/* ==========================================
   FOOTER AVEC NEWSLETTER - Version Harmonieuse
   ========================================== */

.footer-newsletter {
    background: #2c3135;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section principale */
.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Grid responsive - 4 colonnes */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Colonnes footer */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col--wide {
    max-width: 400px;
}

/* Titres sections */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.highlight-yellow {
    color: #fdd835;
}

/* Description */
.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

/* Formulaire Newsletter */
.footer-newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: #fdd835;
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form button {
    padding: 12px 28px;
    border-radius: 5px;
    border: none;
    background: #fdd835;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background: #fbc02d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 216, 53, 0.3);
}

/* Petit texte sous le formulaire */
.footer-small-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Liens footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Footer bottom - Copyright */
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ==========================================
   RESPONSIVE - TABLETTE (≤ 992px)
   ========================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col--wide {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* ==========================================
   RESPONSIVE - TABLETTE (≤ 768px)
   ========================================== */
@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-col--wide {
        grid-column: 1;
    }
    
    .footer-title {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100%;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (≤ 480px)
   ========================================== */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-main {
        padding: 40px 0 24px;
    }
    
    .footer-grid {
        gap: 32px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .footer-newsletter-form input,
    .footer-newsletter-form button {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .footer-small-text {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}













/* ==========================================
   LOCATION SECTION - Map Background ★ V2 ★
   ========================================== *//* LOCATION SECTION - Map Background V2 - CARD À GAUCHE */
.location-map-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ✅ ALIGNEMENT À GAUCHE */
  padding: var(--spacing-xxl) var(--spacing-md);
  padding-left: 220px; /* ✅ ESPACE À GAUCHE */
}

/* Map Background */
.map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-background iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
}

/* Overlay Card - À GAUCHE */
.location-card {
  position: relative;
  z-index: 2;
  background: white;
  max-width: 400px;
  max-height: 750px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  margin-right: auto; /* ✅ POUSSE À GAUCHE */
 
}

.location-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-content {
  padding: var(--spacing-lg);
}

.location-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
}

.location-info-item {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid #eee;
}

.location-info-item:last-of-type {
  border-bottom: none;
}

.info-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.info-value {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.info-note {
  font-size: 14px;
  color: var(--color-text-light);
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  margin-top: 8px;
  transition: color var(--transition-normal);
}

.info-link:hover {
  color: var(--color-primary);
}

/* Social Icons */
.location-social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.location-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-text);
  color: white;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.location-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.location-social svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .location-map-section {
    min-height: 500px;
    padding: var(--spacing-lg) var(--spacing-md);
    padding-left: var(--spacing-md); /* ✅ Moins d'espace sur mobile */
    justify-content: center; /* ✅ CENTRÉ sur mobile */
  }
  
  .location-card {
    max-width: 100%;
    margin-right: 0; /* ✅ Pas de marge sur mobile */
  }
  
  .location-card-image {
    height: 200px;
  }
  
  .location-card-content {
    padding: var(--spacing-lg);
  }
  
  .location-card-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .location-card-content {
    padding: var(--spacing-md);
  }
}


/* Map Background - Sans interaction */
.map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* ✅ Désactive les clics */
}

.map-background iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) brightness(0.95); /* ✅ Effet visuel discret */
  pointer-events: none; /* ✅ Pas d'interaction */
}

/* Overlay léger pour masquer les contrôles */
.map-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* ✅ Voile très léger */
  pointer-events: none;
}








/* ==========================================
   SECTION BRANDS - Version Icônes
========================================== */
.brands-section {
  background: #f5f5f5;
  padding: var(--spacing-xxxl) var(--spacing-md);
}

.brands-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
  margin-top: var(--spacing-xl);
}

.brand-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.icon-circle {
  width: 120px;
  height: 120px;
  background: #2c2c2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

/* ✅ Logos en blanc */
.icon-circle img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1); /* Rend les logos blancs */
  transition: transform var(--transition-normal);
}

.brand-icon-item:hover .icon-circle {
  transform: scale(1.1);
}

.brand-icon-item:hover .icon-circle img {
  transform: scale(1.1);
}

.brand-icon-name {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--color-text);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .brands-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
  
  .icon-circle {
    width: 80px;
    height: 80px;
  }
  
  .icon-circle img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .brands-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .icon-circle img {
    width: 35px;
    height: 35px;
  }
  
  .brand-icon-name {
    font-size: 12px;
  }
}


/* ==========================================
   SECTION BRANDS - Version Rectangles
========================================== */
.brands-logos {
  background: white;
}

.brands-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  margin-top: var(--spacing-xl);
}

.brand-logo-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all var(--transition-normal);
}

.brand-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.brand-logo-text {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

/* ==========================================
   SECTION LET'S KEEP IN TOUCH
========================================== */
.contact-section {
  background: #e8e8e8;
  padding: var(--spacing-xxxl) var(--spacing-md);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxxl);
  align-items: center;
}

.contact-left {
  padding-right: var(--spacing-lg);
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.contact-description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--spacing-xl);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  text-decoration: none;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.contact-link:hover {
  color: var(--color-secondary);
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-divider {
  height: 1px;
  background: #c0c0c0;
  margin: var(--spacing-xl) 0;
}

.social-icons {
  display: flex;
  gap: var(--spacing-md);
}

.social-icon {
  width: 48px;
  height: 48px;
  background: #2c2c2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  transform: scale(1.1);
  background: #000;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.contact-right {
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ==========================================
   SECTION OUR LOCATION
========================================== */
.location-section {
  background: #f5f5f5;
  padding: var(--spacing-xxxl) var(--spacing-md) var(--spacing-md);
}

.location-title {
 font-size: clamp(4rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  text-align: center;
  color: #727070;
  margin-bottom: var(--spacing-xl);
}

.location-intro {
  text-align: center;
  font-size: var(--font-size-base);
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.6;
}

.location-hours {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.location-hours p {
  margin: 5px 0;
  font-size: 16px;
  color: var(--color-text);
}

.location-divider {
  width: 60px;
  height: 1px;
  background: #c0c0c0;
  margin: var(--spacing-xl) auto;
}

.location-info {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.location-info p,
.location-info a {
  margin: var(--spacing-xs) 0;
  font-size: 16px;
  color: var(--color-text);
}

.location-address {
  font-weight: 600;
}

.location-directions {
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.location-directions:hover {
  color: var(--color-secondary);
}

.location-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xxxl);
}

.location-social-icon {
  width: 44px;
  height: 44px;
  background: #2c2c2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
}

.location-social-icon:hover {
  transform: scale(1.1);
  background: #000;
}

.location-social-icon svg {
  width: 20px;
  height: 20px;
}

.location-footer {
  text-align: center;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid #ddd;
}

.copyright,
.disclaimer {
  font-size: 12px;
  color: #999;
  margin: var(--spacing-xs) 0;
  line-height: 1.5;
}

.footer-links {
  font-size: 11px;
  color: #999;
  margin-top: var(--spacing-sm);
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-text);
}












/* ==========================================
   EXCLUSIVE OFFER SECTION - Version Finale
   ========================================== */

.exclusive-offer-section {
    background: white;
    padding: var(--spacing-xxxl) var(--spacing-md);
}

.exclusive-offer-card {
    background: linear-gradient(135deg, #e8d4f0 0%, #d4c4e8 100%);
    border-radius: 0; /* ← SANS angles arrondis */
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 400px;
    align-items: center;
}

/* ========== CONTENU GAUCHE ========== */
.exclusive-offer-content {
    padding: 60px;
    text-align: center;
    color: var(--color-text);
}

/* Badge "EXCLUSIVE OFFER" */
.exclusive-offer-badge {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-text);
}

/* Titre principal */
.exclusive-offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--color-text);
}

/* Features */
.exclusive-offer-features {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 28px;
    color: var(--color-text);
}

/* ========== IMAGE DROITE ========== */
.exclusive-offer-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bouton */


.exclusive-offer-content .cta-btn--dark {
    background: transparent;          /* ← Transparent par défaut */
    color: white;                     /* ← Texte blanc */
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid white;          /* ← Bordure blanche */
    transition: all var(--transition-normal);
}

.exclusive-offer-content .cta-btn--dark:hover {
    background: white;                /* ← Fond blanc au hover */
    color: var(--color-text);         /* ← Texte foncé au hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}





/* ==========================================
   RESPONSIVE - TABLETTE (≤ 768px)
   ========================================== */
@media (max-width: 768px) {
    .exclusive-offer-section {
        padding: var(--spacing-xxl) var(--spacing-md);
    }
    
    .exclusive-offer-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    /* ★ IMAGE EN HAUT */
    .exclusive-offer-image {
        order: 1;
        min-height: 300px;
    }
    
    /* ★ CONTENU EN BAS */
    .exclusive-offer-content {
        order: 2;
        padding: 40px 30px;
    }
    
    .exclusive-offer-badge {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .exclusive-offer-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .exclusive-offer-features {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .exclusive-offer-content .cta-btn--dark {
        padding: 10px 28px;
        font-size: 14px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (≤ 480px)
   ========================================== */
@media (max-width: 480px) {
    .exclusive-offer-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    /* ★ IMAGE EN HAUT */
    .exclusive-offer-image {
        order: 1;
        min-height: 250px;
    }
    
    /* ★ CONTENU EN BAS */
    .exclusive-offer-content {
        order: 2;
        padding: 30px 20px;
    }
    
    .exclusive-offer-badge {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .exclusive-offer-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .exclusive-offer-features {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .exclusive-offer-content .cta-btn--dark {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
}












/* ==========================================
   BOUTON WHATSAPP FLOTTANT
========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-button {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.whatsapp-button:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
  flex-shrink: 0;
}

/* Popup WhatsApp */
.whatsapp-popup {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 360px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-popup-header {
  background: #f0f0f0;
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
}

.whatsapp-popup-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.whatsapp-popup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-popup-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.whatsapp-popup-info p {
  margin: 0;
  font-size: 13px;
  color: #999;
}

.whatsapp-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.whatsapp-popup-close:hover {
  color: #000;
}

.whatsapp-popup-body {
  padding: var(--spacing-lg);
  background: #e5ddd5;
  min-height: 120px;
}

.whatsapp-message {
  background: white;
  padding: var(--spacing-md);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
}

.whatsapp-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}

.whatsapp-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  background: #25D366;
  color: white;
  padding: 15px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: background var(--transition-normal);
}

.whatsapp-popup-cta:hover {
  background: #20BA5A;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .brands-icons-grid,
  .brands-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-wrapper {
    gap: var(--spacing-xl);
  }
  
  .contact-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .brands-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .icon-circle svg {
    width: 35px;
    height: 35px;
  }
  
  .brand-icon-name {
    font-size: 12px;
  }
  
  .brands-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .contact-left {
    padding-right: 0;
  }
  
  .contact-links {
    grid-template-columns: 1fr;
  }
  
  .contact-image {
    height: 400px;
  }
  
  .whatsapp-popup {
    width: calc(100vw - 40px);
    right: 20px;
  }
  
  .whatsapp-button span {
    display: none;
  }
  
  .whatsapp-button {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .brands-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .brands-logos-grid {
    grid-template-columns: 1fr;
  }
  
  .brand-logo-card {
    padding: var(--spacing-lg);
    min-height: 100px;
  }
  
  .social-icon,
  .location-social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon svg,
  .location-social-icon svg {
    width: 20px;
    height: 20px;
  }
}















/* ==========================================
   BOUTON INSTAGRAM FLOTTANT
========================================== */

/* Conteneur principal */
.instagram-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9997;
}

/* Bouton Instagram avec gradient officiel */
.instagram-button {
  background: linear-gradient(135deg, #833AB4 0%, #C13584 25%, #E1306C 50%, #FD1D1D 75%, #F77737 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(193, 53, 132, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.instagram-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(193, 53, 132, 0.6);
}

.instagram-button svg {
  flex-shrink: 0;
}

/* ==========================================
   POPUP INSTAGRAM
========================================== */

.instagram-popup {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 9996;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.instagram-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Header avec gradient Instagram */
.instagram-popup-header {
  background: linear-gradient(135deg, #833AB4 0%, #C13584 40%, #E1306C 70%, #F77737 100%);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.instagram-popup-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid white;
  background: white;
}

.instagram-popup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-popup-info {
  flex: 1;
}

.instagram-popup-info h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: white;
}

.instagram-popup-info p {
  margin: 3px 0 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.instagram-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  font-weight: 300;
  line-height: 1;
}

.instagram-popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Corps du popup */
.instagram-popup-body {
  padding: 24px 20px;
  background: #fafafa;
  min-height: 140px;
  display: flex;
  align-items: center;
}

.instagram-message {
  background: white;
  padding: 16px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #efefef;
}

.instagram-message p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #262626;
}

/* CTA avec gradient */
.instagram-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #833AB4 0%, #C13584 25%, #E1306C 50%, #FD1D1D 75%, #F77737 100%);
  color: white;
  padding: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.2s ease;
  border: none;
}

.instagram-popup-cta:hover {
  opacity: 0.9;
}

/* ==========================================
   RESPONSIVE INSTAGRAM WIDGET
========================================== */

/* Tablet */
@media (max-width: 768px) {
  .instagram-float {
    bottom: 20px;
    right: 20px;
  }
  
  .instagram-popup {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 90px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .instagram-float {
    bottom: 20px;
    right: 15px;
  }
  
  /* Bouton compact sur mobile */
  .instagram-button {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  
  .instagram-button span {
    display: none;
  }
  
  .instagram-button svg {
    width: 28px;
    height: 28px;
  }
  
  .instagram-popup {
    width: calc(100vw - 30px);
    right: 15px;
    bottom: 90px;
  }
  
  .instagram-popup-header {
    padding: 15px;
  }
  
  .instagram-popup-avatar {
    width: 48px;
    height: 48px;
  }
  
  .instagram-popup-info h4 {
    font-size: 16px;
  }
  
  .instagram-popup-info p {
    font-size: 12px;
  }
  
  .instagram-popup-body {
    padding: 20px 16px;
  }
  
  .instagram-message p {
    font-size: 14px;
  }
  
  .instagram-popup-cta {
    font-size: 15px;
    padding: 14px;
  }
}

/* Très petit mobile */
@media (max-width: 360px) {
  .instagram-popup {
    width: calc(100vw - 20px);
    right: 10px;
  }
}




/* Icônes SVG dans la barre défilante */
.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: currentColor; /* Hérite de la couleur du texte */
}

/* Optionnel : Animation au survol */
.feature-item:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}





































.payment-methods-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0;
    padding: 0;
    max-width: 500px;
}

.payment-methods-inline img {
    /* IMAGE GRANDE qui remplit bien la carte */
    height: 32px !important;
    width: auto;
    max-width: none;  /* Permet aux images d'être plus larges */
    object-fit: contain;

    /* Carte compacte mais image visible */
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px 10px;  /* Padding réduit pour laisser place à l'image */

    /* Dimensions de carte normales */
    min-width: 48px;

    /* Animation */
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.payment-methods-inline img:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    border-color: #bbb;
}


















/* ==========================================
   REQUEST A CALLBACK SECTION - PIXEL PERFECT
   ========================================== */

.callback-section {
    width: 100%;
    background: #2d2f31;
    padding: 0;
    margin: 0;
}

.callback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    min-height: 650px;
}

/* ========== IMAGE GAUCHE ========== */
.callback-image-side {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.callback-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========== FORMULAIRE DROITE ========== */
.callback-form-side {
    background: #2d2f31;
    padding: 80px 100px 80px 80px;
    display: flex;
    align-items: center;
}

.callback-form-container {
    width: 100%;
    max-width: 540px;
}

/* Titre */
.callback-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 16px 0;
    font-family: var(--font-family);
}

/* Sous-titre */
.callback-subheading {
    font-size: 16px;
    line-height: 1.5;
    color: #d4d4d4;
    margin: 0 0 48px 0;
}

/* Formulaire */
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Groupe de champ */
.callback-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Label */
.callback-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Input & Textarea */
.callback-input,
.callback-textarea {
    width: 100%;
    padding: 16px 18px;
    background: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    color: #333333;
    line-height: 1.4;
    transition: box-shadow 0.3s ease;
}

.callback-input::placeholder,
.callback-textarea::placeholder {
    color: #b3b3b3;
    font-style: italic;
}

.callback-input:focus,
.callback-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Textarea spécifique */
.callback-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Bouton Submit */
.callback-submit-btn {
    width: auto;
    align-self: flex-start;
    padding: 18px 60px;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.callback-submit-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.callback-submit-btn:active {
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE - TABLETTE
   ========================================== */
@media (max-width: 1200px) {
    .callback-form-side {
        padding: 60px 60px;
    }
    
    .callback-heading {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .callback-grid {
        grid-template-columns: 1fr;
    }
    
    .callback-image-side {
        min-height: 400px;
        order: 1;
    }
    
    .callback-form-side {
        order: 2;
        padding: 60px 40px;
    }
    
    .callback-form-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .callback-image-side {
        min-height: 350px;
    }
    
    .callback-form-side {
        padding: 50px 24px;
    }
    
    .callback-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .callback-subheading {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .callback-form {
        gap: 20px;
    }
    
    .callback-input,
    .callback-textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .callback-submit-btn {
        width: 100%;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .callback-image-side {
        min-height: 280px;
    }
    
    .callback-form-side {
        padding: 40px 20px;
    }
    
    .callback-heading {
        font-size: 28px;
    }
    
    .callback-subheading {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .callback-label {
        font-size: 13px;
    }
    
    .callback-input,
    .callback-textarea {
        padding: 13px 15px;
        font-size: 14px;
    }
    
    .callback-textarea {
        min-height: 100px;
    }
}









/* ==========================================
   PRODUCTS LIST BUY NOW SECTION
   ★ VERSION FINALE - Prix + Bouton sur même ligne
========================================== */

.products-list-section {
  background: var(--color-background-lighter);
  padding: var(--spacing-xxxl) var(--spacing-md);
}

.products-list-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Titre principal */
.products-list-title {
font-size: clamp(4rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  text-align: center;
  color: #727070;
  margin-bottom: var(--spacing-xl);
}
/* Liste des produits */
.products-list {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ========================================
   LAYOUT PRINCIPAL
======================================== */
.product-list-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all var(--transition-normal);
}

.product-list-item:hover {
  opacity: 0.7;
}

.product-list-item:last-child {
  border-bottom: none;
}

/* Image gauche */
.product-list-image {
  flex-shrink: 0;
  width: 320px;
  height: 150px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: white;
}

.product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.product-list-item:hover .product-list-image img {
  transform: scale(1.05);
}

/* Content à droite */
.product-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Product Name */
.product-list-name {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

/* SKU */
.product-list-sku {
  font-size: 0.85em;
  color: var(--color-text-light);
  margin: 0;
}

/* ★ CLEF : Prix + Bouton sur la même ligne */
.product-list-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

/* Price à gauche */
.product-list-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

/* Bouton Buy Now compact à droite */
.product-list-btn {
  display: inline-block;
  padding: 8px 24px; /* ★ Plus petit */
  background: var(--color-btn-dark, #2c3135);
  color: white;
  font-size: 13px; /* ★ Plus petit */
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-family);
  white-space: nowrap; /* Évite le retour à la ligne */
}

.product-list-btn:hover {
  background: var(--color-btn-hover, #1a1d1f);
  transform: translateY(-2px);
}

/* Animation au chargement */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-list-item {
  animation: fadeIn 0.4s ease-out;
}

.product-list-item:nth-child(1) { animation-delay: 0.05s; }
.product-list-item:nth-child(2) { animation-delay: 0.1s; }
.product-list-item:nth-child(3) { animation-delay: 0.15s; }
.product-list-item:nth-child(4) { animation-delay: 0.2s; }
.product-list-item:nth-child(5) { animation-delay: 0.25s; }
.product-list-item:nth-child(6) { animation-delay: 0.3s; }

/* ==========================================
   RESPONSIVE - TABLET (≤ 768px)
========================================== */
@media (max-width: 768px) {
  .products-list-section {
    padding: var(--spacing-xxl) var(--spacing-md);
  }
  
  .product-list-item {
    padding: var(--spacing-md) 0;
    gap: var(--spacing-md);
  }
  
  .product-list-image {
    width: 100px;
    height: 100px;
  }
  
  .product-list-name {
    font-size: 15px;
  }
  
  .product-list-sku {
    font-size: 12px;
  }
  
  /* ★ Prix + Bouton restent sur la même ligne */
  .product-list-price {
    font-size: 16px;
  }
  
  .product-list-btn {
    padding: 7px 20px;
    font-size: 12px;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE (≤ 480px)
   ★ Prix + Bouton RESTENT sur la même ligne
========================================== */
@media (max-width: 480px) {
  .products-list-section {
    padding: var(--spacing-xxl) var(--spacing-md);
  }
  
  .product-list-item {
    padding: 15px 0;
    gap: 12px;
  }
  
  .product-list-image {
    width: 120px;
    height: 160px;
  }
  
  .product-list-content {
    gap: 8px;
  }
  
  .product-list-name {
    font-size: 14px;
  }
  
  .product-list-sku {
    font-size: 12px;
  }
  
  /* ★ Prix + Bouton toujours sur la même ligne */
  .product-list-actions {
    gap: 12px;
  }
  
  .product-list-price {
    font-size: 16px;
  }
  
  .product-list-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}




















/* ==========================================
   WHAT'S UP - WHATSAPP SECTION
   ========================================== */

.whatsup-section {
    background: #3e9c63;
    background: linear-gradient(135deg, #3e9c63 0%, #42a868 100%);
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.whatsup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    min-height: 580px;
    align-items: center;
}

/* ========== CONTENU TEXTE (GAUCHE) ========== */
.whatsup-content {
    padding: 80px 80px 80px 120px;
    z-index: 2;
    position: relative;
}

.whatsup-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 24px 0;
    font-family: var(--font-family);
}

.whatsup-text {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 40px 0;
    max-width: 460px;
}

/* Bouton WhatsApp */
.whatsup-button {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsup-button:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsup-button:active {
    transform: translateY(0);
}

/* ========== IMAGE  (DROITE) ========== */
.whatsup-image {
    position: relative;
    height: 100%;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
}

.whatsup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================
   RESPONSIVE - TABLETTE
   ========================================== */
@media (max-width: 1200px) {
    .whatsup-content {
        padding: 60px 60px 60px 80px;
    }
    
    .whatsup-title {
        font-size: 56px;
    }
    
    .whatsup-image {
        min-height: 500px;
    }
    
    .whatsup-image img {
        max-height: 500px;
    }
}

@media (max-width: 1024px) {
    .whatsup-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .whatsup-content {
        padding: 60px 40px;
        text-align: center;
        order: 1;
    }
    
    .whatsup-title {
        font-size: 48px;
    }
    
    .whatsup-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .whatsup-image {
        order: 2;
        min-height: 400px;
        justify-content: center;
    }
    
    .whatsup-image img {
        max-height: 400px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .whatsup-container {
        min-height: auto;
    }
    
    .whatsup-content {
        padding: 50px 30px 40px;
    }
    
    .whatsup-title {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .whatsup-text {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .whatsup-button {
        padding: 14px 36px;
        font-size: 15px;
    }
    
    .whatsup-image {
        min-height: 350px;
    }
    
    .whatsup-image img {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .whatsup-content {
        padding: 40px 20px 30px;
    }
    
    .whatsup-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .whatsup-text {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .whatsup-button {
        padding: 13px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .whatsup-image {
        min-height: 300px;
    }
    
    .whatsup-image img {
        max-height: 300px;
    }
}



















/* ==========================================
   TESTIMONIALS SLIDER
   ========================================== */

.testimonials-slider-section {
    padding: 0px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 300px;
}

.testimonial-slide.active {
    display: block;
    animation: fadeInSlide 0.6s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    font-size: 28px;
    color: #fdd835;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

/* Navigation Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    border-color: #fdd835;
}

.testimonial-dot.active {
    background: #fdd835;
    border-color: #fdd835;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-slider-section {
        padding: 20px 0;
    }

    .testimonial-slide {
        padding: 30px 20px;
        min-height: 250px;
    }

    .testimonial-stars {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        padding: 24px 16px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-author-name {
        font-size: 14px;
    }
}


/* ==========================================
   STYLES POUR RATING, PRIX ET GARANTIES
   À ajouter dans votre styles.css
   ========================================== */

/* 1. RATING AVEC ÉTOILES */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-stars {
    color: #ff0000; /* Rouge comme sur l'image */
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-stars .half-star {
    position: relative;
    display: inline-block;
    color: #ff0000;
}

.rating-stars .half-star::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ff0000;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* 2. TITRE DU PRODUIT */
.product-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

/* 3. PRICING AVEC BADGE SAVE */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 5px;
    margin-top: 5px;
}

.price-current {
    font-size: 32px;
    font-weight: 700;
    color: #ff0000; /* Prix en rouge */
}

.price-original {
    font-size: 20px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.price-badge {
    background: #ff0000;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* 4. GARANTIES AVEC ICÔNES */
.product-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;  /* ← Centrage horizontal */
    gap: 25px;
    flex-wrap: nowrap;        /* Force sur une ligne */
    white-space: nowrap;
    margin-top: 0px;
    padding-top: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    
    /* ↓ SOLUTION CLÉ : Limiter la largeur au contenu et centrer */
    width: fit-content;       /* La largeur s'adapte au contenu */
    margin-left: auto;        /* Centre horizontalement */
    margin-right: auto;       /* Centre horizontalement */
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    flex-shrink: 0;
    white-space: nowrap;
}

.guarantee-item svg {
    color: #4CAF50;
    flex-shrink: 0;
}



























/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */

@media (max-width: 768px) {
    .product-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rating-stars {
        font-size: 16px;
    }

    .rating-text {
        font-size: 13px;
    }

    .product-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .product-pricing {
        gap: 12px;
    }

    .price-current {
        font-size: 28px;
    }

    .price-original {
        font-size: 18px;
    }

    .price-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

/* 4. GARANTIES AVEC ICÔNES */
@media (max-width: 768px) {
    /* ... vos autres règles ... */
    
   @media (max-width: 768px) {
    .product-guarantees {
        justify-content: center;
        gap: 20px;
        flex-wrap: nowrap;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .guarantee-item {
        font-size: 13px;
        gap: 6px;
    }
    
    .guarantee-item svg {
        width: 16px;
        height: 16px;
    }
}


}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.5rem;
    }

    .price-current {
        font-size: 24px;
    }

    .price-original {
        font-size: 16px;
    }

    @media (max-width: 480px) {
    .product-guarantees {
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap;
        padding: 0 10px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .guarantee-item {
        font-size: 11px;
        gap: 5px;
    }
    
    .guarantee-item svg {
        width: 14px;
        height: 14px;
    }






}


}






