/* ============================================================
   Déclic-e média — Design System 2025
   Flat · Sobre · Professionnel
   ============================================================ */

/* --- Tokens de design --- */
:root {
    /* Couleurs principales */
    --bleu:          #1B4A8A;   /* Bleu nuit professionnel */
    --bleu-hover:    #153C73;
    --bleu-medium:   #2A6AAD;
    --bleu-soft:     #EAF1F9;   /* Fond bleu très doux */
    --bleu-border:   #C8DCEF;

    --orange:        #D4692A;   /* Terracotta chaud */
    --orange-hover:  #B85922;
    --orange-soft:   #FDF0E8;   /* Fond orange très doux */

    /* Neutres */
    --noir:          #111827;
    --gris-texte:    #374151;
    --gris-medium:   #6B7280;
    --gris-clair:    #F3F6FA;
    --bordure:       #E4EAF2;
    --blanc:         #FFFFFF;

    /* Typographie */
    --font:          'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --fw-normal:     400;
    --fw-medium:     500;
    --fw-semi:       600;
    --fw-bold:       700;
    --fw-black:      800;

    /* Espaces */
    --max:           1160px;
    --radius:        10px;
    --radius-lg:     16px;
    --radius-pill:   100px;

    /* Ombres flat */
    --shadow-sm:     0 1px 4px rgba(27,74,138,.07);
    --shadow:        0 4px 20px rgba(27,74,138,.10);
    --shadow-lg:     0 12px 40px rgba(27,74,138,.14);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--gris-texte);
    background: var(--blanc);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* --- Skip link --- */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--bleu); color: var(--blanc);
    padding: .5rem 1rem; border-radius: 0 0 6px 6px;
    font-weight: var(--fw-semi); z-index: 9999;
    transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container    { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 88px 0; }
.section--bg  { background: var(--gris-clair); }

/* Headings de section */
.sec-label {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .75rem; font-weight: var(--fw-bold);
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--bleu-medium);
    background: var(--bleu-soft);
    border: 1px solid var(--bleu-border);
    padding: .28rem .9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}
.sec-label-img {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .75rem; font-weight: var(--fw-bold);
    letter-spacing: .1em; text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid var(--bleu-border);
    padding: .28rem .9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}
.sec-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: var(--fw-black);
    color: var(--noir);
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
}
.sec-title em {
    font-style: normal;
    color: var(--bleu);
}
.sec-subtitle {
    font-size: 1.05rem;
    color: var(--gris-medium);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.sec-header            { margin-bottom: 3.5rem; }
.sec-header--center    { text-align: center; }
.sec-header--center .sec-subtitle { margin: 0 auto; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: var(--fw-bold);
    letter-spacing: .01em;
    transition: background .2s, color .2s, box-shadow .2s, transform .15s;
    white-space: nowrap;
    line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--bleu); outline-offset: 3px; }

.btn-primary {
    background: var(--bleu);
    color: var(--blanc);
}
.btn-primary:hover {
    background: var(--bleu-hover);
    box-shadow: 0 6px 18px rgba(27,74,138,.25);
    transform: translateY(-1px);
}

.btn-orange {
    background: var(--orange);
    color: var(--blanc);
}
.btn-orange:hover {
    background: var(--orange-hover);
    box-shadow: 0 6px 18px rgba(212,105,42,.25);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--bleu);
    border: 1.5px solid var(--bleu-border);
}
.btn-outline:hover {
    background: var(--bleu-soft);
    border-color: var(--bleu);
}

.btn-ghost-white {
    background: rgba(255,255,255,.12);
    color: var(--blanc);
    border: 1.5px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.6);
}

.btn-lg { padding: .9rem 2.25rem; font-size: .95rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .82rem; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 68px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bordure);
    transition: box-shadow .3s;
}
#header.scrolled { box-shadow: var(--shadow); }

.nav {
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex; align-items: center; gap: .65rem;
    flex-shrink: 0;
}
.nav-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Liens desktop */
.nav-links {
    display: flex; align-items: center; gap: .1rem;
}
.nav-links a {
    padding: .45rem .85rem;
    font-size: .88rem; font-weight: var(--fw-semi);
    color: var(--gris-texte);
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--bleu); background: var(--bleu-soft); }
.nav-links a.active { color: var(--bleu); }

/* CTA nav */
.nav-end { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-phone {
    display: flex; align-items: center; gap: .4rem;
    font-size: .88rem; font-weight: var(--fw-semi);
    color: var(--gris-texte);
}
.nav-phone svg { color: var(--bleu); flex-shrink: 0; }
.nav-phone a { color: var(--bleu); font-weight: var(--fw-bold); }
.nav-phone a:hover { color: var(--bleu-hover); }

/* Hamburger */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px; padding: 4px;
    border-radius: 6px; transition: background .2s;
}
.nav-toggle:hover { background: var(--bleu-soft); }
.nav-toggle span {
    display: block; height: 2px; background: var(--noir);
    border-radius: 2px; transition: .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
    /*position: fixed; */
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--blanc); z-index: 999;
    padding: 1.5rem;
    display: flex; flex-direction: column; gap: .5rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    border-top: 1px solid var(--bordure);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
    padding: .9rem 1rem;
    font-size: 1rem; font-weight: var(--fw-semi);
    color: var(--noir);
    border-radius: var(--radius);
    border-bottom: 1px solid var(--bordure);
    display: flex; align-items: center; gap: .75rem;
}
.nav-mobile a:hover { color: var(--bleu); background: var(--bleu-soft); }
.nav-mobile .btn { margin-top: 1rem; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: flex-end;
    padding-top: 68px;
    overflow: hidden;
    background: var(--noir);
}

.hero-bg-img {
    position: absolute; inset: 0;
    background: url('../images/magasinrue.png') center center / cover no-repeat;
    opacity: .42;
    will-change: transform;
}

/* Dégradé sombre pour lisibilité */
.hero-bg-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(17,24,39,.95) 0%,
        rgba(27,74,138,.55) 50%,
        rgba(17,24,39,.3) 100%
    );
}

.hero-inner {
    position: relative; z-index: 2;
    width: 100%;
    padding: 6rem 0 5rem;
}

.hero-content { max-width: 680px; }

.hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .78rem; font-weight: var(--fw-bold);
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.2);
    padding: .3rem .9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}
.hero-tag::before {
    content: ''; width: 6px; height: 6px;
    background: #6ee7b7; border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(110,231,183,.2);
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: var(--fw-black);
    color: var(--blanc);
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.hero-content h1 strong {
    color: transparent;
    background: linear-gradient(95deg, #F4A45A, #E07340);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: var(--fw-black);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.72);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

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

/* Barre stats hero */
.hero-stats {
    display: flex; gap: 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2.5rem;
}
.hero-stat {
    flex: 1;
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255,255,255,.1);
    margin-right: 2.5rem;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: var(--fw-black);
    color: var(--blanc);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .2rem;
}
.hero-stat-num span { color: #F4A45A; }
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ============================================================
   CAROUSEL — Crossfade fluide
   ============================================================ */
.carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ── Track : toutes les slides empilées ── */
.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.4;    /* ratio boutique — remplacé en inline pour les petits carousels */
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gris-clair);
}

/* Toutes les slides en superposition */
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .65s cubic-bezier(.4,0,.2,1),
                visibility 0s linear .65s,
                transform .65s cubic-bezier(.4,0,.2,1);
    transform: scale(1.03);
}

/* Slide active — plein fondu + légère dézoom */
.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity .65s cubic-bezier(.4,0,.2,1),
                visibility 0s linear 0s,
                transform .65s cubic-bezier(.4,0,.2,1);
}

/* Slide qui sort — glisse vers la gauche */
.carousel-slide.leaving {
    opacity: 0;
    transform: scale(.97);
    visibility: hidden;
    transition: opacity .65s cubic-bezier(.4,0,.2,1),
                visibility 0s linear .65s,
                transform .65s cubic-bezier(.4,0,.2,1);
}

.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    user-select: none;
    -webkit-user-drag: none;
}

/* ── Flèches ── */
.carousel-btn {
    position: absolute; top: 50%; z-index: 4;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bleu);
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
    transition: background .2s, box-shadow .2s, transform .2s, opacity .2s;
    opacity: .7;
}
.carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover {
    background: var(--blanc);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    transform: translateY(-50%) scale(1.1);
}
.carousel-btn--prev { left:  .7rem; }
.carousel-btn--next { right: .7rem; }

/* ── Barre de progression ── */
.carousel-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; z-index: 4;
    background: rgba(255,255,255,.2);
    overflow: hidden;
}
.carousel-progress-bar {
    height: 100%;
    background: var(--orange);
    width: 0%;
    transition: width linear;
    border-radius: 0 2px 2px 0;
}

/* ── Dots ── */
.carousel-dots {
    position: absolute; bottom: .75rem; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: .5rem; z-index: 4;
}
.carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    transition: background .3s, transform .3s, width .3s;
    cursor: pointer;
}
.carousel-dot.active {
    background: var(--blanc);
    transform: scale(1.4);
    width: 18px;
    border-radius: 4px;
}

/* ── Carousel mini (produits) ── */
.prod-carousel .carousel-track  { aspect-ratio: 4/3; border-radius: var(--radius) var(--radius) 0 0; }
.prod-carousel .carousel-btn    { width: 28px; height: 28px; opacity: 0; }
.prod-carousel:hover .carousel-btn { opacity: 1; }
.prod-carousel .carousel-btn svg { width: 14px; height: 14px; }
.prod-carousel .carousel-dots   { bottom: .5rem; }
.prod-carousel .carousel-dot    { width: 5px; height: 5px; }
.prod-carousel .carousel-dot.active { width: 14px; }

/* Placeholder sans photo */
.carousel-placeholder {
    width: 100%; aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    background: var(--gris-clair);
    font-size: 3rem; color: var(--bleu-border);
    border-radius: var(--radius) var(--radius) 0 0;
}

/* ============================================================
   SECTION À PROPOS
   ============================================================ */
#apropos .apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.apropos-img-wrap {
    position: relative;
}
.apropos-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.apropos-img-badge {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    background: var(--bleu);
    color: var(--blanc);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 99999;
}
.apropos-img-badge .badge-num {
    font-size: 2rem; font-weight: var(--fw-black);
    letter-spacing: -.04em; line-height: 1;
    color: #F4A45A;
}
.apropos-img-badge .badge-text {
    font-size: .78rem; font-weight: var(--fw-semi);
    color: rgba(255,255,255,.8);
    margin-top: .2rem;
}

/* Pictos modes d'intervention */
.apropos-modes {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 2.5rem;
}
.mode-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    transition: border-color .2s, box-shadow .2s;
}
.mode-item:hover { border-color: var(--bleu-border); box-shadow: var(--shadow-sm); }
.mode-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--bleu-soft);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.mode-item h4 { font-size: .9rem; font-weight: var(--fw-bold); color: var(--noir); margin-bottom: .15rem; }
.mode-item p  { font-size: .82rem; color: var(--gris-medium); }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--gris-clair); }

/* Tabs */
.tabs-nav {
    display: flex; gap: .75rem; flex-wrap: wrap;
    margin-bottom: 3rem;
}
.tab-btn {
    display: flex; align-items: center; gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: .87rem; font-weight: var(--fw-semi);
    color: var(--gris-medium);
    background: var(--blanc);
    border: 1.5px solid var(--bordure);
    transition: .2s;
}
.tab-btn:hover { color: var(--bleu); border-color: var(--bleu-border); }
.tab-btn.active {
    color: var(--blanc);
    background: var(--bleu);
    border-color: var(--bleu);
    box-shadow: 0 4px 14px rgba(27,74,138,.22);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }

/* Carte service */
.svc-card {
    background: var(--blanc);
    border: 1px solid var(--bordure);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.svc-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--bleu-border);
}
.svc-icon {
    width: 48px; height: 48px;
    background: var(--bleu-soft);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: background .2s;
}
.svc-card:hover .svc-icon { background: var(--bleu); }
.svc-card h3 {
    font-size: .95rem; font-weight: var(--fw-bold);
    color: var(--noir); margin-bottom: .4rem;
}
.svc-card p { font-size: .85rem; color: var(--gris-medium); line-height: 1.65; }

/* ============================================================
   PHOTO INTÉRIEURE (break section)
   ============================================================ */
#galerie {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 420px;
}
.galerie-item {
    position: relative; overflow: hidden;
}
.galerie-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.galerie-item:hover img { transform: scale(1.04); }
.galerie-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,24,39,.6) 0%, transparent 60%);
    display: flex; align-items: flex-end;
    padding: 1.75rem;
}
.galerie-label {
    font-size: .85rem; font-weight: var(--fw-semi);
    color: rgba(255,255,255,.9);
    letter-spacing: .04em;
}

/* ============================================================
   OFFRES DU MOMENT
   ============================================================ */
#offres { background: var(--gris-clair); }

.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offre-card {
    background: var(--blanc);
    border: 1px solid var(--bordure);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex; flex-direction: column; gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.offre-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--orange);
    border-color: #F0C9A8;
}
.offre-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--orange); color: var(--blanc);
    font-size: .7rem; font-weight: var(--fw-bold);
    padding: .25rem .75rem;
    border-radius: var(--radius-pill);
    letter-spacing: .05em; text-transform: uppercase;
}
.offre-icon { font-size: 2rem; }
.offre-img  { border-radius: var(--radius); overflow: hidden; }
.offre-img img { width: 100%; height: 160px; object-fit: cover; }
.offre-body h3 { font-size: 1rem; font-weight: var(--fw-bold); color: var(--noir); }
.offre-body p  { font-size: .85rem; color: var(--gris-medium); line-height: 1.6; }
.offre-prix { display: flex; align-items: baseline; gap: .5rem; margin-top: .5rem; }
.prix-avant {
    font-size: .9rem; color: var(--gris-medium);
    text-decoration: line-through;
}
.prix-apres {
    font-size: 1.4rem; font-weight: var(--fw-black);
    color: var(--orange); letter-spacing: -.02em;
}
.offre-expiry {
    font-size: .75rem; color: var(--gris-medium);
    font-style: italic;
}
.offre-cta { margin-top: auto; align-self: flex-start; }

/* ============================================================
   PRODUITS EN VEDETTE
   ============================================================ */
#produits-vedette { background: var(--blanc); }

.produits-groupe-label {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.5rem;
    font-size: .9rem; color: var(--gris-medium); font-weight: var(--fw-semi);
}
.groupe-tag {
    display: inline-block;
    padding: .3rem .9rem;
    border-radius: var(--radius-pill);
    font-size: .75rem; font-weight: var(--fw-bold);
    text-transform: uppercase; letter-spacing: .08em;
}
.groupe-tag.neuf    { background: var(--bleu-soft); color: var(--bleu); border: 1px solid var(--bleu-border); }
.groupe-tag.occasion{ background: var(--orange-soft); color: var(--orange); border: 1px solid #F0C9A8; }

.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.produit-thumb {
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem .75rem;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--gris-clair);
}
.produit-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.produit-card:hover .produit-thumb img { transform: scale(1.05); }
.produit-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: var(--bleu-soft);
    color: var(--bleu);
}

.produit-card {
    background: var(--blanc);
    border: 1px solid var(--bordure);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex; flex-direction: column; gap: .75rem;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.produit-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--bleu-border);
}
.produit-cat {
    font-size: .7rem; font-weight: var(--fw-bold);
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--bleu-medium);
    background: var(--bleu-soft); border: 1px solid var(--bleu-border);
    padding: .2rem .7rem; border-radius: var(--radius-pill);
    display: inline-block; align-self: flex-start;
}
.produit-card h3 { font-size: .95rem; font-weight: var(--fw-bold); color: var(--noir); }
.produit-desc    { font-size: .82rem; color: var(--gris-medium); line-height: 1.55; }
.produit-specs {
    display: flex; flex-direction: column; gap: .3rem;
    border-top: 1px solid var(--bordure); padding-top: .75rem;
    margin-top: auto;
}
.produit-specs li {
    display: flex; gap: .5rem;
    font-size: .8rem; color: var(--gris-texte);
}
.produit-specs li span {
    font-weight: var(--fw-bold); color: var(--gris-medium);
    min-width: 60px;
}
.produit-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: .5rem; margin-top: .5rem;
}
.produit-prix {
    font-size: 1.3rem; font-weight: var(--fw-black);
    color: var(--bleu); letter-spacing: -.025em;
}
.produit-prix span { font-size: .9rem; font-weight: var(--fw-bold); }

.produits-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Fermetures exceptionnelles */
.fermeture-alerte {
    background: #FEF9EC;
    border: 1px solid #F5D67B;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .85rem; color: #92400E;
    margin-bottom: 1rem;
}
.fermetures-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.fermeture-item {
    font-size: .82rem; color: var(--gris-medium);
    padding: .4rem .5rem;
    background: var(--bleu-soft);
    border-radius: 6px;
}

/* ============================================================
   AVANTAGES
   ============================================================ */
#avantages {
    position: relative;
    background: url('../images/bg-ask-declic.jpg') center/cover no-repeat;
    isolation: isolate;
}
#avantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 45, 100, .80);
    z-index: -1;
}
#avantages .sec-title,
#avantages .sec-label { color: var(--blanc); }
#avantages .sec-label {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.85);
}
#avantages .sec-subtitle { color: rgba(255,255,255,.6); }

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.avantage-card {
    background: rgba(255,255,255,.25);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: background .25s, border-color .25s;
}
.avantage-card:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.2);
}
.avantage-num {
    font-size: .72rem; font-weight: var(--fw-black);
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: .75rem;
}
.avantage-card h3 { font-size: 1.05rem; font-weight: var(--fw-bold); color: var(--blanc); margin-bottom: .5rem; }
.avantage-card p  { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ============================================================
   HORAIRES & INFOS
   ============================================================ */
#infos .infos-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Tableau horaires */
.horaires-wrap h3 {
    font-size: 1.1rem; font-weight: var(--fw-bold);
    color: var(--noir); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: .5rem;
}
.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table tr {
    border-bottom: 1px solid var(--bordure);
    transition: background .15s;
}
.horaires-table tr:last-child { border-bottom: none; }
.horaires-table tr:hover { background: var(--bleu-soft); }
.horaires-table tr.today { background: var(--bleu-soft); }
.horaires-table tr.today .heure { color: var(--bleu); font-weight: var(--fw-bold); }
.horaires-table td {
    padding: .75rem .5rem;
    font-size: .9rem;
    vertical-align: middle;
}
.horaires-table .jour { font-weight: var(--fw-semi); color: var(--noir); width: 130px; }
.horaires-table .heure { color: var(--gris-medium); }
.horaires-table .ferme .heure { color: #F87171; }
.badge-today {
    display: inline-block;
    background: var(--bleu); color: var(--blanc);
    font-size: .65rem; font-weight: var(--fw-bold);
    padding: .1rem .5rem; border-radius: var(--radius-pill);
    margin-left: .5rem; vertical-align: middle;
}

/* Infos contact */
.infos-contact { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    transition: border-color .2s, box-shadow .2s;
}
.info-card:hover { border-color: var(--bleu-border); box-shadow: var(--shadow-sm); }
.info-card-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--bleu-soft); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.info-card-body h4 {
    font-size: .72rem; font-weight: var(--fw-bold);
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--gris-medium); margin-bottom: .2rem;
}
.info-card-body p,
.info-card-body a {
    font-size: .95rem; font-weight: var(--fw-semi); color: var(--noir);
}
.info-card-body a:hover { color: var(--bleu); }

/* Carte Google Maps */
.map-wrap {
    margin-top: 3.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bordure);
    box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; }

/* ============================================================
   CTA BANDE
   ============================================================ */
#cta {
    background: var(--orange-soft);
    border-top: 1px solid #F0D5C4;
    border-bottom: 1px solid #F0D5C4;
    padding: 3.5rem 0;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: var(--fw-black); color: var(--noir); margin-bottom: .35rem; }
.cta-text p  { font-size: .95rem; color: var(--gris-medium); }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   FORMULAIRE CONTACT
   ============================================================ */
#contact { background: var(--gris-clair); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact-aside .sec-title { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.contact-aside .sec-subtitle { font-size: .95rem; margin-bottom: 2rem; }

.contact-links { display: flex; flex-direction: column; gap: .75rem; }
.contact-link {
    display: flex; align-items: center; gap: .85rem;
    padding: 1rem 1.25rem;
    background: var(--blanc);
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    font-size: .9rem; font-weight: var(--fw-semi);
    color: var(--noir);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.contact-link:hover { border-color: var(--bleu-border); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.contact-link-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: var(--bleu-soft); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}

/* Formulaire */
.form-card {
    background: var(--blanc);
    border: 1px solid var(--bordure);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; }
.form-group label {
    font-size: .8rem; font-weight: var(--fw-bold);
    color: var(--noir); letter-spacing: .01em;
}
.form-group label .req { color: var(--orange); margin-left: .1rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    font-family: var(--font); font-size: .9rem;
    color: var(--noir);
    background: var(--blanc);
    border: 1.5px solid var(--bordure);
    border-radius: var(--radius);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #BBC4D2; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236B7280' d='M8 11L2 5h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--bleu);
    box-shadow: 0 0 0 3px rgba(27,74,138,.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #EF4444; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-honeypot { display: none !important; }

.form-actions { margin-top: .25rem; }
.form-actions .btn { width: 100%; justify-content: center; padding: .9rem; font-size: .95rem; }

.form-feedback {
    display: none;
    margin-top: 1rem;
    padding: .9rem 1.1rem;
    border-radius: var(--radius);
    font-size: .88rem; font-weight: var(--fw-semi);
}
.form-feedback.ok  { display: block; background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.form-feedback.err { display: block; background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--noir);
    padding: 4rem 0 2rem;
    color: rgba(255,255,255,.55);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 2rem;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 1.25rem; opacity: .9; }
.footer-brand p { font-size: .85rem; line-height: 1.75; max-width: 300px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;

    font-size: .95rem; transition: background .2s;
    overflow: hidden;
}
.footer-social a img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-social a:hover { background: var(--orange); }

.footer-col h4 {
    font-size: .75rem; font-weight: var(--fw-black);
    text-transform: uppercase; letter-spacing: .1em;
    color: rgba(255,255,255,.9); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .86rem; transition: color .2s; }
.footer-col a:hover { color: var(--blanc); }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .75rem;
    font-size: .78rem;
}
.footer-bottom a:hover { color: var(--blanc); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
    width: 44px; height: 44px;
    background: var(--bleu); color: var(--blanc);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: var(--fw-bold);
    box-shadow: var(--shadow-lg);
    opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .3s, background .2s;
    transform: translateY(12px);
}
#back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-top:hover { background: var(--bleu-hover); }

/* ============================================================
   ANIMATIONS (Intersection Observer)
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

.fade-up-d1 { transition-delay: .08s; }
.fade-up-d2 { transition-delay: .16s; }
.fade-up-d3 { transition-delay: .24s; }
.fade-up-d4 { transition-delay: .32s; }
.fade-up-d5 { transition-delay: .40s; }
.fade-up-d6 { transition-delay: .48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    #apropos .apropos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .apropos-img-badge    { bottom: -1rem; right: .5rem; z-index: 99999; }
    .avantages-grid       { grid-template-columns: 1fr 1fr; }
    #infos .infos-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top           { grid-template-columns: 1fr 1fr; }
    .footer-brand         { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .nav-links, .nav-end .btn, .nav-phone { display: none; }
    .nav-toggle { display: flex; }
    #galerie { grid-template-columns: 1fr; height: auto; }
    .galerie-item { height: 240px; }
    .avantages-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-right: 0; margin-right: 0; padding-bottom: 1.5rem; }
    .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .tabs-nav .tab-btn span.label { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .form-card { padding: 1.5rem; }
}
