/* ==========================================================================
   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: clamp(2.2rem, 4vw + 1rem, 5rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw + 0.5rem, 3.5rem);
}

h3 {
    font-size: clamp(1.3rem, 2vw + 0.3rem, 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: 16px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 50px;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--noir);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.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: 70px;
}

.section-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--rose-fonce);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    color: var(--noir);
    margin-bottom: 18px;
    font-style: italic;
    font-weight: 400;
}

.section-description {
    font-size: 16px;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- 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: #555;
    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: #777;
}

/* --- 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%;
    height: auto;
    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: #555;
    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: #555;
}

/* --- ABOUT SECTION --- */
.about {
    padding: 120px 0 140px;
    background: #1a1a1a;
    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: #555;
    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(-4px);
    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.04);
}

.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: #777;
    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) {
    .shop-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .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) {
    p {
        font-size: 15px;
    }
}


/* ==========================================================================
   NAVBAR (Anciennement navbar.css)
   ========================================================================== */

/* ========================================
   NAVBAR - STYLES
======================================== */

/* --- HEADER / NAVBAR --- */
header {
    position: fixed !important;
    width: 100%;
    top: 0 !important;
    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: 13px;
    font-weight: 500;
    color: #3A3A3A;
    margin-left: 5px;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@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;
    }

    /* Éviter que les 5 icônes ne débordent de l'écran mobile */
    .nav-icon {
        gap: 8px;
        /* Marge réduite entre icônes */
    }

    .icon-link {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    #menu-icon {
        font-size: 26px;
        /* Ajustement du hamburger pour petits écrans */
        margin-left: 5px;
    }
}

/* iPhone SE et très petits écrans (375px et moins) */
@media (max-width: 375px) {
    .header-container {
        height: 60px;
        padding: 0 10px;
    }

    .logo img {
        max-width: 36px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-icon {
        gap: 4px;
    }

    .icon-link {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

    /* Masquer l'icône suivi commande sur très petit écran */
    .icon-link[aria-label="Suivre ma commande"] {
        display: none;
    }

    #menu-icon {
        font-size: 24px;
        margin-left: 2px;
    }

    .cart-badge {
        top: -3px;
        right: -3px;
        font-size: 10px;
        min-width: 16px;
        height: 16px;
        line-height: 10px;
        padding: 3px 4px;
    }

    /* Menu mobile adapté */
    .navmenu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}


/* ==========================================================================
   HERO SECTION (Anciennement hero.css)
   ========================================================================== */

/* ========================================
   HERO SECTION - STYLES
======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #F6F2EE 0%, #EDE5E0 55%, #D7C8B8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Tache lumineuse en arrière-plan */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 55%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(211, 175, 192, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.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: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #a87c90;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw + 1rem, 5.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.08;
    margin-bottom: 30px;
    color: #000000;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: #D3AFC0;
    font-style: normal;
    font-weight: 700;
    display: block;
}

.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 */
    /* 1/1 : la photo du hero est carrée (1200x1200) */
    aspect-ratio: 1 / 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    /* Ombre plus douce et plus profonde */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    display: block;
    max-width: 100%;
}

/* --- RESPONSIVE hero --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.4rem, 4vw + 1rem, 3.8rem);
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw + 0.5rem, 3rem);
    }

    .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: #555;
    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: #555;
    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: #777;
}

.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;
    }
}

/* Bandeau annonce retiré — styles nettoyés */

/* ==========================================================================
   BOUTON RETOUR EN HAUT
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--noir);
    color: var(--blanc);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--rose);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 175, 192, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* ==========================================================================
   BADGES DE CONFIANCE (Panier)
   ========================================================================== */
.cart-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.cart-trust-badge i {
    font-size: 18px;
    color: var(--rose);
}

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


/* ==========================================================================
   FOOTER (Anciennement footer.css)
   ========================================================================== */
/* ========================================
   FOOTER - STYLES
======================================== */

footer {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 60px 20px 20px;
    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;
    }
}


/* ========================================
   RECHERCHE NAVBAR — OVERLAY + SUGGESTIONS
======================================== */

/* Overlay fond sombre */
#search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 8, 0.92);
    z-index: 10000;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 80px;
    animation: searchFadeIn 0.2s ease;
    backdrop-filter: blur(4px);
}

@keyframes searchFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Boîte centrale de recherche */
#search-overlay>div {
    width: 90%;
    max-width: 680px;
    margin: 0 auto;
}

/* Titre */
#search-overlay h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Formulaire */
#search-form {
    display: flex;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(211, 175, 192, 0.25);
}

#search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    color: #222;
    padding: 10px 0;
}

#search-input::placeholder {
    color: #bbb;
}

#search-form button[type="submit"] {
    background: linear-gradient(135deg, #D3AFC0, #c49aad);
    border: none;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

#search-form button[type="submit"]:hover {
    transform: scale(1.05);
}

/* Bouton fermeture ✕ */
#close-search {
    position: fixed;
    top: 22px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    line-height: 1;
}

#close-search:hover {
    background: rgba(211, 175, 192, 0.3);
}

/* Conteneur suggestions */
#nav-search-suggestions {
    display: none;
    margin-top: 12px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: suggSlideIn 0.2s ease;
    max-height: 420px;
    overflow-y: auto;
}

@keyframes suggSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* État chargement */
.nav-sugg-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    color: #aaa;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

/* Liste de résultats */
.nav-sugg-list {
    padding: 8px 0;
}

/* Item produit */
.nav-sugg-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    border-bottom: 1px solid #faf5f8;
}

.nav-sugg-item:last-of-type {
    border-bottom: none;
}

.nav-sugg-item:hover,
.nav-sugg-item.highlighted {
    background: #fdf6fa;
}

/* Miniature produit */
.nav-sugg-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background: #F6F2EE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-sugg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-sugg-img i {
    font-size: 22px;
    color: #D3AFC0;
}

/* Infos produit */
.nav-sugg-info {
    flex: 1;
    min-width: 0;
}

.nav-sugg-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-sugg-name mark {
    background: none;
    color: #D3AFC0;
    font-weight: 700;
}

.nav-sugg-cat {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #aaa;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Prix */
.nav-sugg-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #D3AFC0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Lien "Voir tous les résultats" */
.nav-sugg-all {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    text-decoration: none;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    border-top: 1px solid #f0eaf3;
    background: #fdf9fb;
    transition: background 0.15s ease;
}

.nav-sugg-all:hover,
.nav-sugg-all.highlighted {
    background: #f7eef4;
    color: #D3AFC0;
}

.nav-sugg-all strong {
    color: #D3AFC0;
}

.nav-sugg-all i {
    font-size: 16px;
    color: #D3AFC0;
}

/* État vide */
.nav-sugg-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 24px;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
}

.nav-sugg-empty i {
    font-size: 36px;
    color: #D3AFC0;
    opacity: 0.5;
}

.nav-sugg-shop-link {
    margin-top: 6px;
    color: #D3AFC0;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}

.nav-sugg-shop-link:hover {
    text-decoration: underline;
}

/* Responsive mobile */
@media (max-width: 600px) {
    #search-overlay {
        padding-top: 60px;
    }

    #search-overlay h3 {
        font-size: 1.2rem;
    }

    #search-form {
        padding: 4px 4px 4px 16px;
    }

    #search-input {
        font-size: 15px;
    }

    .nav-sugg-img {
        width: 42px;
        height: 42px;
    }
}