/* ===== VARIABLES CSS ===== */
:root {
    /* Couleurs (identité conservée) */
    --primary-dark: #1A472A;
    --primary: #2E7D32;
    --primary-light: #4CAF50;
    --primary-lighter: #E8F5E9;
    --white: #FFFFFF;
    --light-gray: #F5F7F6;
    --medium-gray: #E2E8E4;
    --dark-gray: #333333;
    --text: #1A1A1A;
    --text-light: #5C6560;
    
    /* Effets */
    --shadow-sm: 0 2px 8px rgba(26, 71, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 71, 42, 0.1);
    --shadow-lg: 0 16px 40px rgba(26, 71, 42, 0.12);
    --shadow-xl: 0 24px 56px rgba(26, 71, 42, 0.16);
    --shadow-glow: 0 0 0 1px rgba(76, 175, 80, 0.15), 0 12px 32px rgba(46, 125, 50, 0.2);
    
    /* Bordures */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--white);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(76, 175, 80, 0.08), transparent),
        radial-gradient(circle at 100% 50%, rgba(26, 71, 42, 0.03) 0%, transparent 40%);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary-lighter);
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }

p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-title {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    z-index: -1;
    transition: var(--transition-normal);
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.payment-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.payment-btn:hover {
    background: linear-gradient(135deg, #388E3C, #1B5E20);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1100; /* Augmenté pour être au-dessus du contenu */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
}

.header.hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
}

.logo-image {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-lighter);
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.cart-btn {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.cart-btn:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1101;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== PROMOTION BANNER ===== */
.promotion-banner {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1200; /* Plus élevé que le header */
}

.promotion-container {
    width: 100%;
    overflow: hidden;
}

.promotion-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: scrollText 20s linear infinite;
    white-space: nowrap;
}

.promotion-content i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.promotion-text {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

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

/* ===== VIDEO BANNER ===== */
.video-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: var(--space-lg) 0;
    animation: slideDown 0.5s ease-out;
}

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

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.banner-text h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.banner-actions {
    display: flex;
    gap: var(--space-md);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(232, 245, 233, 0.95) 0%, 
        rgba(255, 255, 255, 0.95) 100%), 
        url('https://images.unsplash.com/photo-1600891964092-4316c288032e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    padding-top: 0; /* Supprimé car la navbar est superposée */
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
    padding-top: 100px; /* Espace pour la navbar */
}

.hero-content {
    animation: fadeUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-badge i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--light-gray);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.product-image {
    height: 220px;
    overflow: hidden;
}

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

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

.product-content {
    padding: var(--space-lg);
}

.product-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-name {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.product-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
}

.add-to-cart {
    width: 44px;
    height: 44px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.add-to-cart:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.add-to-cart.added {
    background: var(--primary);
    color: var(--white);
}

.add-to-cart.adding {
    animation: pulse 0.5s ease;
}

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

.cart-preview {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
}

.cart-preview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-weight: 600;
    color: var(--text-light);
}

.cart-preview.has-items .cart-preview-content {
    color: var(--primary);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.step-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid var(--primary-lighter);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.step-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--text-light);
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-gallery {
    animation: fadeInRight 1s ease-out;
}

.gallery-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    aspect-ratio: 1;
}

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

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.contact-card {
    background: var(--light-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-card-title {
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--medium-gray);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.contact-details a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-xs);
    border-bottom: 1px dashed var(--medium-gray);
}

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

.social-section {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--medium-gray);
}

.social-section h4 {
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link.x { 
    background: #000000; 
}
.social-link.tiktok { 
    background: #000000; 
}
.social-link.instagram { 
    background: #e4405f; 
}
.social-link.whatsapp { 
    background: #25d366; 
}

.social-link.x:hover { 
    background: #1a1a1a; 
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.social-link.tiktok:hover { 
    background: #1a1a1a; 
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.social-link.instagram:hover { 
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.social-link.whatsapp:hover { 
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-container {
    animation: fadeInUp 1s ease-out;
}

.contact-form-card {
    background: var(--light-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-form-title {
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group label i {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234CAF50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Map Section */
.map-section {
    margin-top: var(--space-xl);
}

.map-container {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo .logo-title,
.footer-logo .logo-subtitle {
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin: var(--space-md) 0;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.certification {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}

.certification i {
    color: var(--primary-light);
}

.footer-title {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1.2rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-list a:hover {
    color: var(--white);
    padding-left: var(--space-xs);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item i {
    color: var(--primary-light);
    width: 20px;
}

.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-light) !important;
    font-weight: 600;
}

.footer-admin-link:hover {
    color: var(--white) !important;
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.modal-title h3 {
    color: var(--white);
    margin: 0;
}

.close-modal {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--space-xl);
    overflow-y: auto;
    flex-grow: 1;
}

/* Cart Modal */
.cart-items {
    margin-bottom: var(--space-xl);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    animation: slideInRight 0.3s ease;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-full);
    padding: var(--space-xs);
    border: 1px solid var(--medium-gray);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-normal);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity {
    width: 50px;
    text-align: center;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    -moz-appearance: textfield;
}

.quantity::-webkit-outer-spin-button,
.quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.remove-item {
    width: 36px;
    height: 36px;
    background: #ffebee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f44336;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.remove-item:hover {
    background: #ffcdd2;
    color: #d32f2f;
    transform: scale(1.1);
}

.cart-summary {
    background: var(--light-gray);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.cart-totals {
    margin-bottom: var(--space-lg);
}

.total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--medium-gray);
}

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

.total-item.grand-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.cart-actions {
    display: flex;
    gap: var(--space-md);
}

.cart-actions .btn {
    flex: 1;
}

/* Success Modal */
.success-modal .modal-content {
    max-width: 500px;
}

.success-content {
    text-align: center;
    padding: var(--space-xxl);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 3rem;
    animation: successPulse 0.6s ease;
}

.success-content h3 {
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.success-content p {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.toast-message {
    color: var(--text-light);
    font-size: 0.9rem;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.toast-close:hover {
    background: var(--light-gray);
    color: var(--text);
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 4000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-overlay.show {
    display: flex;
    opacity: 1;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--primary-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-md);
}

.loading-content h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.loading-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== QUANTITY CONTROL STYLES ===== */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 5px;
    border: 1px solid var(--medium-gray);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-normal);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity {
    width: 50px;
    text-align: center;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    -moz-appearance: textfield;
}

.quantity::-webkit-outer-spin-button,
.quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== WHATSAPP CHAT ===== */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 300px;
    display: none;
}

.whatsapp-bubble.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.whatsapp-bubble-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.whatsapp-bubble-header i {
    color: #25D366;
    font-size: 1.5rem;
}

.whatsapp-bubble-header h4 {
    margin: 0;
    color: var(--primary-dark);
}

.whatsapp-bubble-content {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.whatsapp-bubble-actions {
    display: flex;
    gap: 10px;
}

.whatsapp-bubble-actions .btn {
    flex: 1;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* ===== DESIGN REFRESH — structure & polish (couleurs & contenus inchangés) ===== */

/* Header premium glass */
.header {
    top: 0;
    border-bottom: 1px solid rgba(26, 71, 42, 0.06);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.header.scrolled {
    padding: 0.65rem 0;
    box-shadow: 0 4px 30px rgba(26, 71, 42, 0.08);
}

.logo-image {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.logo:hover .logo-image {
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-lighter);
}

.nav-link::after {
    display: none;
}

.cart-btn {
    border: 2px solid rgba(46, 125, 50, 0.15);
}

/* Bannière promo harmonisée */
.promotion-banner {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: 0.65rem 0;
}

.promotion-text {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

/* Hero moderne */
.hero {
    min-height: calc(100vh - 2rem);
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(76, 175, 80, 0.14), transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(26, 71, 42, 0.08), transparent 50%),
        linear-gradient(165deg, rgba(232, 245, 233, 0.92) 0%, rgba(255, 255, 255, 0.95) 50%, var(--light-gray) 100%),
        url('https://images.unsplash.com/photo-1600891964092-4316c288032e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-decor-1 {
    width: 420px;
    height: 420px;
    top: 10%;
    right: -8%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    animation: floatSoft 8s ease-in-out infinite;
}

.hero-decor-2 {
    width: 280px;
    height: 280px;
    bottom: 15%;
    left: -5%;
    background: radial-gradient(circle, rgba(26, 71, 42, 0.08) 0%, transparent 70%);
    animation: floatSoft 10s ease-in-out infinite reverse;
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.03); }
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: var(--space-xxl);
}

.hero-badge {
    border: 1px solid rgba(46, 125, 50, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-image {
    position: relative;
    background: var(--white);
    padding: var(--space-xl);
    border: 1px solid rgba(46, 125, 50, 0.12);
    box-shadow: var(--shadow-xl);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: var(--radius-xl);
    pointer-events: none;
    opacity: 0.5;
}

.hero-image img {
    height: auto;
    min-height: 320px;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Sections alternées */
.products-section {
    background: var(--light-gray);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.2), transparent);
}

.process-section {
    background: var(--white);
}

.about-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.contact-section {
    background: var(--white);
}

/* Filtres & cartes produits */
.category-filters {
    padding: var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--medium-gray);
}

.filter-btn {
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: none;
}

.filter-btn:not(.active):hover {
    background: var(--primary-lighter);
    border-color: var(--primary-light);
    color: var(--primary-dark);
    transform: none;
}

.product-card {
    border: 1px solid rgba(46, 125, 50, 0.08);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover::before {
    opacity: 1;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-footer {
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--medium-gray);
}

.add-to-cart {
    box-shadow: var(--shadow-sm);
}

.cart-preview {
    border: 1px solid rgba(46, 125, 50, 0.15);
    background: linear-gradient(135deg, var(--white), var(--primary-lighter));
}

.cart-preview.has-items {
    box-shadow: var(--shadow-glow);
}

/* Étapes processus — timeline */
.process-steps {
    position: relative;
}

@media (min-width: 769px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 48px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-lighter), var(--primary-light), var(--primary-lighter));
        z-index: 0;
    }
}

.step-card {
    background: var(--white);
    z-index: 1;
}

.step-number {
    box-shadow: var(--shadow-md);
    font-size: 0.95rem;
}

/* À propos */
.stat-card {
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.stat-card:hover {
    border-color: var(--primary-light);
}

.feature-item {
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--medium-gray);
}

/* Contact */
.contact-card,
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.contact-card:hover,
.contact-form-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-lighter), var(--white));
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea,
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--medium-gray);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
    outline: none;
}

.map-container {
    border: 3px solid var(--white);
    box-shadow: var(--shadow-lg);
}

/* Footer riche */
.footer {
    background: linear-gradient(160deg, var(--primary-dark) 0%, #143d24 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer .logo-image {
    background: rgba(255, 255, 255, 0.95);
}

/* Modales & toast */
.modal-content {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
    padding: var(--space-lg) var(--space-xl);
}

.toast {
    border-radius: var(--radius-lg);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
}

/* WhatsApp flottant */
.whatsapp-btn {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-bubble {
    border: 1px solid var(--medium-gray);
    padding: var(--space-md);
    width: min(320px, calc(100vw - 2rem));
}

.whatsapp-bubble-header {
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--medium-gray);
}

/* Page restaurants */
.professional-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--medium-gray);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    display: block;
}

.benefit-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.benefit-card p {
    font-size: 0.95rem;
    margin: 0;
}

.restaurant-product-card .product-price,
.restaurant-cart-preview {
    border-radius: var(--radius-lg);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xxl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--medium-gray);
}

.no-products i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: var(--space-md);
}

/* Boutons affinés */
.btn {
    letter-spacing: 0.02em;
}

.btn-primary {
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
}

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

/* Tablettes */
@media (max-width: 1024px) {
    :root {
        --space-xl: 2rem;
        --space-xxl: 3rem;
    }
    
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-gallery {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    /* Header */
    .header-content {
        position: relative;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 100px var(--space-xl) var(--space-xl);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    /* Video Banner */
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    /* Hero */
    .hero .container {
        padding-top: 120px; /* Ajusté pour mobile */
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-md);
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-lg);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .certifications {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    /* Modals */
    .modal-content {
        width: 95%;
        margin: var(--space-md);
    }
    
    .cart-item {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }
    
    .cart-item-info {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-actions {
        justify-content: center;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    /* Promotion Banner */
    .promotion-content {
        animation: scrollText 15s linear infinite;
    }
    
    .promotion-text {
        font-size: 0.8rem;
    }
    
    .promotion-content i {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .section-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    /* Gallery ultra-responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .gallery-item {
        aspect-ratio: auto;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 1.3rem;
        margin-bottom: var(--space-md);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }
    
    .toast {
        right: var(--space-sm);
        left: var(--space-sm);
        max-width: none;
    }
    
    .hero .container {
        padding-top: 100px; /* Ajusté pour petit mobile */
    }
}

/* Ultra-petits écrans */
@media (max-width: 340px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    p { font-size: 0.95rem; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .gallery-title {
        font-size: 1.2rem;
        margin-bottom: var(--space-sm);
    }
    
    .stat-card {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}