* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nouvelle palette de couleurs bleues */
    --primary-color: #1e3a5f;        /* Bleu marine profond */
    --secondary-color: #2d5aa0;      /* Bleu royal */
    --accent-color: #4a90e2;         /* Bleu ciel vibrant */
    --text-dark: #0f1419;            /* Bleu très foncé pour le texte */
    --text-light: #5a6c7d;           /* Bleu-gris pour texte secondaire */
    --bg-light: #f7f9fc;             /* Bleu très clair pour backgrounds */
    --bg-cream: #eef4f9;             /* Bleu crème doux */
    
    /* Couleurs supplémentaires pour plus de variété */
    --blue-gradient-start: #1e3a5f;  
    --blue-gradient-end: #4a90e2;
    --light-blue: #a8d0f0;           /* Bleu pastel */
    --hover-blue: #3579c7;           /* Bleu pour les hovers */
}

body {
    font-family: 'Arial', 'Times New Roman', serif;
    background: var(--bg-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Barre de livraison avec gradient bleu */
.delivery-bar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    animation: slideDown 0.8s ease;
    position: relative;
    overflow: hidden;
}

.delivery-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(30, 58, 95, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    gap: 30px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
    min-width: 200px;
    text-decoration: none;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    fill: var(--primary-color);
}

.logo-text {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
    font-style: italic;
}

.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-wrapper {
    position: relative;
    background: var(--bg-cream);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(30, 58, 95, 0.05);
}

.search-bar {
    width: 100%;
    padding: 14px 50px 14px 25px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
}

.search-bar::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.search-bar:focus {
    outline: none;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--hover-blue);
    transform: translateY(-50%) rotate(90deg);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    display: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
}

.search-suggestions.active {
    display: block;
    animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid var(--bg-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.suggestion-item:hover {
    background: var(--bg-cream);
    padding-left: 30px;
}

.suggestion-info {
    flex: 1;
}

.suggestion-name {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 3px;
}

.suggestion-category {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
}

.suggestion-price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s;
    background: white;
    border: 1px solid var(--bg-cream);
    color: var(--text-dark);
    font-size: 14px;
    position: relative;
    text-decoration: none;
}

.header-action:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.1);
    border-color: var(--light-blue);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Menu Navigation */
.nav-menu {
    background: white;
    border-top: 1px solid var(--bg-cream);
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 30px;
    flex-wrap: wrap;
}

.nav-item {
    color: var(--text-dark);
    padding: 18px 25px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-item:hover {
    color: var(--accent-color);
}

.nav-item:hover::after {
    width: 70%;
}

/* SLIDESHOW - Ratio EXACT pour 1900x700px = ZÉRO bande noire */
.slideshow-container {
    position: relative;
    width: 100%;
    background: #0f1419;
    overflow: hidden;
    height: 0;
    padding-bottom: 36.84%; /* Ratio exact: (700/1900) × 100 = 36.84% */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Photo complète visible */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: slideContent 1.5s ease;
    padding: clamp(20px, 3vw, 40px);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: min(600px, 90%);
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes slideContent {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: clamp(10px, 2vw, 20px);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-style: italic;
    letter-spacing: 0.08em;
    margin-bottom: clamp(15px, 2.5vw, 25px);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    opacity: 0.95;
}

.slide-btn {
    padding: clamp(10px, 2vw, 15px) clamp(24px, 3.5vw, 38px);
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    font-weight: 500;
}

.slide-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}

/* Images */
.slide-1 { background-image: url('../images/Slide_Maravele_1.png'); }
.slide-2 { background-image: url('../images/Slide_Maravele_2.png'); }
.slide-3 { background-image: url('../images/Slide_Maravele_3.png'); }
.slide-4 { background-image: url('../images/Slide_Maravele_4.png'); }
.slide-5 { background-image: url('../images/Slide_Maravele_5.png'); }

.slide-dots {
    position: absolute;
    bottom: clamp(15px, 3vw, 25px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(8px, 1.5vw, 12px);
    z-index: 10;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.dot {
    width: clamp(8px, 1vw, 10px);
    height: clamp(8px, 1vw, 10px);
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.6);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    border-color: var(--accent-color);
}

.dot:hover {
    background: rgba(255,255,255,0.6);
}

/* Carousel des parfums */
.products-section {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--accent-color);
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 25px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.product-card {
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image::before {
    font-size: 100px;
    opacity: 0.1;
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

.product-image-text {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 2px;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-inspiration {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-cream);
}

.product-price {
    font-size: 26px;
    font-weight: 300;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.product-detail-btn {
    padding: 10px 25px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: inherit;
}

.product-detail-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--bg-cream);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 10;
    color: var(--text-dark);
}

.carousel-nav:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--accent-color);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    transition: all 0.3s;
}

.search-menu-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-menu-wrapper .search-container {
    flex: 1;
}

/* Section Services avec thème bleu */
.services-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 80px 30px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    animation: float 20s ease-in-out infinite;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--accent-color);
    animation: bounce 2s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-name {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Section Packs */
.packs-section {
    background: var(--bg-cream);
    padding: 80px 30px;
    position: relative;
}

.packs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pack-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
    transition: all 0.4s;
    position: relative;
}

.pack-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

.pack-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pack-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pack-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pack-bottles {
    display: flex;
    gap: 10px;
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
}

.bottle {
    opacity: 0.8;
    color: var(--secondary-color);
    font-size: 60px;
}

.pack-content {
    padding: 30px;
}

.pack-name {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.pack-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.pack-features {
    list-style: none;
    margin-bottom: 25px;
}

.pack-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.pack-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pack-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 18px;
}

.current-price {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: bold;
}

.pack-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.pack-btn:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.2);
}

/* Bannière Promo */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 60px 30px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.promo-content {
    flex: 1;
    color: white;
    text-align: center;
}

.promo-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.promo-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.promo-text {
    font-size: 20px;
    margin-bottom: 30px;
}

.promo-percent {
    font-size: 36px;
    font-weight: bold;
    color: #a8d0f0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.timer-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.timer-value {
    display: block;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.9;
}

.promo-btn {
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.promo-decoration {
    position: absolute;
    right: 10%;
    font-size: 150px;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Témoignages */
.testimonials-section {
    background: linear-gradient(135deg, white 0%, var(--bg-light) 100%);
    padding: 80px 30px;
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--accent-color);
    opacity: 0.2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.12);
}

.testimonial-stars {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    font-size: 40px;
    color: var(--text-light);
}

.author-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-location {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-product {
    font-size: 12px;
    color: var(--secondary-color);
    padding-top: 15px;
    border-top: 1px solid var(--bg-cream);
}

.testimonial-product i {
    color: #28a745;
    margin-right: 5px;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.08);
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 400;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
    animation: shimmer 3s infinite;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    fill: var(--accent-color);
    margin-bottom: 10px;
}

.footer-logo h3 {
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 12px;
    font-style: italic;
    color: var(--light-blue);
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-btn {
    padding: 12px 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.newsletter-btn:hover {
    background: var(--hover-blue);
    transform: scale(1.05);
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Boutons flottants */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: slideInUp 0.5s;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
    background: linear-gradient(135deg, var(--accent-color), var(--hover-blue));
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Message d'alerte si aucun produit */
.no-products-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-style: italic;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
    .slideshow-container {
        padding-bottom: 36.84%;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-item {
        padding: 15px 18px;
        font-size: 13px;
    }

    .slideshow-container {
        padding-bottom: 36.84%;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .packs-container {
        grid-template-columns: 1fr;
    }

    .pack-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .delivery-bar {
        font-size: 11px;
        padding: 8px 10px;
    }

    .header {
        position: relative;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 15px;
    }

    .logo-container {
        min-width: auto;
        flex: 0 0 auto;
    }

    .logo-text {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .search-menu-wrapper {
        order: 3;
        flex: 0 0 100%;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
    }

    .search-container {
        flex: 1;
        max-width: 100%;
        margin-top: 0;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-action span:not(.cart-badge) {
        display: none;
    }

    .nav-menu {
        position: relative;
        background: white;
        border-top: 1px solid var(--bg-cream);
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-color);
        border: none;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        color: white;
        font-size: 20px;
        box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
        flex-shrink: 0;
    }

    .mobile-menu-toggle:hover {
        background: var(--hover-blue);
    }

    .nav-container {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
        z-index: 100;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-container.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav-item {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid var(--bg-cream);
        text-align: left;
    }

    .nav-item:hover {
        background: var(--bg-cream);
        padding-left: 25px;
    }

    /* Slideshow mobile - Même ratio */
    .slideshow-container {
        padding-bottom: 36.84%;
    }
    
    .slide {
        background-size: contain;
        background-position: center;
    }
    
    .slide-content {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        max-width: 85%;
    }

    .products-section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-card {
        min-width: 280px;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .product-card {
        scroll-snap-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-title {
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .packs-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        left: 15px;
        bottom: 15px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
        letter-spacing: 3px;
    }

    /* Slideshow mobile petit écran - Même ratio */
    .slideshow-container {
        padding-bottom: 36.84%;
    }
    
    .slide {
        background-size: contain;
        background-position: center;
    }
    
    .slide-content {
        padding: 15px;
        font-size: 0.9em;
        max-width: 90%;
    }

    .product-card {
        min-width: 260px;
    }

    .product-image {
        height: 280px;
    }

    .services-section {
        padding: 50px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .packs-section {
        padding: 50px 20px;
    }

    .pack-card {
        min-width: auto;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        left: 10px;
        bottom: 70px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        right: 10px;
        bottom: 20px;
    }
}