* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Lien d'évitement : hors écran, il réapparaît dès qu'il reçoit le focus clavier. */
.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 9999;
    padding: 10px 18px;
    border-radius: 999px;
    background: #1a1a1a;
    color: #F5F0E6;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

:root {
    --black-mat: #1a1a1a;
    --black-light: #2d2d2d;
    --cream: #F5F0E6;
    --cream-light: #FAF8F3;
    --brown: #7A5C3D;
    --brown-dark: #5A3F28;
    --gold: #D4A373;
    --gold-light: #E5C19F;
    --olive: #8A9A5B;
    --olive-dark: #6B7A48;
    --anthracite: #2E2E2E;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black-mat);
    color: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* Enlever la barre sous les titres en mobile */
@media (max-width: 768px) {
    h2::after {
        display: none;
    }
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--cream);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    color: var(--cream-light);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black-mat);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    text-align: center;
    padding: 0 1rem;
}

.preloader-bar {
    width: min(200px, 80%);
    height: 2px;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px var(--shadow);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 26, 0.98);
}

.nav-container {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s;
}

nav.scrolled .nav-container {
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.logo:hover {
    color: var(--gold-light);
}

/* Retirer toute ligne sous le logo */
.logo::after {
    display: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cream-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu a:hover {
    color: var(--gold);
}

/* Menu burger amélioré */
.menu-toggle {
    display: none;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--gold);
    cursor: pointer;
    padding: 0;
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1002;
    border-radius: 8px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: var(--gold);
}

.burger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 6px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle:hover .burger-line {
    background: var(--black-mat);
}

.menu-toggle.active {
    background: var(--gold);
}

.menu-toggle.active .burger-line {
    background: var(--black-mat);
}

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

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

.menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* Hero Section Moderne */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black-mat) 0%, var(--black-light) 100%);
    margin-top: 0;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 163, 115, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 163, 115, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 163, 115, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    padding: 0 2rem;
    max-width: 900px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 163, 115, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 {
    color: var(--cream-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--cream-light);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    letter-spacing: 1px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
}

.hero-feature i {
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black-mat);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--cream-light);
    border: 2px solid var(--gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black-mat);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

/* Container pour tout le contenu */
.container {
    padding: 0 3rem;
}

/* Sections pleine largeur */
section {
    padding: 5rem 3rem;
    width: 100%;
    position: relative;
}

#fromagerie {
    background: var(--black-mat);
}

#produits {
    background: var(--black-mat);
}

#produits > p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--cream-light);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    opacity: 0;
    transform: translateX(-50px);
}

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

.stat-card {
    padding: 2rem;
    background: var(--black-light);
    border-radius: 20px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    box-shadow: 0 10px 30px var(--shadow);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.2);
    border-color: var(--gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cream);
}

/* Filter System avec Dropdowns Personnalisés */
.filter-container {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--black-light) 0%, rgba(45, 45, 45, 0.5) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.filter-subtitle {
    color: var(--cream-light);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    text-align: center;
}

.filter-dropdowns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Dropdown personnalisé */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-header {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: var(--black-mat);
    color: var(--cream-light);
    border: 2px solid rgba(212, 163, 115, 0.3);
    border-radius: 12px;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}

.dropdown-header:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.dropdown-header.active {
    border-color: var(--gold);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-arrow {
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s;
    color: var(--gold);
    pointer-events: none;
}

.dropdown-header.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--black-mat);
    border: 2px solid var(--gold);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 1rem 1.5rem;
    color: var(--cream-light);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(212, 163, 115, 0.1);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

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

.dropdown-item:hover {
    background: rgba(212, 163, 115, 0.1);
    color: var(--gold);
    padding-left: 2rem;
}

.dropdown-item.selected {
    background: rgba(212, 163, 115, 0.2);
    color: var(--gold);
    font-weight: 600;
}

/* Custom scrollbar pour les dropdowns */
.dropdown-list::-webkit-scrollbar {
    width: 8px;
}

.dropdown-list::-webkit-scrollbar-track {
    background: var(--black-light);
    border-radius: 4px;
}

.dropdown-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.dropdown-list::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.clear-filters {
    display: block;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    cursor: pointer;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clear-filters:hover {
    background: var(--gold);
    color: var(--black-mat);
    transform: scale(1.05);
}

/* Products Grid avec Images */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 163, 115, 0.2);
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: none;
}

.product-card.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 163, 115, 0.3);
    border-color: var(--gold);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.product-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-tag {
    background: rgba(26, 26, 26, 0.9);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--cream-light);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-price {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--gold-light);
}

/* Load More/Less Buttons */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.load-more-btn, .load-less-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: none;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.load-more-btn:hover, .load-less-btn:hover {
    background: var(--gold);
    color: var(--black-mat);
    transform: scale(1.05);
}

/* Anti-Gaspi Section */
.anti-gaspi-section {
    padding: 5rem 3rem;
    margin: 0;
    position: relative;
    background: var(--black-light);
    width: 100%;
}

.anti-gaspi-container {
    text-align: center;
}

.anti-gaspi-header {
    margin-bottom: 3rem;
}

.anti-gaspi-header h2 {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.anti-gaspi-header h2::after {
    display: none;
}

.anti-gaspi-badge {
    display: inline-block;
    background: var(--olive);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.anti-gaspi-subtitle {
    color: var(--cream-light);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.anti-gaspi-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.anti-gaspi-card {
    background: var(--black-mat);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.anti-gaspi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.anti-gaspi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.3);
}

.anti-gaspi-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 1rem;
}

.anti-gaspi-card h3 {
    color: var(--cream);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
}

.anti-gaspi-card p {
    color: var(--cream-light);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: 1.5rem;
}

.anti-gaspi-price {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.anti-gaspi-old-price {
    text-decoration: line-through;
    color: var(--cream);
    opacity: 0.6;
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.anti-gaspi-save {
    display: inline-block;
    background: rgba(138, 154, 91, 0.2);
    color: var(--olive);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 600;
    margin-top: 0.5rem;
}

.anti-gaspi-cta {
    text-align: center;
}

.btn-anti-gaspi {
    background: var(--gold);
    color: var(--black-mat);
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-anti-gaspi:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4);
}

/* Reviews Carousel - Infini et pleine largeur */
.reviews-section {
    padding: 5rem 0;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-container {
    width: 100%;
}

.reviews-container h2 {
    padding: 0 2rem;
    text-align: center;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.reviews-track {
    display: flex;
    animation: scroll-infinite 30s linear infinite;
    width: fit-content;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 min(400px, 90vw);
    padding: 2.5rem;
    background: var(--black-mat);
    border-radius: 20px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    margin: 0 1rem;
    position: relative;
    box-shadow: 0 10px 40px var(--shadow);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 163, 115, 0.3);
    border-color: var(--gold);
}

.review-quote {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--cream-light);
    line-height: 1.8;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 163, 115, 0.1);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-mat);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-author-name {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.review-author-role {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.7;
}

/* Enlever les contrôles du carousel */
.carousel-controls {
    display: none;
}

.carousel-indicators {
    display: none;
}

/* Contact Section */
#contact {
    background: var(--black-mat);
    padding: 5rem 3rem;
    margin-top: 0;
    width: 100%;
}

#contact h2 {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#contact h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--black-light) 0%, rgba(45, 45, 45, 0.7) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    min-height: 200px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 163, 115, 0.2);
    border-color: var(--gold);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black-mat);
}

.contact-info {
    flex: 1;
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--cream-light);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.8;
}

.contact-card strong {
    color: var(--gold-light);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
}

/* Map Section */
.map-section {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 163, 115, 0.2);
}

#map {
    height: 400px;
    width: 100%;
    filter: grayscale(100%) invert(100%) contrast(120%);
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--black-mat);
    color: var(--cream-light);
    padding: 4rem 3rem 2rem;
    position: relative;
    border-top: 1px solid rgba(212, 163, 115, 0.2);
    width: 100%;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.footer-section p,
.footer-section a {
    color: var(--cream-light);
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.4s;
    border: 1px solid var(--gold);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-5px) rotate(360deg);
    color: var(--black-mat);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 163, 115, 0.1);
    color: var(--cream);
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ========================================
   RESPONSIVE DESIGN - TABLETTE ET MOBILE
======================================== */

/* Tablette (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Navigation - Header centré en tablette */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-container {
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    nav.scrolled .nav-container {
        padding: 0.8rem 2rem;
        height: 60px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
    }

    .burger-line {
        width: 22px;
        height: 2px;
        margin: 5px auto;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        max-height: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0 2rem;
        gap: 1.5rem;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px var(--shadow);
        z-index: 999;
        overflow: hidden;
    }

    .nav-menu.active {
        max-height: 450px;
        padding: 2.5rem 2rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(212, 163, 115, 0.2);
    }

    /* Hero */
    .hero {
        padding: 100px 2rem 60px;
    }

    .hero-features {
        gap: 1.5rem;
    }

    /* Sections */
    section {
        padding: 4rem 2rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Reviews - Maintenir le style par défaut */
    .reviews-section h2 {
        text-align: center;
        display: inline-block;
        position: relative;
    }

    .reviews-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--gold);
    }

    .review-card {
        flex: 0 0 min(400px, 45vw);
        padding: 2.5rem;
        background: var(--black-mat);
        border-radius: 20px;
        border: 1px solid rgba(212, 163, 115, 0.2);
        margin: 0 1rem;
        position: relative;
        box-shadow: 0 10px 40px var(--shadow);
        min-height: 320px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

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

    .contact-card {
        padding: 2rem;
    }

    /* Anti-Gaspi */
    .anti-gaspi-content {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    /* Navigation Mobile - Fixée et simplifiée */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-container {
        padding: 0.8rem 1rem;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    nav.scrolled .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
        flex: 1;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
        align-items: stretch;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px var(--shadow);
        z-index: 999;
        overflow: hidden;
        border-top: none;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-menu a {
        font-size: 0.95rem;
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(212, 163, 115, 0.1);
        display: block;
        transition: all 0.3s;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(212, 163, 115, 0.1);
        color: var(--gold);
    }

    /* Hero Mobile - Plus compact */
    .hero {
        min-height: 80vh;
        padding: 80px 1rem 40px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .hero-feature {
        font-size: 0.85rem;
    }

    .hero-feature i {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Sections Mobile - Espacement réduit pour Notre Histoire */
    section {
        padding: 3rem 1rem;
    }

    #fromagerie {
        padding: 2rem 1rem;
    }

    #fromagerie h2 {
        margin-bottom: 1rem;
        text-align: center;
        display: block;
    }

    .about-content {
        margin-top: 1.5rem;
    }

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

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    /* Typography Mobile */
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Stats Mobile */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Load More/Less Buttons Mobile */
    .load-more-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }

    .load-more-btn, .load-less-btn {
        width: 80%;
        max-width: 250px;
    }

    /* Filter Mobile - Textes centrés */
    .filter-container {
        padding: 1.5rem 1rem;
    }

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

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

    .filter-dropdowns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dropdown-header {
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }

    /* Products Mobile */
    #produits {
        padding: 3rem 1rem;
    }

    #produits h2 {
        text-align: center;
        display: block;
        margin-bottom: 1rem;
    }

    #produits > p {
        text-align: center;
        margin-bottom: 2.5rem;
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

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

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.5rem;
    }

    /* Anti-Gaspi Mobile */
    .anti-gaspi-section {
        padding: 3rem 1rem;
    }

    .anti-gaspi-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .anti-gaspi-card {
        padding: 2rem 1.5rem;
    }

    /* Reviews Mobile - CAROUSEL INFINI */
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-carousel {
        padding: 1rem 0;
        width: 100%;
    }

    .review-card {
        flex: 0 0 min(350px, 85vw);
        padding: 2rem;
        min-height: 300px;
        margin: 0 0.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    /* Contact Mobile - Titre centré */
    #contact {
        padding: 3rem 1rem;
    }

    #contact h2 {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #contact h2::after {
        display: none;
    }

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

    .contact-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

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

    #map {
        height: 300px;
    }

    /* Footer Mobile */
    footer {
        padding: 3rem 1rem 1.5rem;
    }

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

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

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

/* Très petit mobile (max 400px) */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .product-info {
        padding: 1rem;
    }
}

/* Amélioration tactile pour mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .dropdown-header,
    .dropdown-item,
    .carousel-btn,
    .clear-filters,
    .load-more-btn,
    .load-less-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a {
        padding: 1.2rem 0;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }
}

/* Optimisation pour écrans Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-pattern {
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(212, 163, 115, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(212, 163, 115, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(212, 163, 115, 0.1) 0%, transparent 50%);
    }
}

/* Mode paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 1rem 30px;
    }

    .hero-features {
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 1rem;
    }
}
/* =========================================================
   COUCHE DE POLISH — ComfyClick (additive, ne modifie rien au-dessus)
   ========================================================= */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.01em; }
::selection { background: #D4A373; color: #fff; }
html { scroll-behavior: smooth; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #D4A373;
  outline-offset: 3px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
