:root {
    --vif-rose: #d81b60;
    --beige-prononce: #f2e8cf;
    --dark: #1a1a1a;
}

body { 
    background-color: var(--beige-prononce); 
    margin: 0; 
    font-family: 'Montserrat', sans-serif;
}

/* --- HEADER --- */
header {
    background: var(--vif-rose);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .logo { 
    color: white; 
    font-family: 'Playfair Display'; 
    font-size: 1.5rem; 
    flex: 0 0 auto;
}

header nav { 
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

header nav a { 
    color: white; 
    text-decoration: none; 
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

header nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- SECTION ACCUEIL --- */
.hero-canva {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    min-height: 80vh; /* Un peu plus grand pour l'image */
}

.floating-img {
    display: block !important;
    width: 100%;
    max-width: 850px !important; /* Taille augmentée */
    height: auto;
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
    -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 98%);
    mask-image: radial-gradient(circle at center, black 45%, transparent 98%);
    
    /* État initial pour l'animation */
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 1.5s ease, transform 1.5s ease;
}

/* La classe qui sera ajoutée par le JS */
.img-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
p.brand-subtitle{
    font-family:Georgia;
    font-style: italic;
    font-weight: 300;
}

/* Animation du slogan */
.slogan-anime {
    opacity: 0;
    transform: translateY(30px);
    animation: sloganAppear 2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes sloganAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Effet de brillance subtil */
.slogan-anime::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: sloganShine 3s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes sloganShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- BANNIERE HERO MODERNE (INSPIRÉE DESIGN MOBILE) --- */
/* 1. Le conteneur principal */
.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #000; /* Fond noir par défaut si l'image met du temps à charger */
}

/* 2. L'image (Nette et Visible) */
.hero-background, .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img, .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important; /* AUCUN FLOU */
    opacity: 1 !important;   /* IMAGE NETTE */
}

/* 3. L'Overlay (Indispensable pour voir le texte) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Voile noir transparent à 40% */
    z-index: 2;
}

/* 4. Le Contenu (Texte et boutons) */
.hero-content-modern {
    position: relative;
    z-index: 10; /* TRÈS IMPORTANT : Doit être au-dessus de l'image et de l'overlay */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    color: #ffffff !important;
}

/* 5. Le texte spécifique */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); /* Ombre pour que le texte "saute" aux yeux */
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: var(--vif-rose);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-products {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.floating-product {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.product-1 {
    animation: float1 4s ease-in-out infinite;
}

.product-2 {
    animation: float2 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* --- SECTION CATÉGORIES --- */
.categories-section {
    padding: 60px 8%;
    background: white;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.categories-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin: 0;
}

.categories-nav {
    display: flex;
    gap: 10px;
}

.cat-nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--vif-rose);
    background: white;
    color: var(--vif-rose);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-nav-btn:hover {
    background: var(--vif-rose);
    color: white;
}

.categories-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.categories-carousel::-webkit-scrollbar {
    height: 8px;
}

.categories-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.categories-carousel::-webkit-scrollbar-thumb {
    background: var(--vif-rose);
    border-radius: 10px;
}

.category-card {
    flex: 0 0 200px;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--beige-prononce), var(--vif-rose));
    border-radius: 20px;
    text-align: center;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(216, 27, 96, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-card h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* --- BOUTIQUE : GRILLE POUR DESKTOP/TABLETTE --- */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    padding: 40px 8% !important;
    width: 100%;
    box-sizing: border-box;
}

.card {
    padding: 0 !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
    overflow: hidden;
}

.image-box {
    position: relative;
    height: 350px !important;
    width: 100%;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.product-details {
    padding: 18px 15px;
    text-align: center;
    background: white;
}

.product-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--dark);
    line-height: 1.2;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vif-rose);
    margin: 0 0 15px 0;
    display: block;
}

.btn-commander-card {
    width: 100%;
    padding: 10px;
    background: var(--vif-rose);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-commander-card:hover {
    background: #b71c4c;
    transform: translateY(-1px);
}

/* Animation de survol sur les 10 images */
.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px); /* La carte monte un peu */
}
.image-box img {
    transition: transform 0.5s ease;
}
.card:hover img {
    transform: scale(1.1); /* L'image zoom */
}

/* --- EFFET AU SURVOL (HOVER) --- */
.card:hover img { 
    transform: scale(1.1) rotate(2deg); /* Zoom + légère rotation */
    filter: brightness(0.9); /* Obscurcit un peu l'image au survol */
}

.product-price { color: var(--vif-rose); font-weight: bold; font-size: 1.2rem; }

/* --- FOOTER : COMPACT ET MODERNE --- */
.footer-canva {
    background-color: var(--vif-rose);
    color: white;
    padding: 40px 8%;
    margin-top: 80px;
    border-top-left-radius: 80px;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.footer-visual {
    flex: 0 0 300px;
    text-align: center;
}

.footer-visual .shape-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    border: 6px solid rgba(255, 255, 255, 0.2);
    -webkit-mask-image: none !important;
    mask-image: none !important;
    margin: 0 auto 20px;
}

.footer-info {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.footer-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
}

.brand-logo-footer {
    margin-bottom: 25px;
}

.brand-logo-footer span {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: white;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--beige-prononce);
    transform: translateX(5px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link.whatsapp {
    color: #25D366;
}

.social-link.tiktok {
    color: #ffffff;
    text-shadow: 1px 1px 0px #25F4EE, -1px -1px 0px #FE2C55;
}

.social-link i {
    font-size: 1.2rem;
}
/* --- STYLE DU LOGO --- */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.styled-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s ease;
    
    /* Forme spéciale : Capsule asymétrique */
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 40% 10% 40% 10% / 50%; 
    background: rgba(255, 255, 255, 0.1);
}

/* Effet au survol (Hover) */
.styled-logo:hover {
    background: white;
    color: var(--vif-rose);
    /* La forme s'inverse au survol */
    border-radius: 10% 40% 10% 40% / 50%;
    transform: scale(1.05);
}

.sparkle {
    color: #FFD700; /* Or */
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(0.8); }
}
/* --- LE LOGO STYLE --- */
.modern-logo {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: baseline; /* Aligne le bas des mots */
    gap: 10px;
    transition: all 0.3s ease;
}

.ma-text {
   color: #F5F5DC; /* Ton Beige */
    font-size: 2.4rem; /* Plus grand */
    font-weight: 900;
    text-transform: capitalize;
}


.boutique-text {
   color: rgb(37, 37, 33); /* Un Rose vif (ou ta variable --vif-rose) */
    font-size: 1.7rem; /* Plus petit */
    font-weight: 400;
    font-style: italic;
}
/* --- AJUSTEMENT DES IMAGES ET TEXTES --- */
/* Suppression des styles contradictoires pour .shape-img */

.footer-info {
    color: white;
    max-width: 500px;
}
/* --- STRUCTURE DU FOOTER --- */
.footer-canva {
    background-color: #D61F69; /* Ton rose vif */
    display: flex !important;
    flex-direction: column !important; /* Force l'empilement vertical */
    padding: 60px 0 0 0 !important; /* 0 en bas pour coller la barre au bord */
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne sur mobile */
    padding: 0 8% 60px 8%;
    width: 100%;
}

/* --- LA BARRE DE COPYRIGHT (TOUT EN BAS) --- */
.copyright-bar {
    width: 100% !important;
    background: rgba(0, 0, 0, 0.2); /* Bande plus sombre pour le contraste */
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-bar p {
    margin: 0;
    color: #F5F5DC; /* Couleur Beige */
    font-size: 0.9rem;
    letter-spacing: 1px;
}
/* Style général des liens sociaux */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-bottom: 5px;
}

/* Logo WhatsApp (Vert) */
.social-link.whatsapp {
    color: #25D366;
}

/* Logo TikTok (Noir/Blanc avec ombre de couleur) */
.social-link.tiktok {
    color: #ffffff;
    text-shadow: 1px 1px 0px #25F4EE, -1px -1px 0px #FE2C55;
}

/* Effet au survol */
.social-link:hover {
    transform: translateX(10px); /* Le lien se décale un peu à droite */
    filter: brightness(1.2);
}

.social-link i {
    font-size: 1.4rem; /* Taille du logo */
}

/* Style pour le lien téléphone */
.phone-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: translateX(5px);
    color: #F5F5DC; /* Couleur beige au survol */
}
/* --- MODIFICATIONS MOBILE UNIQUEMENT --- */
@media (max-width: 768px) {
    /* Images fluides sur mobile */
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Header - adaptation mobile */
    header {
        padding: 15px !important;
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    .logo-container {
        width: 100% !important;
        text-align: center !important;
    }
    
    .modern-logo {
        font-size: 1.2rem !important;
    }
    
    .ma-text {
        font-size: 1.6rem !important;
    }
    
    .boutique-text {
        font-size: 1.1rem !important;
    }
    
    header nav {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    
    header nav a {
        font-size: 0.8rem !important;
        padding: 5px 12px !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 15px !important;
        color: white !important;
    }

    /* Bannière hero - adaptation mobile */
    .hero-banner {
        height: 50vh !important;
        min-height: 350px !important;
        margin: 0 -15px 20px -15px !important;
        border-radius: 0 0 20px 20px !important;
    }
    
    .hero-content-modern {
        padding: 40px 20px !important;
        gap: 15px !important;
    }
    
    .hero-products {
        order: 1 !important;
        margin-bottom: 15px !important;
        gap: 10px !important;
    }
    
    .floating-product {
        width: 45px !important;
        height: 45px !important;
    }
    
    .hero-text {
        order: 2 !important;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .btn-hero {
        order: 3 !important;
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
    }

    /* Section boutique - adaptation mobile */
    .selection-header {
        padding: 20px 15px !important;
        margin: 0 -15px !important;
    }
    
    .selection-header h2 {
        font-size: 1.4rem !important;
    }

    /* Grille produits - 2 colonnes sur mobile */
    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 15px !important;
        margin: 0 -15px !important;
        overflow-x: visible !important;
    }
    
    .card {
        padding: 10px !important;
        border-radius: 12px !important;
    }
    
    .image-box {
        height: 150px !important;
        border-radius: 8px !important;
    }
    
    .product-details {
        padding: 12px 8px !important;
    }
    
    .product-details h3 {
        font-size: 0.85rem !important;
        margin: 8px 0 6px !important;
        line-height: 1.1 !important;
    }
    
    .product-price {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    .btn-commander-card {
        padding: 6px !important;
        font-size: 0.75rem !important;
        border-radius: 6px !important;
    }

    /* Footer - adaptation mobile */
    .footer-visual {
        display: block !important;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-visual .shape-img {
        width: 100px !important;
        height: 100px !important;
        background-color: #ffffff !important;
        border-radius: 50% !important;
        border: 3px solid rgba(255, 255, 255, 0.2);
        -webkit-mask-image: none !important;
        mask-image: none !important;
        display: block;
        margin: 0 auto;
    }
    
    .footer-canva {
        margin: 30px -15px 0 -15px !important;
        padding: 0 15px !important;
        border-radius: 20px 20px 0 0 !important;
    }
    
    .footer-container {
        padding: 25px 15px 15px 15px !important;
        gap: 15px !important;
    }
    
    .footer-info h2 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .contact-item {
        padding: 12px 8px !important;
        border-radius: 12px !important;
    }
    
    .contact-item strong {
        font-size: 1.2rem !important;
    }
    
    .contact-item p {
        font-size: 0.75rem !important;
    }
    
    .social-links-container {
        gap: 12px !important;
    }
    
    .social-link {
        width: 35px !important;
        height: 35px !important;
    }
    
    .social-link i {
        font-size: 1rem !important;
    }
    
    .copyright-bar {
        margin: 0 -15px !important;
        padding: 10px 15px !important;
    }
    
    .copyright-bar p {
        font-size: 0.7rem !important;
    }
}

/* Très petits écrans (moins de 480px) */
@media (max-width: 480px) {
    header {
        padding: 10px 3%;
    }
    
    .modern-logo {
        font-size: 1rem !important;
    }
    
    .ma-text {
        font-size: 1.5rem !important;
    }
    
    .boutique-text {
        font-size: 1.1rem !important;
    }
    
    header nav a {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .hero-banner {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.2;
        padding: 0 5px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 5px;
    }
    
    .btn-hero {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .floating-product {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .categories-section {
        padding: 30px 3%;
    }
    
    .categories-header h2 {
        font-size: 1.8rem !important;
    }
    
    .category-card {
        flex: 0 0 140px;
        padding: 20px 10px;
    }
    
    .category-icon {
        font-size: 2rem !important;
    }
    
    .product-grid {
        padding: 20px 3% !important;
        gap: 20px !important;
    }
    
    .image-box {
        height: 200px !important;
    }
    
    .footer-container {
        padding: 30px 3%;
    }
    
    .footer-visual .shape-img {
        width: 150px !important;
        height: 150px !important;
    }
}

/* --- BOUTON VISITER NOS PRODUITS --- */
.btn-outline {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: var(--vif-rose);
    text-decoration: none;
    border: 2px solid var(--vif-rose);
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-outline:hover {
    background: var(--vif-rose);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover::before {
    left: 100%;
}

/* Style pour le petit bouton "Notre devise" */
.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    background: white;
    color: var(--dark);
    border-color: var(--dark);
}

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

/* ===============================
   BOUTON COMMANDER (CARTE PRODUIT)
================================ */
.btn-commander-card {
    margin-top: 15px;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    background: var(--vif-rose);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-commander-card:hover {
    background: #b3154f;
    transform: translateY(-3px);
}

/* ===============================
   PAGE COMMANDE
================================ */
.commande-container {
    max-width: 900px;
    margin: 120px auto;
    display: flex;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 40px 15px 40px 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.commande-produit {
    flex: 1;
    text-align: center;
}

.commande-produit img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15% 15% 15% 15%;
    margin-bottom: 20px;
}

.commande-prix {
    font-size: 1.4rem;
    color: var(--vif-rose);
    font-weight: bold;
}

.commande-form {
    flex: 1;
}

.commande-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.commande-form input {
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: var(--beige-prononce);
    outline: none;
}

.commande-form input:focus {
    border-color: var(--vif-rose);
}

/* Bouton final WhatsApp */
.btn-commander {
    margin-top: 30px;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: var(--vif-rose);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-commander:hover {
    background: #b3154f;
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 700px) {
    .commande-container {
        flex-direction: column;
        text-align: center;
    }
}
.btn-commander,
.btn-commander-card {
    position: relative;
    overflow: hidden;
}

.btn-commander:active,
.btn-commander-card:active {
    transform: scale(0.95);
}
/* L'arrière-plan semi-transparent qui couvre tout l'écran */
.popup-overlay {
    display: none; /* Caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000; /* S'assure qu'il passe au-dessus du reste */
}

/* La boîte blanche centrale */
.popup-container {
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Le bouton 'X' pour fermer */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.popup-close:hover {
    color: #ff0000; /* Petit effet au survol */
}
.commande-container {
    display: flex;
    flex-wrap: wrap; /* Permet de mettre l'un à côté de l'autre si l'écran est large */
    gap: 20px;
}

.commande-produit, .commande-form {
    flex: 1;
    min-width: 300px; /* Force à passer l'un sous l'autre sur petit écran */
}
