
.product-card {
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Product Page Styles */
.product-card {
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

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

.card-img-top {
    height: 200px;
    object-fit: contain;
}

.thumbnail img {
    transition: all 0.3s ease;
}

.thumbnail:hover img {
    border-color: var(--bs-primary) !important;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

.rating-input input:checked + label {
    color: #ffc107;
}

/* Commander page styles */
.form-check .card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked + .card {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

.form-check-input {
    margin-top: 0;
    margin-left: -1.25rem;
}

/* Confirmation page */
.confirmation-icon {
    font-size: 5rem;
}


        :root {

            --primary-color: #2A5B7C;

            --secondary-color: #F5F7FA;

            --accent-color: #FF6B6B;

            --text-color: #333333;

            --light-text: #6C757D;

        }

        

        /* Reset et base */

        body, html {

            overflow-x: hidden;

            width: 100%;

            margin: 0;

            padding: 0;

            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

            color: var(--text-color);

            background-color: white;

            line-height: 1.6;

            padding-top: 56px; /* Espace pour le header fixe */

        }

        

        img {

            max-width: 100%;

            height: auto;

            display: block;

        }

        

        /* Header fixe */

        header {

            position: fixed;

            top: 0;

            width: 100%;

            z-index: 1000;

            background: white;

            box-shadow: 0 2px 10px rgba(0,0,0,0.1);

        }

        

        /* Hero Section */

   /* === CORRECTION HERO SECTION === */

/* Supprimez l'ancienne définition .hero-banner et remplacez par ceci */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parallaxe */
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    margin-top: -56px; /* Compenser le header fixe */
    overflow: hidden;
}

/* Animation subtile pour la hero section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(42, 91, 124, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 107, 107, 0.1) 100%);
    animation: heroOverlay 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroOverlay {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
    
    /* Animation d'entrée */
    animation: heroContentSlide 1s ease-out;
}

@keyframes heroContentSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    
    /* Animation de typing effect subtile */
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 3px 6px rgba(0,0,0,0.4); }
    100% { text-shadow: 0 3px 6px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.1); }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    
    /* Animation de fade */
    animation: subtitleFade 2s ease-in-out infinite alternate;
}

@keyframes subtitleFade {
    0% { opacity: 0.85; }
    100% { opacity: 0.95; }
}

/* Amélioration des boutons */
.btn-primary-custom {
    background: linear-gradient(45deg, var(--accent-color), #e05b5b);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    /* Animation de pulsation subtile */
    animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

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

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

.btn-primary-custom:hover {
    background: linear-gradient(45deg, #e05b5b, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

/* Media Queries pour la Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
        background-attachment: scroll; /* Désactive parallaxe sur mobile */
        margin-top: -56px;
    }
    
    .hero-content {
        padding: 15px;
        text-align: center;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .btn-primary-custom,
    .btn-outline-light {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 350px;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-primary-custom,
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }
}

/* Animation au scroll pour la hero section */
.hero-section.animate {
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { 
        background-size: 100%; 
    }
    100% { 
        background-size: 110%; 
    }
}

        /* Section Catégories */

        .section-title {

            font-size: clamp(1.5rem, 3vw, 2rem);

            font-weight: 700;

            margin-bottom: 1.5rem;

            position: relative;

            display: inline-block;

        }

        

        .section-title:after {

            content: '';

            position: absolute;

            bottom: -10px;

            left: 0;

            width: 50px;

            height: 4px;

            background-color: var(--accent-color);

            border-radius: 2px;

        }

        

        .product-card {

            border: none;

            border-radius: 12px;

            overflow: hidden;

            transition: all 0.3s ease;

            box-shadow: 0 4px 6px rgba(0,0,0,0.05);

            margin-bottom: 1.5rem;

            height: 100%;

        }

        

        .product-card:hover {

            transform: translateY(-5px);

            box-shadow: 0 10px 20px rgba(0,0,0,0.1);

        }

        

        .product-img {

            height: 200px;

            object-fit: cover;

            transition: transform 0.3s ease;

        }

        

        .product-card:hover .product-img {

            transform: scale(1.03);

        }

        

        .product-title {

            font-weight: 600;

            margin-bottom: 0.5rem;

            font-size: 1rem;

        }

        

        .price {

            font-weight: 700;

            color: var(--primary-color);

            font-size: 1.1rem;

        }

        

        .old-price {

            text-decoration: line-through;

            color: var(--light-text);

            font-size: 0.9rem;

        }

        

        .promo-badge {

            background-color: var(--accent-color);

            font-weight: 600;

            padding: 0.25rem 0.75rem;

            border-radius: 4px;

            font-size: 0.8rem;

        }

        

        .view-all {

            color: var(--primary-color);

            text-decoration: none;

            font-weight: 600;

            transition: all 0.3s ease;

            display: inline-flex;

            align-items: center;

        }

        

        .view-all:hover {

            color: var(--accent-color);

        }

        

        .view-all i {

            margin-left: 5px;

            transition: transform 0.3s ease;

        }

        

        .view-all:hover i {

            transform: translateX(5px);

        }

        

        /* Newsletter */

        .newsletter-section {

            background-color: var(--primary-color);

            color: white;

            padding: 2rem 0;

            border-radius: 12px;

            margin: 2rem 0;

        }

        

        .newsletter-title {

            font-size: clamp(1.5rem, 3vw, 2rem);

        }

        

        .newsletter-subtitle {

            font-size: 1rem;

            margin-bottom: 1.5rem;

        }

        

        .newsletter-input {

            padding: 0.75rem;

            border-radius: 8px 0 0 8px;

            border: none;

        }

        

        /* Media Queries */

        @media (min-width: 768px) {

            .hero-section {

                height: 80vh;

                min-height: 600px;

            }

            

            .ad-banner {

                height: 350px;

            }

            

            .product-img {

                height: 200px;

            }

            

            .newsletter-input {

                border-radius: 8px 0 0 8px;

            }

            

            .input-group .btn-primary-custom {

                border-radius: 0 8px 8px 0;

            }

        }

        

        @media (min-width: 992px) {

            .hero-content {

                padding: 0;

            }

            

            .ad-banner {

                height: 400px;

            }

        }

  /* POUR LA BANIERE PUBLICITAIRE MODIFIEE */

  /* === BANNIÈRE PUBLICITAIRE DÉFILANTE === */

.ad-banner-section {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.ad-banner {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    
    /* Animation de défilement du background */
    animation: slideBackground 20s infinite linear;
    
    /* Effet de parallaxe subtil */
    background-attachment: fixed;
}

/* Animation de défilement horizontal du background */
@keyframes slideBackground {
    0%, 100% { 
        background-position: 0% center; 
        filter: brightness(1);
    }
    25% { 
        background-position: 25% center; 
        filter: brightness(1.1);
    }
    50% { 
        background-position: 50% center; 
        filter: brightness(0.9);
    }
    75% { 
        background-position: 75% center; 
        filter: brightness(1.05);
    }
}

/* Overlay animé pour plus d'effet */
.ad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.1), 
        transparent
    );
    animation: shimmer 3s infinite;
    z-index: 1;
}

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

/* Contenu de la bannière */
.ad-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    /* Animation d'apparition */
    animation: contentSlideIn 4s infinite alternate;
    transform-origin: left center;
}

@keyframes contentSlideIn {
    0% { 
        transform: translateX(-20px);
        opacity: 0.8;
    }
    100% { 
        transform: translateX(0);
        opacity: 1;
    }
}

/* Badge offre spéciale */
.ad-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    
    /* Animation de pulsation */
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    }
}

/* Titre principal */
.ad-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
    
    /* Animation de typing effect */
    overflow: hidden;
    border-right: 3px solid #3498db;
    white-space: nowrap;
    animation: typing 4s steps(40) infinite alternate, blink-caret 1s infinite;
}

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

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #3498db; }
}

/* Sous-titre */
.ad-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
    
    /* Animation de fade in */
    animation: fadeInUp 2s infinite alternate;
}

@keyframes fadeInUp {
    0% { 
        opacity: 0.7;
        transform: translateY(10px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bouton call-to-action */
.ad-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    /* Animation de hover permanente */
    animation: buttonFloat 3s ease-in-out infinite;
}

@keyframes buttonFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

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

.ad-link:hover::before {
    left: 100%;
}

.ad-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.ad-link i {
    transition: transform 0.3s ease;
    animation: arrowMove 2s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.ad-link:hover i {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ad-banner {
        height: 280px;
        background-attachment: scroll;
    }
    
    .ad-banner-content {
        padding: 25px;
        margin: 20px;
    }
    
    .ad-title {
        font-size: 1.8rem;
        animation: none; /* Désactive le typing sur mobile */
        border-right: none;
        white-space: normal;
    }
    
    .ad-subtitle {
        font-size: 1rem;
    }
    
    .ad-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ad-banner {
        height: 250px;
    }
    
    .ad-banner-content {
        padding: 20px;
        margin: 15px;
    }
    
    .ad-title {
        font-size: 1.5rem;
    }
    
    .ad-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* Animation au scroll (optionnel) */
.ad-banner-section.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.ad-banner-section.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}



 /* Categories Grid */
        .categories-section {
            padding: 4rem 0;
            background: var(--bg-light);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .category-card {
            background: white;
            padding: 2rem 1rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            cursor: pointer;
            border: 2px solid transparent;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border-color: var(--primary-orange);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-orange);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
        }

        .category-name {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0;
        }



        /* Trust Section */
        .trust-section {
            background: var(--bg-light);
            padding: 3rem 0;
        }

        .trust-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .trust-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        /* Animation des icônes de confiance */
.trust-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

.trust-feature:nth-child(1) .trust-icon { animation-delay: 0s; }
.trust-feature:nth-child(2) .trust-icon { animation-delay: 0.5s; }
.trust-feature:nth-child(3) .trust-icon { animation-delay: 1s; }
.trust-feature:nth-child(4) .trust-icon { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.trust-feature:hover .trust-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

        .trust-text h6 {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--text-dark);
        }

        .trust-text p {
            color: var(--text-light);
            margin: 0;
            font-size: 0.9rem;
        }




         /* Featured Products */
        .featured-section {
            padding: 4rem 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
        }

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

        .product-image {
            position: relative;
            padding-top: 70%;
            background: var(--bg-light);
            overflow: hidden;
        }

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

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

        .discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-orange);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
        }

        .current-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-orange);
        }

        .old-price {
            text-decoration: line-through;
            color: var(--text-light);
            font-size: 1rem;
        }

        .whatsapp-order-btn {
            width: 100%;
            background: var(--success-green);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .whatsapp-order-btn:hover {
            background: #00A085;
            transform: translateY(-2px);
        }


        /* Testimonials */
        .testimonials-section {
            padding: 4rem 0;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border-left: 4px solid var(--primary-orange);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .author-info h6 {
            margin: 0;
            font-weight: 600;
            color: var(--text-dark);
        }

        .author-info p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }



         .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
  }

  .whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-text {
    font-size: 14px;
    font-weight: bold;
  }

  /* Version mobile - Cache le texte en dessous de 600px */
  @media (max-width: 600px) {
    .whatsapp-text {
      display: none;
    }
    .whatsapp-float {
      padding: 12px;
      bottom: 15px;
      right: 15px;
    }
    .whatsapp-icon {
      width: 28px;
      height: 28px;
    }
  }

  /* Animation pulsante discrète */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  .whatsapp-float {
    animation: pulse 2s infinite;
  }


      /* barre d'urgence */

                .urgency-bar {
            background: linear-gradient(90deg, #ef4444, #f59e0b);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
                .social-proof-strip {
            background: #f8fafc;
            padding: 1rem 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }