/* ==========================================================================
   DÉBO&FIL - STYLES UNIFIÉS (Performance Optimisée)
   Tous les styles dans un seul fichier pour réduire les requêtes HTTP
   ========================================================================== */
/* ========================================
   DÉBO&FIL - STYLES DE BASE
   Palette: Rose #D3AFC0, Vert #A8B7A0, Beige #F6F2EE
======================================== */

/* --- VARIABLES CSS --- */
:root {
    /* Couleurs */
    --rose: #D3AFC0;
    --rose-fonce: #a87c90; /* Version foncée pour textes accessibles */
    --vert: #A8B7A0;
    --beige: #F6F2EE;
    --gris: #3A3A3A;
    --taupe: #D7C8B8;
    --noir: #000000;
    --blanc: #ffffff;
    
    /* Typographie */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gris);
    background-color: var(--blanc);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- ACCESSIBILITY --- */
/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--noir);
    color: var(--blanc);
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 99999;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--rose);
    outline-offset: 2px;
}

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible styles for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 2px;
}

/* Remove default focus outline but keep for keyboard */
:focus:not(:focus-visible) {
    outline: none;
}

/* --- CONTAINER & SECTIONS --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 100px 0;
}

/* --- TYPOGRAPHIE --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--noir);
    line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
    font-size: 16px;
    color: var(--gris);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-primary {
    background-color: var(--noir);
    color: var(--blanc);
}

.btn-primary:hover {
    background-color: var(--rose);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 175, 192, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--noir);
    border: 2px solid var(--noir);
}

.btn-secondary:hover {
    background-color: var(--noir);
    color: var(--blanc);
}

/* --- LOADING & UTILITIES --- */
.loading {
    text-align: center;
    padding: 50px;
    font-style: italic;
    color: var(--gris);
}

/* --- SECTIONS COMMUNES --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose-fonce); /* Rose foncé pour meilleur contraste */
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--noir);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--gris);
    max-width: 600px;
    margin: 0 auto;
}

/* --- REVIEWS SECTION --- */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #F6F2EE 0%, #ffffff 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D3AFC0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.reviewer-info h4 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 13px;
    color: #999;
}

/* --- SHOP SECTION --- */
.shop {
    padding: 100px 0;
    background-color: #ffffff;
}

.shop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.shop-image {
    position: relative;
}

.shop-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.shop-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 25px;
}

.shop-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.shop-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    font-size: 24px;
    color: #D3AFC0;
}

.feature-text h4 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
}

/* --- ABOUT SECTION --- */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #A8B7A0 0%, #D3AFC0 100%);
    color: #ffffff;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-container p {
    font-size: 18px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

/* --- INSTAGRAM SECTION --- */
.instagram-section {
    padding: 80px 20px;
    background: #F6F2EE;
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.instagram-header {
    margin-bottom: 50px;
}

.instagram-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.instagram-title i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #000;
    margin: 0;
}

.instagram-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(211, 175, 192, 0.25);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff 0%, #f9f6f4 100%);
    color: #999;
    transition: all 0.3s ease;
}

.instagram-placeholder i {
    font-size: 2.5rem;
    color: #D3AFC0;
    transition: transform 0.3s ease;
}

.instagram-placeholder span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-item:hover .instagram-placeholder {
    background: linear-gradient(135deg, #D3AFC0 0%, #c49aad 100%);
    color: white;
}

.instagram-item:hover .instagram-placeholder i {
    color: white;
    transform: scale(1.2);
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.instagram-follow-btn i {
    font-size: 20px;
}

/* Instagram Responsive */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .instagram-title h2 {
        font-size: 1.8rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .instagram-placeholder i {
        font-size: 2rem;
    }
    
    .instagram-placeholder span {
        font-size: 11px;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
    
    .shop-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .btn {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .shop-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


/* ==========================================================================
   NAVBAR (Anciennement navbar.css)
   ========================================================================== */

/* ========================================
   NAVBAR - STYLES
======================================== */

/* --- HEADER / NAVBAR --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10002;
}

.logo img {
    max-width: 60px;
    height: auto;
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
}

.logo-accent {
    color: #D3AFC0;
    font-style: italic;
}

/* Navigation Menu */
.navmenu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-link {
    position: relative;
    color: #3A3A3A;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #D3AFC0;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #333333; /* Noir pour meilleur contraste */
    font-weight: 600; /* Gras pour renforcer la visibilité */
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    background-color: var(--rose); /* Soulignement rose pour l'indication visuelle */
}

/* Navigation Icons */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #3A3A3A;
    font-size: 22px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.icon-link:hover {
    color: #D3AFC0;
    background-color: rgba(211, 175, 192, 0.1);
    transform: translateY(-2px);
}

/* User Name */
.user-name {
    display: none;
    font-size: 14px;
    font-weight: 500;
    color: #3A3A3A;
    margin-left: 8px;
}

@media (min-width: 769px) {
    .user-name {
        display: inline-block;
    }
}

/* Cart Badge */
.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #D3AFC0;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 12px;
    min-width: 20px;
    height: 20px;
    line-height: 14px;
    text-align: center;
    display: none;
    animation: badge-pop 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

@keyframes badge-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Menu Mobile Icon */
#menu-icon {
    display: none;
    font-size: 30px;
    color: #3A3A3A;
    cursor: pointer;
    transition: all 0.3s ease;
}

#menu-icon:hover {
    color: #D3AFC0;
}

#menu-icon.bx-x {
    color: #D3AFC0;
    transform: rotate(90deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 3%;
        grid-template-columns: 200px 1fr 200px;
    }

    .navmenu {
        gap: 0;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .header-container {
        height: 70px;
        display: flex;
        justify-content: space-between;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo img {
        max-width: 50px;
    }
    
    .navmenu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        overflow-y: auto;
        gap: 0;
    }
    
    .navmenu.open {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 20px;
        border-bottom: 1px solid #F6F2EE;
        font-size: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(211, 175, 192, 0.1);
        padding-left: 30px;
    }

    .nav-icon {
        gap: 15px;
    }

    .icon-link {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .logo img {
        max-width: 45px;
    }
}


/* ==========================================================================
   HERO SECTION (Anciennement hero.css)
   ========================================================================== */

/* ========================================
   HERO SECTION - STYLES
======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F6F2EE 0%, #D7C8B8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(211, 175, 192, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D3AFC0;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000000;
}

.hero-title span {
    color: #D3AFC0;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #3A3A3A;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
    /* Réserver l'espace pour éviter les décalages de mise en page */
    aspect-ratio: 6 / 7;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    /* Optimisations pour le rendu */
    display: block;
    max-width: 100%;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}


/* ==========================================================================
   BOXICONS OVERRIDE (Anciennement boxicons-override.css)
   ========================================================================== */

/* ========================================
   BOXICONS FONT-DISPLAY OVERRIDE
   Optimisation: Ajout de font-display: swap + Classes CSS
======================================== */

@font-face {
    font-family: 'boxicons';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('https://unpkg.com/boxicons@latest/fonts/boxicons.eot');
    src: url('https://unpkg.com/boxicons@latest/fonts/boxicons.eot#iefix') format('embedded-opentype'),
         url('https://unpkg.com/boxicons@latest/fonts/boxicons.woff2') format('woff2'),
         url('https://unpkg.com/boxicons@latest/fonts/boxicons.woff') format('woff'),
         url('https://unpkg.com/boxicons@latest/fonts/boxicons.ttf') format('truetype'),
         url('https://unpkg.com/boxicons@latest/fonts/boxicons.svg#boxicons') format('svg');
}

.bx {
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ==========================================================================
   COOKIE MODAL RGPD (Bloquante)
   ========================================================================== */

#cookie-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#cookie-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-box {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-top: 5px solid #D3AFC0;
}

.cookie-box h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem; 
    margin-bottom: 20px; 
}

.cookie-box p { 
    font-size: 0.95rem; 
    color: #666; 
    margin-bottom: 30px; 
    line-height: 1.6; 
}

.cookie-buttons { 
    display: flex; 
    gap: 15px; 
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept {
    background: #000; 
    color: white; 
    border: none; 
    padding: 12px 30px;
    text-transform: uppercase; 
    font-weight: bold; 
    cursor: pointer; 
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-accept:hover { 
    background: #D3AFC0; 
}

.btn-refuse {
    background: transparent; 
    border: 1px solid #ccc; 
    color: #666; 
    padding: 12px 20px;
    text-transform: uppercase; 
    font-size: 0.8rem; 
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-refuse:hover { 
    border-color: #000; 
    color: #000; 
}

@media (max-width: 480px) {
    .cookie-box {
        padding: 30px 20px;
    }
    
    .cookie-box h3 {
        font-size: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept, .btn-refuse {
        width: 100%;
    }
}
/* ========================================
   FOOTER - STYLES
======================================== */

footer {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 80px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Logo Section */
.footer-logo-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 70px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #D7C8B8;
    font-size: 15px;
    font-style: italic;
    margin-top: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bbb;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #D3AFC0;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.15); /* Fond plus visible */
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px; /* Icônes plus grandes */
    transition: all 0.3s ease;
}

.social-icons a i {
    color: #ffffff;
    font-size: 22px;
}

.social-icons a:hover {
    background-color: #D3AFC0;
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: #ffffff;
}

/* Newsletter */
.newsletter-text {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #D3AFC0;
    background-color: rgba(255,255,255,0.1);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #D3AFC0;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.newsletter-form button:hover {
    background-color: #A8B7A0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #ccc; /* Gris plus clair pour meilleur contraste sur fond noir */
    font-size: 13px;
}

.footer-bottom a {
    color: #ccc; /* Gris plus clair pour meilleur contraste sur fond noir */
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #D3AFC0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-logo img {
        max-width: 60px;
    }

    .footer-logo-text {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 15px 15px;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }
}
