/* ============================================
   DAFANI - Styles Principaux
   Le Trésor de Chez Nous | Jus 100% Burkinabè
   ============================================ */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --primary-orange: #ff8c00;
    --primary-yellow: #fab507;
    --primary-gold: #f2dc61;
    --primary-green: #456c1c;
    --primary-green-dark: #5A9A2F;
    --primary-green-light: #9CCC65;

    /* --primary-orange: #FF8C00;
    --primary-yellow: #FFB800;
    --primary-gold: #FFD700;
    --primary-green: #7CB342;
    --primary-green-dark: #5A9A2F;
    --primary-green-light: #9CCC65; */

    /* Couleurs neutres */
    --dark: #2D2D2D;
    --gray: #666;
    --gray-light: #999;
    --gray-lighter: #E0E0E0;
    --white: #FFFFFF;
    --bg-cream: #FFFEF9;
    --bg-peach: #fcfbfa;

    /* Typographie */
    --font-main: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Bordures */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 30px;

    /* Ombres */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 5px 20px rgba(255, 184, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s ease;
}

body {
    font-family: var(--font-main);
    overflow-x: hidden;
    background: var(--bg-cream);
    color: var(--dark);
    line-height: 1.6;
}

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

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

/* ========== NAVIGATION ========== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5%;
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-medium);
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
}



nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

nav.scrolled .nav-links a {
    color: #101010;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-orange);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}

.nav-links a {
    color: var(--white);
    font-weight: var(--font-weight-medium);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.cart-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
    position: relative;
}

.cart-icon:hover {
    transform: scale(1.15);
}

.cta-nav {
    background: var(--primary-yellow);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-orange);
}

.cta-nav:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-orange);
}

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 0;
    min-height: 120vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 5% 0;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* Hero backgrounds par page */
.hero.hero-home {
    background: url('../images/acuiel.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero.hero-produits {
    background: url('../images/Page nos produits.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero.hero-marque {
    background: url('../images/img dafani new 4.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero.hero-actualites {
    background: url('../images/actualite1.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero.hero-experiences {
    background: url('../images/Page Experience.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero.hero-contact {
    background: url('../images/Contact.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero.hero-contact .hero-content {
    padding-top: 8rem;
}

/* Waves Container */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

/* Individual Waves */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Wave 1 - Bottom Layer (Dégradé orange avec masque SVG) */
.hero-wave-1 {
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFF8E7 15%, #FFEFCC 25%, #FFDB8B 40%, #FDB813 55%, #FFB800 70%, #FFA500 85%, #FF9500 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 1;
    z-index: 3;
    height: 100%;
}

/* Wave 2 - Middle Layer (Dégradé orange avec masque SVG) */
.hero-wave-2 {
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFF8E7 15%, #FFEFCC 25%, #FFDB8B 40%, #FDB813 55%, #FFB800 70%, #FFA500 85%, #FF9500 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.7;
    z-index: 2;
    height: 100%;
}

/* Wave 3 - Top Layer (Dégradé orange avec masque SVG) */
.hero-wave-3 {
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFF8E7 15%, #FFEFCC 25%, #FFDB8B 40%, #FDB813 55%, #FFB800 70%, #FFA500 85%, #FF9500 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    height: 100%;
}

/* ========== HERO MARQUE WAVES - TRANSITION VERS FOND BLANC/CRÈME ========== */
/* Wave 1 - Bottom Layer (Dégradé vers blanc/crème) */
.hero-marque .hero-wave-1 {
    background: #FFFEF9;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 1;
    z-index: 3;
    height: 100%;
}

/* Wave 2 - Middle Layer (Dégradé vers blanc/crème) */
.hero-marque .hero-wave-2 {
    background: #FFF8E7;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.7;
    z-index: 2;
    height: 100%;
}

/* Wave 3 - Top Layer (Dégradé vers blanc/crème) */
.hero-marque .hero-wave-3 {
    background: #FFEFCC;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    height: 100%;
}

/* ========== FOOTER WAVES - STYLE HERO AVEC DÉGRADÉ VERT ========== */



.hero-content {
    z-index: 2;
    padding-right: var(--spacing-xl);
}

.hero h1 {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    /* Lisibilite du titre pose sur la photo (fond clair) */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
    color: #f19625;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero p {
    font-size: 1.4rem;
    color: #2D2D2D;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.hero-select {
    flex: 1;
    max-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--gray-light);
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition-fast);
}

.hero-select:hover,
.hero-select:focus {
    border-color: var(--primary-orange);
}

.btn-hero {
    background: var(--primary-yellow);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-orange);
}

.btn-hero:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 600px;
    z-index: 2;
}

.hero-main-shape {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-55%) rotate(2deg);
    }
}

.hero-secondary-shape {
    position: absolute;
    right: 5%;
    top: 45%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    z-index: 2;
    border: 3px solid var(--white);
}

.hero-person {
    position: absolute;
    right: 8%;
    bottom: 0;
    width: 450px;
    height: 550px;
    background: linear-gradient(135deg, #CC0000 0%, #FF3333 100%);
    z-index: 3;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 20%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.person-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
}

.hero-badge {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInUp 1s ease-out;
}

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

.badge-top {
    top: 12%;
    right: 18%;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.badge-bottom {
    bottom: 15%;
    right: -5%;
    animation-delay: 0.8s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-content h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.badge-content p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin: 0;
}

.stars {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.badge-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.deco-triangle {
    position: absolute;
    bottom: 5%;
    right: 25%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--primary-yellow);
    z-index: 1;
    opacity: 0.8;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 0;
    margin-top: 0;
    padding-bottom: 15rem;
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFF8E7 15%, #FFEFCC 25%, #FFDB8B 40%, #FDB813 55%, #FFB800 70%, #FFA500 85%, #FF9500 100%);
    position: relative;
    overflow: hidden;
}

/* Image décorative ananas dans products */
.deco-ananas-products {
    position: absolute;
    top: -2rem;
    right: 0%;
    width: 300px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
}

/* Products Waves Container - En haut de la section */
.products-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    transform: rotate(180deg);
    pointer-events: none;
}

/* Products Wave */
.products-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.products-wave-1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='%23FFFEF9' fill-opacity='1'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
    height: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: var(--font-weight-black);
    color: #2D2D2D;
    margin-bottom: var(--spacing-sm);
    padding-top: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.section-title span {
    color: #FF6B00;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* Style spécifique pour le titre de la section produits */
.products .section-title span {
    color: #FFFFFF;
    font-size: 4.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 2.0rem;
    color: #FFFFFF;
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Products Seamless Grid - Homepage (sans cards) */
.products-seamless-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-xxl);
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow: visible;
}

/* Responsive - Tablettes et petits écrans : garder 3 colonnes mais réduire l'espacement */
@media (max-width: 1024px) {
    .products-seamless-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* Responsive - Tablettes : réduire la taille des images */
@media (max-width: 1024px) {
    .product-seamless-icon {
        max-width: 300px;
    }

    .product-seamless-name {
        font-size: 1rem;
    }

    .product-seamless-desc {
        font-size: 0.8rem;
    }

    .btn-read-more {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* Responsive - Mobile uniquement : 1 colonne */
@media (max-width: 600px) {
    .products-seamless-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-seamless-icon {
        max-width: 500px;
    }

    .product-seamless-name {
        font-size: 1.2rem;
    }

    .product-seamless-desc {
        font-size: 0.9rem;
    }

    .btn-read-more {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Product Seamless - Intégré au fond sans bordures */
.product-seamless {
    text-align: center;
    transition: transform 0.4s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-seamless:hover {
    transform: translateY(-10px);
}

/* Conteneur pour description + bouton sur la même ligne */
.product-info-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

/* Product Name - En dessous de l'image */
.product-seamless-name {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Product Image - Centrée avec effet flottant */
.product-seamless-image {
    margin-bottom: 1rem;
    position: relative;
}

.product-seamless-icon {
    max-width: 500px;
    height: auto;
    display: inline-block;
    transition: transform 0.4s ease;
    animation: floatSmooth 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(255, 140, 0, 0.15));
}

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

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

/* Product Description - Sur la même ligne avec le bouton */
.product-seamless-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Button Read More - Sur la même ligne */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: transparent;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-read-more:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Old Products Grid - Homepage */
.products-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Card - Homepage */
.product-card-home {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-home:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.15);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.3);
}

.product-badge.popular {
    background: linear-gradient(135deg, #7CB342, #9CCC65);
}

.product-badge.traditional {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.product-badge.new {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

/* Product Image Section */
.product-image-home {
    background: linear-gradient(135deg, #FFF5F0, #FFE5D9);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent);
    border-radius: 50%;
}

.product-icon-large {
    font-size: 7rem;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

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

/* Product Content */
.product-content-home {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: var(--font-weight-black);
}

.product-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Product Features */
.product-features-home {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.product-features-home .feature {
    background: rgba(124, 179, 66, 0.1);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Product Footer */
.product-footer-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price-home {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

/* Add to Cart Button */
.btn-add-cart-home {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-add-cart-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn-add-cart-home:active {
    transform: translateY(0);
}

.cart-icon-btn {
    font-size: 1.1rem;
}

/* Products CTA */
.products-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--primary-orange);
    border: 3px solid var(--primary-orange);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-view-all:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
    border-color: var(--primary-orange);
}

.btn-view-all .arrow {
    transition: transform 0.4s ease;
    font-size: 1.3rem;
}

.btn-view-all:hover .arrow {
    transform: translateX(8px);
}

/* Products Bottom Waves Container */
.products-bottom-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

/* Individual Bottom Waves */
.products-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bottom Wave 1 - Bottom Layer (Crème - couleur de la section Story) */
.products-bottom-wave-1 {
    background: #FFFEF9;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 1;
    z-index: 3;
    height: 100%;
}

/* Bottom Wave 2 - Middle Layer (Crème légèrement teinté) */
.products-bottom-wave-2 {
    background: #FFF8E7;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.7;
    z-index: 2;
    height: 100%;
}

/* Bottom Wave 3 - Top Layer (Crème très pâle) */
.products-bottom-wave-3 {
    background: #FFEFCC;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    height: 100%;
}

/* Old product card styles (kept for other sections) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-xl);
}

.product-card {
    background: transparent;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: none;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Actualités section - garder le fond blanc */
.actualites-section .product-card {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Actualités cards avec fond blanc */
.actu-card {
    background: var(--white) !important;
    position: relative;
    height: 510px;
    border: 1px solid var(--gray-lighter);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 !important;
}

.actu-card:hover {
    border: 1px solid var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.actu-overlay {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.actu-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.4s ease;
}

.actu-card:hover .actu-overlay img {
    transform: scale(1.1);
}

.actu-content {
    position: relative;
    z-index: 2;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    flex-grow: 1;
    background: var(--white);
}

.actu-content h3 {
    color: var(--dark) !important;
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.4rem * 1.3 * 2);
}

.actu-content p {
    color: var(--gray) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.actu-card .btn-link {
    color: var(--primary-orange) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.actu-card .btn-link:hover {
    color: var(--primary-gold) !important;
    transform: translateX(5px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-gold));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
    background: rgba(255, 255, 255, 0.5);
}

/* Actualités section - effet hover avec fond blanc */
.actualites-section .product-card:hover {
    background: var(--white);
}

.product-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-black);
}

.product-card p {
    color: #5A5A5A;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.btn-link {
    color: var(--primary-orange);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: #FF7A00;
    transform: translateX(5px);
}

/* ========== STORY SECTION ========== */
.story {
    padding: 0 5%;
    padding-top: 0;
    padding-bottom: 6rem;
    margin-top: 0;
    background: var(--bg-cream);
    color: var(--dark);
    position: relative;
}

/* Image décorative citron dans story */
.deco-citron-story {
    position: absolute;
    top: -3rem;
    left: 2rem;
    width: 400px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-text {
    max-width: 500px;
}

.story-text h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    text-align: justify;
}

.btn-white {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    display: inline-block;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 25px rgba(255, 140, 0, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
    background: #FF7A00;
}

.story-image {
    background: transparent;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.story-img {
    max-width: 150%;
    height: auto;
    max-height: 1200px;
    object-fit: contain;
    transform: scale(1.5);
}

/* Image plus grande pour la section avis dans experiences.html */
.story-img-large {
    max-height: 1500px;
    transform: scale(1.3);
}

/* Style spécifique pour les images de marque.html avec forme ondulée */
.story-img-shaped {
    max-width: 100%;
    height: auto;
    max-height: 1000px;
    object-fit: cover;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: white;
}

.story-img-shaped:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.3);
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
}

/* Story Bottom Waves Container */
.story-bottom-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    /* Purement decoratif : ne doit jamais intercepter les clics du contenu au-dessus */
    pointer-events: none;
}

/* Individual Story Bottom Waves */
.story-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Story Bottom Wave 1 - Bottom Layer (Dégradé vert identique à Actualités) */
.story-bottom-wave-1 {
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFFFFF 10%, #F0F8E8 25%, #E1F0D4 40%, #9CCC65 55%, #7CB342 70%, #5A9A2F 85%, #5A9A2F 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 1;
    z-index: 3;
    height: 100%;
}

/* Story Bottom Wave 2 - Middle Layer (Dégradé vert identique à Actualités) */
.story-bottom-wave-2 {
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFFFFF 10%, #F0F8E8 25%, #E1F0D4 40%, #9CCC65 55%, #7CB342 70%, #5A9A2F 85%, #5A9A2F 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C250,50 450,140 650,90 C850,40 1050,130 1200,90 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.7;
    z-index: 2;
    height: 100%;
}

/* Story Bottom Wave 3 - Top Layer (Dégradé vert identique à Actualités) */
.story-bottom-wave-3 {
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFFFFF 10%, #F0F8E8 25%, #E1F0D4 40%, #9CCC65 55%, #7CB342 70%, #5A9A2F 85%, #5A9A2F 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C350,120 550,30 750,80 C950,130 1150,50 1200,80 L1200,200 L0,200 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    height: 100%;
}

/* ========== ACTUALITES SECTION ========== */
.actualites-section {
    position: relative;
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFFFFF 10%, #F0F8E8 25%, #E1F0D4 40%, #9CCC65 55%, #7CB342 70%, #5A9A2F 85%, #456c1c 100%);
    overflow: hidden;
    padding: 0 !important;
    margin: 0;
    min-height: 120vh;
}

/* Image décorative orange dans actualites */
.deco-orange-actualites {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 600px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
}

/* ========== EXPERIENCES SECTION ========== */
.experiences-section {
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    padding: 6rem 5% !important;
    margin: 0;
    min-height: 100vh;
}

.experiences-section .section-title {
    color: #2D2D2D;
    position: relative;
    z-index: 2;
    text-shadow: none;
}

.experiences-section .section-title span {
    color: #FF6B00 !important;
    font-weight: 900;
    /* Suit la taille responsive du .section-title (au lieu du 4.5rem herite
       de .products .section-title span, qui debordait sur mobile). */
    font-size: inherit;
}

.experiences-section .product-card {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    opacity: 1;
    color: #2D2D2D;
}

.experiences-section .product-card * {
    transition: all 0.5s ease;
}

.experiences-section .product-card::before {
    background: linear-gradient(90deg, #FF6B00, #FFB800);
    transform: scaleX(0);
}

.experiences-section .product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
    border-color: #FFB800;
    background: #FFFFFF;
}

.experiences-section .product-card:hover::before {
    transform: scaleX(1);
}

/* Testimonial Avatar - Cadre circulaire avec bordure orange */
.experiences-section .testimonial-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid #FF6B00;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    transition: all 0.4s ease;
    background: #F5F5F5;
}

.experiences-section .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.experiences-section .product-card:hover .testimonial-avatar {
    transform: scale(1.1);
    border-color: #FFB800;
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.experiences-section .product-card:hover .testimonial-avatar img {
    transform: scale(1.05);
}

.experiences-section .stars {
    position: relative;
    display: inline-block;
}

.experiences-section .stars::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experiences-section .product-card:hover .stars::after {
    opacity: 1;
}

.experiences-section .btn-link {
    color: #FF6B00;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.experiences-section .btn-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FFB800);
    transition: width 0.3s ease;
}

.experiences-section .btn-link:hover::before {
    width: 100%;
}

.experiences-section .btn-link:hover {
    color: #FF8C00;
}

/* Waves Top - Actualités */
.actualites-waves-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    transform: rotate(180deg);
}

.actualites-wave-top {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='%23FFFEF9' fill-opacity='1'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

/* Waves Bottom - Actualités */
.actualites-waves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.actualites-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,140 400,40 600,100 C800,160 1000,60 1200,100 L1200,200 L0,200 Z' fill='%23FFFEF9' fill-opacity='1'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

/* ========== SLIDER ACTUALITES - Défilement Continu ========== */
.actualites-slider-container {
    width: 100%;
    max-width: 100%;
    margin: 3rem auto;
    overflow: hidden;
    position: relative;
    padding: 0 2rem;
}

.actualites-slider {
    display: flex;
    gap: 2rem;
    animation: slideInfinite 60s linear infinite;
    width: fit-content;
}

.actualites-slider .product-card {
    min-width: calc((100vw - 8rem) / 3);
    max-width: calc((100vw - 8rem) / 3);
    flex-shrink: 0;
    transition: all 0.5s ease;
}

/* Carte centrale mise en avant automatiquement */
.actualites-slider .product-card.center-card {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.5);
    z-index: 10;
    position: relative;
}

/* Animation de défilement continu et fluide - RALENTIE */
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

/* Pause animation on hover */
.actualites-slider-container:hover .actualites-slider {
    animation-play-state: paused;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
    text-align: center;
    position: relative;
    z-index: 3;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
    animation: waveNewsletter 4s ease-in-out infinite;
    animation-delay: 1.5s;
    z-index: 1;
}

@keyframes waveNewsletter {
    0%, 100% {
        clip-path: path('M0,80 C150,140 350,20 500,80 C650,140 850,20 1000,80 C1150,140 1350,20 1500,80 C1650,140 1850,20 2000,80 L2000,200 L0,200 Z');
    }
    25% {
        clip-path: path('M0,80 C150,20 350,140 500,80 C650,20 850,140 1000,80 C1150,20 1350,140 1500,80 C1650,20 1850,140 2000,80 L2000,200 L0,200 Z');
    }
    50% {
        clip-path: path('M0,80 C150,140 350,20 500,80 C650,140 850,20 1000,80 C1150,140 1350,20 1500,80 C1650,140 1850,20 2000,80 L2000,200 L0,200 Z');
    }
    75% {
        clip-path: path('M0,80 C150,20 350,140 500,80 C650,20 850,140 1000,80 C1150,20 1350,140 1500,80 C1650,20 1850,140 2000,80 L2000,200 L0,200 Z');
    }
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.newsletter p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: var(--white);
    color: var(--primary-orange);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========== FOOTER ========== */
footer {
    background: var(--primary-green-dark);
    padding: 4rem 5% 3rem;
    position: relative;
    z-index: 4;
    overflow: hidden;
    color: var(--white);
}

/* Tous les textes du footer en blanc */
footer .footer-section {
    color: var(--white);
}

footer .footer-section h3 {
    color: var(--white);
}

footer .footer-section p {
    color: var(--white);
}



.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
}

@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-black);
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: var(--spacing-lg);
}

.footer-section p {
    text-align: justify;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1.2rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: #FFA500;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: var(--spacing-md);
    display: block;
    visibility: visible;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 1;
    visibility: visible;
}

.contact-item span {
    color: var(--white);
    font-size: 0.95rem;
    display: inline-block;
    opacity: 1;
    visibility: visible;
    line-height: 1.4;
}

.contact-item-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.contact-item-icon svg {
    fill: var(--white);
    width: 20px;
    height: 20px;
    display: block;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: #FFA500;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom span {
    color: #FFA500;
    font-weight: var(--font-weight-bold);
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
}

/* ========== CART BADGE ========== */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FF3333, #FF6666);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 51, 51, 0.4);
    animation: cartBounce 0.3s ease-out;
}

@keyframes cartBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ========== NOTIFICATION ========== */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-weight: var(--font-weight-medium);
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ========== UTILITY CLASSES ========== */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-lg); }
.mt-3 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-lg); }
.mb-3 { margin-bottom: var(--spacing-xl); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ========== LOADING STATE ========== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}