/* ==========================================================================
   LA CAMPAGNARDE - Styles CSS
   Primeur haut de gamme - Fruits, Légumes, Crèmerie, Épicerie Fine
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables CSS - Palette de couleurs
   -------------------------------------------------------------------------- */
:root {
    /* Couleurs principales */
    --vert-principal: #1a6b4a;
    --vert-fonce: #145a3d;
    --vert-clair: #2d8a64;
    --vert-tres-clair: #e8f5ef;

    /* Couleurs secondaires */
    --blanc: #ffffff;
    --blanc-casse: #fafaf8;
    --creme: #f9f6f0;
    --beige: #f5f1e8;

    /* Accents */
    --orange-fruit: #e67e22;
    --rouge-tomate: #c0392b;
    --jaune-citron: #f4d03f;

    /* Textes */
    --texte-principal: #2c3e50;
    --texte-secondaire: #5d6d7e;
    --texte-clair: #7f8c8d;

    /* Ombres */
    --ombre-legere: 0 2px 10px rgba(0, 0, 0, 0.08);
    --ombre-moyenne: 0 4px 20px rgba(0, 0, 0, 0.12);
    --ombre-forte: 0 8px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-rapide: 0.2s ease;
    --transition-moyenne: 0.3s ease;
    --transition-lente: 0.5s ease;

    /* Espacements */
    --espacement-xs: 0.5rem;
    --espacement-sm: 1rem;
    --espacement-md: 2rem;
    --espacement-lg: 3rem;
    --espacement-xl: 5rem;

    /* Bordures */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--texte-principal);
    background-color: var(--blanc);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --------------------------------------------------------------------------
   Typographie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--texte-principal);
}

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

p {
    margin-bottom: 1rem;
}

.text-vert { color: var(--vert-principal); }
.text-center { text-align: center; }
.text-white { color: var(--blanc); }

/* --------------------------------------------------------------------------
   Utilitaires
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--espacement-md);
}

.section {
    padding: var(--espacement-xl) 0;
}

.section-vert {
    background-color: var(--vert-principal);
    color: var(--blanc);
}

.section-creme {
    background-color: var(--creme);
}

.section-beige {
    background-color: var(--beige);
}

.section-header {
    text-align: center;
    margin-bottom: var(--espacement-lg);
}

.section-header h2 {
    margin-bottom: var(--espacement-sm);
}

.section-header p {
    color: var(--texte-secondaire);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-vert .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Séparateur décoratif */
.decorateur {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: var(--espacement-sm) 0;
}

.decorateur::before,
.decorateur::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--vert-principal);
}

.decorateur-icon {
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-moyenne);
    cursor: pointer;
}

.btn-primary {
    background: var(--vert-principal);
    color: var(--blanc);
    border: 2px solid var(--vert-principal);
}

.btn-primary:hover {
    background: var(--vert-fonce);
    border-color: var(--vert-fonce);
    transform: translateY(-2px);
    box-shadow: var(--ombre-moyenne);
}

.btn-secondary {
    background: var(--blanc);
    color: var(--vert-principal);
    border: 2px solid var(--vert-principal);
}

.btn-secondary:hover {
    background: var(--vert-tres-clair);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--blanc);
    color: var(--vert-principal);
    border: 2px solid var(--blanc);
}

.btn-white:hover {
    background: transparent;
    color: var(--blanc);
}

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

.btn-outline-white:hover {
    background: var(--blanc);
    color: var(--vert-principal);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--blanc);
    transition: var(--transition-moyenne);
}

.header.scrolled {
    box-shadow: var(--ombre-legere);
}

/* Barre supérieure */
.top-bar {
    background: var(--vert-principal);
    color: var(--blanc);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: var(--blanc);
    font-size: 1rem;
    transition: var(--transition-rapide);
}

.top-bar-social a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Navigation principale */
.nav-main {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.nav-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 120px;
    width: auto;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.nav-link {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: var(--texte-principal);
    border-radius: var(--radius-md);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--vert-principal);
    background: var(--vert-tres-clair);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: var(--vert-principal);
    transition: var(--transition-rapide);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Actions navigation */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-action-btn {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vert-tres-clair);
    color: var(--vert-principal);
    font-size: 1.25rem;
    transition: var(--transition-rapide);
}

.nav-action-btn:hover {
    background: var(--vert-principal);
    color: var(--blanc);
}

.nav-action-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--orange-fruit);
    color: var(--blanc);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--vert-principal);
    transition: var(--transition-rapide);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--blanc);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--ombre-forte);
        transition: var(--transition-moyenne);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--beige);
    }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--vert-tres-clair) 0%, var(--blanc) 100%);
    padding-top: 120px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacement-xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blanc);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vert-principal);
    box-shadow: var(--ombre-legere);
    margin-bottom: var(--espacement-md);
}

.hero-badge-icon {
    font-size: 1.25rem;
}

.hero h1 {
    margin-bottom: var(--espacement-md);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--vert-principal);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--texte-secondaire);
    margin-bottom: var(--espacement-md);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: var(--espacement-md);
    margin-top: var(--espacement-lg);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--vert-principal);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-feature-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-feature-text span {
    display: block;
    font-weight: 400;
    color: var(--texte-secondaire);
    font-size: 0.8rem;
}

/* Image Hero */
.hero-visual {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-forte);
}

.hero-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Éléments décoratifs flottants */
.floating-element {
    position: absolute;
    background: var(--blanc);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--ombre-moyenne);
    animation: float 3s ease-in-out infinite;
}

.floating-element.top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0.5s;
}

.floating-element.bottom-left {
    bottom: 40px;
    left: -30px;
    animation-delay: 1s;
}

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

.floating-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-icon {
    width: 45px;
    height: 45px;
    background: var(--vert-tres-clair);
    color: var(--vert-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-text {
    font-weight: 700;
    font-size: 0.9rem;
}

.floating-text span {
    display: block;
    font-weight: 400;
    color: var(--texte-secondaire);
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-main img {
        height: 350px;
    }

    .floating-element {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Section Catégories
   -------------------------------------------------------------------------- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espacement-md);
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition-moyenne);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ombre-forte);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-lente);
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--espacement-md);
    color: var(--blanc);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--vert-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-overlay h3 {
    color: var(--blanc);
    margin-bottom: 0.5rem;
}

.category-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Section Disponibles cette Semaine (Admin Editable)
   -------------------------------------------------------------------------- */
.section-weekly {
    background: linear-gradient(135deg, var(--vert-tres-clair) 0%, var(--blanc) 100%);
}

.weekly-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espacement-md);
}

.weekly-product-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: var(--transition-moyenne);
}

.weekly-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-forte);
}

.weekly-product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--beige);
}

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

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

/* Placeholder si image non trouvée */
.weekly-product-image img[src=""],
.weekly-product-image img:not([src]) {
    background: var(--vert-tres-clair);
}

.weekly-product-info {
    padding: var(--espacement-md);
    text-align: center;
}

.weekly-product-info h4 {
    font-size: 1.25rem;
    color: var(--vert-principal);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.weekly-pitch {
    color: var(--texte-secondaire);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .weekly-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .weekly-products-grid {
        grid-template-columns: 1fr;
    }

    .weekly-product-info {
        padding: var(--espacement-sm);
    }

    .weekly-product-info h4 {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   Section Produits Catalogue (avec prix)
   -------------------------------------------------------------------------- */
.products-carousel {
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espacement-md);
}

.product-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: var(--transition-moyenne);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

/* Labels produits */
.product-labels {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-label {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.label-local {
    background: var(--vert-principal);
    color: var(--blanc);
}

.label-saison {
    background: var(--orange-fruit);
    color: var(--blanc);
}

.label-coup-coeur {
    background: var(--rouge-tomate);
    color: var(--blanc);
}

.label-bio {
    background: #27ae60;
    color: var(--blanc);
}

/* Actions produit */
.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-moyenne);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--texte-principal);
    box-shadow: var(--ombre-legere);
    transition: var(--transition-rapide);
}

.product-action-btn:hover {
    background: var(--vert-principal);
    color: var(--blanc);
}

/* Informations produit */
.product-info {
    padding: var(--espacement-sm);
}

.product-origin {
    font-size: 0.8rem;
    color: var(--vert-principal);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-producer {
    font-size: 0.85rem;
    color: var(--texte-secondaire);
    margin-bottom: 0.75rem;
}

.product-producer i {
    color: var(--vert-principal);
    margin-right: 0.25rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vert-principal);
}

.product-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--texte-secondaire);
}

.btn-add-cart {
    width: 45px;
    height: 45px;
    background: var(--vert-principal);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-rapide);
}

.btn-add-cart:hover {
    background: var(--vert-fonce);
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Section Engagement / Valeurs
   -------------------------------------------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espacement-md);
}

.value-card {
    text-align: center;
    padding: var(--espacement-md);
    background: var(--blanc);
    border-radius: var(--radius-lg);
    transition: var(--transition-moyenne);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--espacement-sm);
    background: var(--vert-tres-clair);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--vert-principal);
    transition: var(--transition-moyenne);
}

.value-card:hover .value-icon {
    background: var(--vert-principal);
    color: var(--blanc);
}

.value-card h4 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--texte-secondaire);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Section Calendrier Saison
   -------------------------------------------------------------------------- */
.season-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacement-xl);
    align-items: center;
}

.season-visual {
    position: relative;
}

.season-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-forte);
}

.season-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.current-month-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--vert-principal);
    color: var(--blanc);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--ombre-moyenne);
}

.current-month-badge .month {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.current-month-badge .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.season-text h2 {
    margin-bottom: var(--espacement-sm);
}

.season-text > p {
    color: var(--texte-secondaire);
    font-size: 1.1rem;
    margin-bottom: var(--espacement-md);
}

.season-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.season-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--blanc);
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-legere);
}

.season-product-emoji {
    font-size: 2rem;
}

.season-product-name {
    font-weight: 600;
}

.season-product-info {
    font-size: 0.8rem;
    color: var(--texte-secondaire);
}

@media (max-width: 992px) {
    .season-content {
        grid-template-columns: 1fr;
    }

    .season-visual {
        order: -1;
    }
}

/* --------------------------------------------------------------------------
   Section Producteurs
   -------------------------------------------------------------------------- */
.producers-map {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--espacement-lg);
    align-items: start;
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-moyenne);
    background: var(--beige);
    min-height: 400px;
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vert-tres-clair) 0%, var(--beige) 100%);
    font-size: 1.2rem;
    color: var(--texte-secondaire);
}

.producers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.producer-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--blanc);
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-legere);
    transition: var(--transition-rapide);
}

.producer-card:hover {
    box-shadow: var(--ombre-moyenne);
    transform: translateX(5px);
}

.producer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.producer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.producer-specialty {
    font-size: 0.85rem;
    color: var(--vert-principal);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.producer-location {
    font-size: 0.8rem;
    color: var(--texte-secondaire);
}

.producer-location i {
    margin-right: 0.25rem;
}

@media (max-width: 992px) {
    .producers-map {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Section Avis Clients
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--espacement-md);
}

.testimonial-card {
    background: var(--blanc);
    padding: var(--espacement-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--vert-tres-clair);
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--vert-principal);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-stars {
    color: var(--jaune-citron);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--texte-secondaire);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--vert-principal);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Section CTA / Newsletter
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--vert-principal) 0%, var(--vert-fonce) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--blanc);
    margin-bottom: var(--espacement-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--espacement-md);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--texte-principal);
    color: var(--blanc);
    padding-top: var(--espacement-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--espacement-lg);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: var(--espacement-sm);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--espacement-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    transition: var(--transition-rapide);
}

.footer-social a:hover {
    background: var(--vert-principal);
}

.footer h4 {
    color: var(--blanc);
    font-size: 1.1rem;
    margin-bottom: var(--espacement-sm);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--blanc);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--vert-clair);
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: var(--espacement-lg);
    padding: var(--espacement-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--blanc);
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Page Produits
   -------------------------------------------------------------------------- */
.page-header {
    background: linear-gradient(135deg, var(--vert-principal) 0%, var(--vert-fonce) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--blanc);
}

.page-header h1 {
    color: var(--blanc);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--blanc);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* Filtres produits */
.filters-section {
    padding: var(--espacement-md) 0;
    background: var(--blanc);
    border-bottom: 1px solid var(--beige);
    position: sticky;
    top: 100px;
    z-index: 100;
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--texte-principal);
    background: var(--beige);
    transition: var(--transition-rapide);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--vert-principal);
    color: var(--blanc);
}

.filter-options {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    padding: 0.625rem 1rem;
    border: 1px solid var(--beige);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--texte-principal);
    background: var(--blanc);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   Fiche Produit Détaillée
   -------------------------------------------------------------------------- */
.product-detail {
    padding: var(--espacement-xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacement-xl);
}

.product-gallery {
    position: sticky;
    top: 150px;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: zoom-in;
}

.product-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-rapide);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    opacity: 1;
    outline: 3px solid var(--vert-principal);
}

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

.product-details h1 {
    margin-bottom: 0.5rem;
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--espacement-sm);
    flex-wrap: wrap;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating .stars {
    color: var(--jaune-citron);
}

.product-rating span {
    color: var(--texte-secondaire);
    font-size: 0.9rem;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vert-principal);
    margin-bottom: var(--espacement-sm);
}

.product-price-large span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--texte-secondaire);
}

.product-description {
    color: var(--texte-secondaire);
    font-size: 1.05rem;
    margin-bottom: var(--espacement-md);
    line-height: 1.8;
}

/* Informations produit */
.product-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: var(--espacement-md);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--vert-tres-clair);
    border-radius: var(--radius-md);
}

.info-card-icon {
    width: 45px;
    height: 45px;
    background: var(--vert-principal);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-card-text {
    font-size: 0.85rem;
    color: var(--texte-secondaire);
}

.info-card-text strong {
    display: block;
    color: var(--texte-principal);
    font-size: 0.95rem;
}

/* Quantité et ajout panier */
.product-purchase {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: var(--espacement-md);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--beige);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--texte-principal);
    transition: var(--transition-rapide);
}

.quantity-btn:hover {
    background: var(--vert-tres-clair);
    color: var(--vert-principal);
}

.quantity-input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--beige);
    border-right: 1px solid var(--beige);
    font-size: 1rem;
    font-weight: 600;
}

.quantity-input:focus {
    outline: none;
}

/* Conservation */
.conservation-tips {
    background: var(--creme);
    padding: var(--espacement-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--espacement-md);
}

.conservation-tips h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conservation-tips h4 i {
    color: var(--vert-principal);
}

.conservation-tips ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.conservation-tips li {
    font-size: 0.9rem;
    color: var(--texte-secondaire);
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .product-main-image img {
        height: 350px;
    }

    .product-info-cards {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Page Contact
   -------------------------------------------------------------------------- */
.contact-section {
    padding: var(--espacement-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--espacement-xl);
}

.contact-info {
    background: var(--vert-principal);
    color: var(--blanc);
    padding: var(--espacement-lg);
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--blanc);
    margin-bottom: var(--espacement-md);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--espacement-md);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    color: var(--blanc);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.contact-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--espacement-sm);
    border-radius: var(--radius-md);
    margin-top: var(--espacement-md);
}

.contact-hours h4 {
    color: var(--blanc);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.hours-list {
    font-size: 0.9rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
}

.hours-list .closed {
    color: rgba(255, 255, 255, 0.5);
}

/* Formulaire contact */
.contact-form-container {
    background: var(--blanc);
    padding: var(--espacement-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
}

.contact-form-container h3 {
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: var(--texte-secondaire);
    margin-bottom: var(--espacement-md);
}

.contact-form {
    display: grid;
    gap: var(--espacement-sm);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--espacement-sm);
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--beige);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-rapide);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vert-principal);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Panier
   -------------------------------------------------------------------------- */
.cart-section {
    padding: var(--espacement-xl) 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--espacement-lg);
    align-items: start;
}

.cart-items {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
    overflow: hidden;
}

.cart-header {
    padding: var(--espacement-sm) var(--espacement-md);
    background: var(--beige);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: var(--espacement-sm);
    align-items: center;
    padding: var(--espacement-sm) var(--espacement-md);
    border-bottom: 1px solid var(--beige);
}

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

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

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

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--texte-secondaire);
    margin: 0;
}

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

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-rapide);
}

.cart-item-quantity button:hover {
    background: var(--vert-tres-clair);
    border-color: var(--vert-principal);
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-remove {
    color: var(--texte-secondaire);
    padding: 0.5rem;
    transition: var(--transition-rapide);
}

.cart-item-remove:hover {
    color: var(--rouge-tomate);
}

/* Résumé panier */
.cart-summary {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
    padding: var(--espacement-md);
    position: sticky;
    top: 150px;
}

.cart-summary h3 {
    margin-bottom: var(--espacement-sm);
    padding-bottom: var(--espacement-sm);
    border-bottom: 1px solid var(--beige);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vert-principal);
    margin-top: var(--espacement-sm);
    padding-top: var(--espacement-sm);
    border-top: 2px solid var(--beige);
}

.delivery-options {
    margin: var(--espacement-sm) 0;
}

.delivery-options h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 2px solid var(--beige);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition-rapide);
}

.delivery-option:hover,
.delivery-option.selected {
    border-color: var(--vert-principal);
    background: var(--vert-tres-clair);
}

.delivery-option input {
    display: none;
}

.delivery-option-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-option.selected .delivery-option-check {
    border-color: var(--vert-principal);
    background: var(--vert-principal);
    color: var(--blanc);
}

.delivery-option-info {
    flex: 1;
}

.delivery-option-info strong {
    display: block;
    font-size: 0.9rem;
}

.delivery-option-info span {
    font-size: 0.8rem;
    color: var(--texte-secondaire);
}

.delivery-option-price {
    font-weight: 600;
    color: var(--vert-principal);
}

@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
    }

    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2;
    }

    .cart-summary {
        position: relative;
        top: 0;
    }
}

/* --------------------------------------------------------------------------
   Suggestions produits
   -------------------------------------------------------------------------- */
.suggestions-section {
    background: var(--creme);
    padding: var(--espacement-lg) 0;
}

.suggestions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--espacement-md);
}

.suggestions-header h3 {
    margin: 0;
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Responsive Utilities
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .nav-actions {
        display: none !important;
    }
}

/* ==========================================================================
   STYLES MOBILE COMPLETS
   ========================================================================== */

/* --------------------------------------------------------------------------
   Mobile - Max 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Variables ajustées pour mobile */
    :root {
        --espacement-md: 1.25rem;
        --espacement-lg: 2rem;
        --espacement-xl: 3rem;
    }

    /* Typographie mobile */
    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.25rem !important; }
    h4 { font-size: 1.1rem !important; }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Section */
    .section {
        padding: 2.5rem 0;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Top Bar - Masquée sur mobile */
    .top-bar {
        display: none;
    }

    /* Header Mobile */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .nav-main {
        padding: 0.75rem 0;
    }

    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .nav-content-row {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 50px;
    }

    /* Menu Toggle visible */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--vert-principal);
        transition: var(--transition-rapide);
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--blanc);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--beige);
    }

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

    /* Overlay menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    /* Actions Nav */
    .nav-actions {
        gap: 0.5rem;
    }

    .nav-action-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-main img {
        height: 250px;
        border-radius: var(--radius-md);
    }

    .hero-badge {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
        background: var(--blanc);
        padding: 1rem;
        border-radius: var(--radius-md);
        box-shadow: var(--ombre-legere);
    }

    .floating-element {
        display: none;
    }

    /* Catégories Mobile */
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .category-card {
        aspect-ratio: 1;
    }

    .category-overlay {
        padding: 1rem;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .category-overlay h3 {
        font-size: 1rem;
    }

    .category-overlay p {
        font-size: 0.8rem;
        display: none;
    }

    /* Produits de la semaine Mobile */
    .weekly-products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .weekly-product-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .weekly-product-image {
        width: 120px;
        min-width: 120px;
        aspect-ratio: 1;
    }

    .weekly-product-info {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .weekly-product-info h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .weekly-pitch {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Grille produits Mobile */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .product-card {
        border-radius: var(--radius-md);
    }

    .product-image {
        aspect-ratio: 1;
    }

    .product-labels {
        top: 0.5rem;
        left: 0.5rem;
    }

    .product-label {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    .product-actions {
        display: none;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-origin {
        font-size: 0.7rem;
    }

    .product-info h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .product-producer {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-price span {
        font-size: 0.7rem;
    }

    .btn-add-cart {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    /* Valeurs Mobile */
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem 1rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-card h4 {
        font-size: 0.95rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    /* Saison Mobile */
    .season-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .season-visual {
        order: -1;
    }

    .season-image img {
        height: 250px;
    }

    .current-month-badge {
        top: -10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }

    .current-month-badge .month {
        font-size: 1.25rem;
    }

    .season-products {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .season-product {
        padding: 0.75rem;
    }

    .season-product-emoji {
        font-size: 1.5rem;
    }

    .season-product-name {
        font-size: 0.9rem;
    }

    .season-product-info {
        font-size: 0.75rem;
    }

    /* Producteurs Mobile */
    .producers-map {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container iframe,
    .map-placeholder {
        height: 250px;
    }

    .producer-card {
        padding: 0.875rem;
    }

    .producer-avatar {
        width: 50px;
        height: 50px;
    }

    /* Avis Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        right: 1rem;
    }

    /* CTA / Newsletter Mobile */
    .cta-content h2 {
        font-size: 1.5rem !important;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand img {
        margin: 0 auto 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 1.75rem !important;
    }

    .page-header p {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    /* Filtres Mobile */
    .filters-section {
        position: relative;
        top: 0;
        padding: 1rem 0;
    }

    .filters-container {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .filter-options {
        width: 100%;
        justify-content: space-between;
    }

    .filter-select {
        flex: 1;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-map {
        height: 250px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-form-section,
    .contact-info-section .info-box {
        padding: 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Panier Mobile */
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-item {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-info {
        flex: 1;
        min-width: 150px;
    }

    .cart-item-info h4 {
        font-size: 0.95rem;
    }

    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        width: auto;
    }

    .cart-item-remove {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }

    .cart-summary {
        position: relative;
        top: 0;
    }

    /* Suggestions Mobile */
    .suggestions-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Boutons Mobile */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------------------------------
   Mobile Small - Max 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    /* Catégories très petit écran */
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        aspect-ratio: 16/9;
    }

    .category-overlay p {
        display: block;
    }

    /* Produits très petit écran */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        display: flex;
        opacity: 1;
        transform: none;
    }

    /* Valeurs très petit écran */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Saison très petit écran */
    .season-products {
        grid-template-columns: 1fr;
    }

    /* Weekly products très petit écran */
    .weekly-product-card {
        flex-direction: column;
    }

    .weekly-product-image {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .weekly-product-info {
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Touch Device Optimizations
   -------------------------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
    /* Désactiver les hovers sur écrans tactiles */
    .product-card:hover {
        transform: none;
    }

    .category-card:hover img {
        transform: none;
    }

    .weekly-product-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    /* Agrandir les zones cliquables */
    .nav-link {
        padding: 1rem;
    }

    .btn {
        min-height: 48px;
    }

    .product-action-btn,
    .btn-add-cart {
        min-width: 48px;
        min-height: 48px;
    }
}

/* --------------------------------------------------------------------------
   Landscape Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-visual {
        order: 0;
    }

    .hero-image-main img {
        height: 200px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-feature {
        width: auto;
        flex: 1;
        min-width: 140px;
    }
}

/* --------------------------------------------------------------------------
   Safe Area (iPhone X et plus)
   -------------------------------------------------------------------------- */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(0px, env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .nav-menu {
        padding-top: max(5rem, calc(5rem + env(safe-area-inset-top)));
    }
}
