/*
 * ============================================================
 *  MAISON BGS PRESTIGE � Feuille de styles principale
 *  Fichier : public/styles/app.css
 * ============================================================
 *
 *  TABLE DES MATI�RES
 *  ----------------------------------------------------------
 *  1.  Variables CSS (couleurs, ombres)              ~  1
 *  2.  Reset / Base (box-sizing, body, typo, liens)  ~ 15
 *  3.  Navbar & Header                               ~ 57
 *       � Logo .brand-logo / .brand-logo-main/sub
 *       � Liens de navigation
 *       � Ic�ne panier + badge
 *       � Menu hamburger mobile
 *  4.  Hero (page d'accueil)                         ~300
 *       � .hero, .hero-layout, .hero-visual
 *       � Animation Ken Burns (@keyframes kenburns)
 *       � .hero-overlay-content, .hero-scroll-hint
 *  5.  Sections g�n�riques (.section, .section.alt)  ~460
 *  6.  Grille produits (.product-grid)               ~470
 *       � .featured-line (nouveaut�s)
 *  7.  Carte produit (.pc)                           ~520
 *       � Image, crossfade, ratio 298/375
 *       � Dots, fl�ches carousel
 *       � Boutons CTA (panier, �il) au hover
 *       � Badge stock (.pc-stock--low / --out)
 *  8.  Banni�re catalogue (.catalog-hero)            ~1284
 *       � Animation Ken Burns via ::before
 *       � Overlay d�grad�
 *  9.  Filtre catalogue sticky (.filter-bar-sticky-wrap) ~1348
 *       � Barre filtre + tri
 *       � Panneau d�pliable (.filter-panel)
 *       � Chips (.filter-chip)
 * 10.  Boutons (.btn-solid, .btn-outline, .btn-link) ~1500
 * 11.  Formulaires (inputs, selects)                ~1550
 * 12.  Page produit (fiche d�tail)                  ~1600
 * 13.  Panier (.cart-*)                             ~1700
 * 14.  Checkout (.checkout-*)                       ~1800
 * 15.  Page d'accueil � sections sp�cifiques        ~1900
 *       � Univers (.univers-grid)
 *       � T�moignages (.testimonials-*)
 *       � Best-sale (.best-sale-grid, tabs)
 * 16.  Footer (.site-footer)                        ~2500
 *  17.  Navigation mobile bas (.mbn-*)              ~2700
 *  18.  Page � propos (.ab-*)                       ~2900
 *  19.  Page Commandes / Suivi                      ~3200
 *  20.  Administration (back-office styles)         ~3500
 *  21.  Pages l�gales (.legal-*)                    ~fin
 *  22.  Media queries globales (tablette =980px)    ~3900
 *  23.  Media queries mobiles (=760px)              ~4000
 * ============================================================
 */

:root {
    --bg: #ffffff;
    --bg-alt: #f7f6f4;
    --ink: #0d0d0d;
    --muted: #444444;
    --accent: #111111;
    --accent-dark: #000000;
    --notif: #d42b2b;
    --line: #e8e6e3;
    --success: #d7f4df;
    --warning: #fff3cd;
    --error: #f8d7da;
    --shadow: 0 16px 48px rgba(0, 0, 0, .07);
}

/* -- Barre de progression PJAX (#bgsp-progress) ----------------------
   Fil dor� suspendu en haut de page, style maison de luxe.
------------------------------------------------------------------------- */
#bgsp-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    height: 1.5px;
    width: 0%;
    background: linear-gradient(90deg,
        transparent 0%,
        #b89a6a 20%,
        #e2c98a 50%,
        #b89a6a 80%,
        transparent 100%);
    background-size: 300% 100%;
    border-radius: 0 2px 2px 0;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 6px rgba(184, 154, 106, 0.6);
}
#bgsp-progress.is-loading {
    opacity: 1;
    animation: bgsp-progress-gold 2s ease-in-out infinite;
}
#bgsp-progress.is-done {
    opacity: 0;
    transition: opacity 0.45s ease, width 0.2s ease;
}
@keyframes bgsp-progress-gold {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* -- Voile de transition (#bgsp-veil) ------------------------------------------ */
#bgsp-veil {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 9998;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
#bgsp-veil.is-visible {
    opacity: 0.55;
    pointer-events: none;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;        /* fallback tous navigateurs */
    overflow-x: clip;          /* iOS Safari 16+ */
    max-width: 100vw;
    overscroll-behavior-x: none; /* Safari 16+ : bloque le rubber-band horizontal */
}
body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;          /* bloque tout debordement horizontal */
    overscroll-behavior-x: none; /* Safari 16+ : rubber-band horizontal */
}
h1, h2, h3, h4 { font-family: 'Jost', sans-serif; margin-top: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
.container { width: min(1120px, 92%); margin: 0 auto; }

/* Scroll offset pour les ancres (compense le header fixe) */
#nouveautes {
    scroll-margin-top: 72px;
}

/* -- Animation d'entr?e sections au scroll -- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
.anim-ready {
    opacity: 0;
    transform: translateY(36px);
}
.anim-visible {
    animation: fadeSlideUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.section { padding: 3.5rem 0; }
.section.alt { background: var(--bg-alt); }
.kicker {
    margin: 0 0 .5rem;
    color: #999;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .68rem;
    font-weight: 500;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e6e3;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-shell {
    min-height: 76px;
    display: grid;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e8e6e3;
}
.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}
.brand-logo {
    width: 160px;
    height: auto;
    display: block;
}
.brand-logo-main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    fill: #0d0d0d;
    letter-spacing: -0.5px;
}
.brand-logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    fill: #0d0d0d;
    letter-spacing: 7px;
}
.brand-dark { color: #0d0d0d; }
.brand-accent { color: #0d0d0d; }
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-size: .72rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .12em;
    position: relative;
    padding-bottom: .2rem;
    transition: color .2s;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: #0d0d0d; }

.nav-links a.is-active {
    color: #0d0d0d;
}

.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: #0d0d0dfb;
}

.nav-links a.is-active:hover,
.nav-links a.is-active:focus-visible {
    color: #0d0d0d;
}

/* -- Menus d�roulants de navigation (dropdown) --------- */
.nav-item-label {
    display: inline-flex;
    align-items: center;
    gap: .18rem;
}
.nav-item--has-dropdown {
    position: relative;
}
/* Pont invisible (10 px) couvrant le gap de 8 px entre lien et panneau */
.nav-item--has-dropdown::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: -10px;
    height: 10px;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    min-width: 190px;
    background: #fff;
    border: 1px solid #ede9e5;
    border-radius: 3px;
    box-shadow: 0 12px 36px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.04);
    padding: .4rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    z-index: 200;
    overflow: hidden;
}
/* Petite fl�che d�corative (dans le gap de 8 px) */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #fff;
    border-top: 1px solid #ede9e5;
    border-left: 1px solid #ede9e5;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown,
.nav-item--has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: block;
    padding: .5rem 1.25rem .5rem 1rem;
    color: #8a8078;
    font-size: .67rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color .18s ease, background .18s ease,
                border-color .18s ease, letter-spacing .18s ease;
}
/* S�lecteur plus sp�cifique (.nav-dropdown + .nav-dropdown-item) pour
   �viter que .nav-links a:hover (0,2,1) �crase la couleur de texte. */
.nav-dropdown .nav-dropdown-item:hover,
.nav-dropdown .nav-dropdown-item:focus-visible {
    color: #1c1917;
    background: #f9f7f5;
    border-left-color: #1c1917;
    letter-spacing: .13em;
    outline: none;
}
.nav-dropdown-item--child {
    padding-left: 2rem;
    font-size: .63rem;
    color: #afa59b;
    font-weight: 400;
    border-left-color: transparent;
}
.nav-dropdown-item--child::before {
    content: '�';
    margin-right: .35rem;
    opacity: .45;
}
.nav-dropdown .nav-dropdown-item--child:hover,
.nav-dropdown .nav-dropdown-item--child:focus-visible {
    color: #4a4440;
    background: #f9f7f5;
    border-left-color: #c4b8ae;
}
.nav-dropdown-sep {
    height: 1px;
    background: #ede9e5;
    margin: .3rem .75rem;
}
/* R�initialise les h�ritages .nav-links a qui conflictent dans le dropdown */
.nav-dropdown a {
    padding-bottom: 0;
    position: static;
}
.nav-dropdown a.is-active::after { display: none; }
/* Bouton chevron � cach� sur desktop */
.nav-dropdown-toggle { display: none; }

.nav-icons {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.icon-link {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: #222;
    font-size: 1.08rem;
}
.icon-link:hover {
    color: #0d0d0d;
    background: #f0f0ee;
}
.icon-cart {
    background: #f0f0ee;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--notif);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    line-height: 1;
    padding: 0 .22rem;
    border: 2px solid #fff;
}

.mobile-toggle { display: none; }

.btn-solid, .btn-outline, .btn-link {
    border-radius: 0;
    padding: .75rem 1.8rem;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 500;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: inline-block;
    transition: background .2s, color .2s, border-color .2s;
}
.btn-solid { background: #0d0d0d; color: #fff; border-color: #0d0d0d; }
.btn-solid:hover { background: #333; border-color: #333; }
.btn-outline {
    border-color: #0d0d0d;
    background: #fff;
    color: #0d0d0d;
}
.btn-outline:hover { background: #0d0d0d; color: #fff; }
.btn-link { border: 0; background: transparent; color: var(--ink); }
.btn-link:hover { color: #555; }
.btn-full { width: 100%; text-align: center; }

/* -- Hero : plein ?cran au chargement, compact au scroll -- */
.hero {
    position: relative;
    background: #0d0d0d;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    transition: min-height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
}
.hero--compact {
    min-height: 82vh;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 3rem 2.5rem 4%;
    max-width: 520px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.hero-kicker {
    margin: 0 0 .55rem;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}

.hero-overlay-content h1 {
    margin: 0 0 .7rem;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.02;
    color: #fff;
    font-weight: 600;
    letter-spacing: .01em;
}

.hero-overlay-content p {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,.78);
    max-width: 340px;
}

.hero-cta-btn {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .85rem 2.4rem;
    font-weight: 500;
    border-radius: 0;
}

.compact-title h2 {
    margin-bottom: 0;
}

.univers-section {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.univers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.univers-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.15rem;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.univers-card:hover {
    border-color: #0d0d0d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.univers-card h3 {
    margin: 0 0 .35rem;
    font-size: 1.5rem;
}

.univers-card p {
    margin: 0;
    color: #3b3b3b;
    font-size: .98rem;
}

.product-stock,
.best-sale-stock {
    margin: .2rem 0 .55rem;
    font-size: .92rem;
    color: #444;
    font-weight: 700;
}

.about-process-section {
    padding-top: 2.2rem;
}

.about-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-card,
.process-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.2rem;
    background: #fff;
}

.about-card h3,
.process-card h3 {
    margin-top: 0;
    margin-bottom: .55rem;
}

.process-card ol {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: .45rem;
}

.simple-testimonials {
    grid-template-columns: repeat(3, 1fr);
}

.compact-cta {
    margin-top: 1.2rem;
}

.compact-contact {
    margin-top: 1.2rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.hero-layout {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: min-height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero--compact .hero-layout {
    min-height: 82vh;
}
/* D?grad? d?sactiv? sur desktop */
.hero-layout::after {
    display: none;
}

.hero-visual {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    filter: none;
    animation: kenburns 14s ease-in-out infinite;
    will-change: transform;
}

/* -- Indicateur scroll vers le bas -- */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.92);
    font-size: 1.5rem;
    pointer-events: none;
    animation: hero-bounce 1.7s ease-in-out infinite;
    transition: opacity 0.45s ease;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
    border: 2px solid rgba(255,255,255,.55);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    background: rgba(0,0,0,.12);
}
.hero--compact .hero-scroll-hint {
    opacity: 0;
    animation: none;
}
@keyframes hero-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    55%       { transform: translateX(-50%) translateY(9px); }
}

.category-pills-wrap {
    padding-top: 2rem;
    padding-bottom: .5rem;
}
.category-pills {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}
.category-pills a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .6rem .95rem;
    font-size: .88rem;
}
.category-pills a:hover { border-color: #c9b9a8; }
.category-pills a:hover { border-color: #111111; color: #111111; }

.section-title-row { display: flex; justify-content: space-between; align-items: end; margin-bottom: 1.5rem; }
.section-link {
    color: var(--ink);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid #0d0d0d;
    padding-bottom: 1px;
}
.section-link:hover { opacity: .6; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    will-change: opacity, transform;
}

/* -- Wrapper section grille -- */
.catalog-grid-section {
    position: relative;
    min-height: 200px;
}

/* -- Message aucun produit -- */
.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    color: #888;
    font-size: .95rem;
    letter-spacing: .04em;
}

/* ----------------------------------------------
   SPINNER PREMIUM � .catalog-spinner
   ---------------------------------------------- */
.catalog-spinner {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    animation: spinner-fadein .18s ease both;
}
.catalog-spinner--out {
    animation: spinner-fadeout .22s ease both;
}
@keyframes spinner-fadein  { from { opacity: 0; } to { opacity: 1; } }
@keyframes spinner-fadeout { from { opacity: 1; } to { opacity: 0; } }

.catalog-spinner__ring {
    display: inline-block;
    position: relative;
    width: 52px;
    height: 52px;
}
.catalog-spinner__ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 44px;
    height: 44px;
    margin: 4px;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spinner-ring 1s cubic-bezier(.55,.06,.68,.19) infinite;
}
.catalog-spinner__ring div:nth-child(1) {
    border-top-color: #0d0d0d;
    animation-delay: 0s;
}
.catalog-spinner__ring div:nth-child(2) {
    border-top-color: rgba(13,13,13,.4);
    animation-delay: -0.15s;
    width: 36px; height: 36px; margin: 8px;
}
.catalog-spinner__ring div:nth-child(3) {
    border-top-color: rgba(13,13,13,.15);
    animation-delay: -0.3s;
    width: 28px; height: 28px; margin: 12px;
}
.catalog-spinner__ring div:nth-child(4) {
    border-top-color: transparent;
    animation-delay: -0.45s;
}
@keyframes spinner-ring {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



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

.featured-line .product-card {
    flex: unset;
    min-width: unset;
}

.featured-pagination {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}

.page-link {
    border: 1px solid var(--line);
    background: #fff;
    color: #1f1f1f;
    border-radius: 999px;
    min-width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 .7rem;
    font-size: .95rem;
    font-weight: 600;
}

.page-link:hover {
    border-color: #111111;
    color: #111111;
}

.page-link.is-active {
    background: #111111;
    color: #fff;
    border-color: #111111;
}
.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(18, 13, 9, .06);
}

/* ----------------------------------------
   Carte produit � design �pur� (aliwax)
---------------------------------------- */
.pc {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    min-width: 0; /* emp�che le d�bordement dans une grille CSS */
}

/* -- Zone image -- */
.pc-img-wrap {
    position: relative;
    background: #f5f4f0;
    overflow: hidden;
}
/* Ratio portrait 298�375 � fallback padding-top (Safari < 15 + vieux Android) */
.pc-img-wrap::before {
    content: '';
    display: block;
    padding-top: calc(375 / 298 * 100%); /* � 125.84% */
}
/* Navigateurs modernes : aspect-ratio natif, on d�sactive le pseudo-�l�ment */
@supports (aspect-ratio: 1) {
    .pc-img-wrap::before { display: none; }
    .pc-img-wrap { aspect-ratio: 298 / 375; }
}

.pc-img-link {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
}

.pc-main-img,
.pc-hover-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .7s ease-out;
}
.pc-main-img  { opacity: 1; }
.pc-hover-img { opacity: 0; }
.pc:hover .pc-main-img  { opacity: 0; }
.pc:hover .pc-hover-img { opacity: 1; }

/* -- Badge stock (top-left) -- */
.pc-stock {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    background: rgba(255,255,255,.90);
    color: #1c1917;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    white-space: nowrap;
}
.pc-stock--low  { background: #fff0f0; color: var(--notif); }
.pc-stock--out  { background: #0d0d0d; color: #fff; }

/* -- Dots (barres horizontales) -- */
.pc-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 3;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.pc:hover .pc-dots { opacity: 1; }
/* Cacher dots si 1 seule image */
.pc-img-wrap[data-pc-count="1"] .pc-dots { display: none; }
.pc-dot {
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    width: 6px;
    transition: all .3s;
}
.pc-dot--active {
    background: #fff;
    width: 20px;
}

/* -- Favori (top-right, cach� par d�faut) -- */
.pc-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    border: none;
    cursor: pointer;
    color: #78716c;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s, color .2s, background .2s;
    padding: 0;
    backdrop-filter: blur(4px);
}
.pc:hover .pc-fav { opacity: 1; }
.pc-fav:hover { color: #1c1917; background: #fff; }

/* -- Fl�ches carousel -- */
.pc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s, transform .25s;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.pc:hover .pc-arrow { opacity: 1; }
.pc-arrow-prev { left: 10px;  background: #1c1917; color: #fff;    transform: translateY(-50%) translateX(-4px); }
.pc-arrow-next { right: 10px; background: #fff;    color: #1c1917; transform: translateY(-50%) translateX(4px);  }
.pc:hover .pc-arrow-prev { transform: translateY(-50%) translateX(0); }
.pc:hover .pc-arrow-next { transform: translateY(-50%) translateX(0); }
.pc-arrow:hover { box-shadow: 0 4px 16px rgba(0,0,0,.25); }
/* Cacher fl�ches si 1 seule image */
.pc-img-wrap[data-pc-count="1"] .pc-arrow { display: none; }

/* -- Boutons CTA cercles (panier + voir) -- */
.pc-cta-wrap {
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    display: flex;
    gap: 10px;
    z-index: 4;
    opacity: 0;
    transition: opacity .5s ease-out, transform .5s ease-out;
    white-space: nowrap;
}
.pc:hover .pc-cta-wrap {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.pc-cta-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    color: #1c1917;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 14px rgba(0,0,0,.14);
    transition: background .2s, color .2s, box-shadow .2s;
    text-decoration: none;
    padding: 0;
    flex-shrink: 0;
}
.pc-cta-btn:hover {
    background: #1c1917;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.22);
}

/* -- Infos -- */
.pc-info {
    display: block;
    padding: .9rem .25rem .4rem;
    text-decoration: none;
}
.pc-name {
    margin: 0 0 .25rem;
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .3px;
    line-height: 1.35;
    color: #1c1917;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc-price {
    margin: 0;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .2px;
    color: #78716c;
}

/* -- Mobile -- */
@media (max-width: 760px) {
    .pc-arrow {
        width: 28px;
        height: 28px;
    }
    .pc-dots { opacity: 1; }
    .pc-img-wrap[data-pc-count="1"] .pc-dots { display: none; }
    .pc-info { padding: .65rem .1rem .25rem; }
    .pc-stock { font-size: .55rem; padding: 2px 5px; }
}

/* ----------------------------------------
   Cartes squelettes � chargement catalogue AJAX
---------------------------------------- */
@keyframes pc-shimmer {
    from { background-position: 200% center; }
    to   { background-position: -200% center; }
}
.pc-skeleton {
    pointer-events: none;
    animation: none;
}
.pc-skeleton .pc-img-wrap {
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: pc-shimmer 1.5s ease infinite;
    aspect-ratio: 298 / 375; /* toujours actif ici car pas de contenu absolu */
}
/* Le ::before padding-top du squelette est d�j� masqu� par le bloc @supports
   (.pc-img-wrap::before { display: none }) � pas besoin de red�clarer */
.pc-skeleton .pc-info {
    padding: .65rem .25rem .4rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.pc-skeleton .pc-skel-line {
    height: .7rem;
    border-radius: 2px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: pc-shimmer 1.5s ease infinite;
}
.pc-skeleton .pc-skel-line:last-child { width: 55%; }

/* -- Apparition d�cal�e des cartes apr�s AJAX -- */
@keyframes pc-fadein-up {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pc--stagger {
    animation: pc-fadein-up .32s ease both;
}

/* Grille produits */

.minimalist-card {
    position: relative;
    border-color: #ececec;
    box-shadow: none;
    border-radius: 0;
    min-height: 100%;
    background: #fff;
}

.minimalist-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    border-color: #e7e7e7;
}

.product-image-wrap {
    position: relative;
    display: block;
}

.minimalist-image {
    min-height: 260px;
    display: grid;
    place-items: center;
    padding: 1.5rem 1.25rem 0;
    background: #fff;
}

.minimalist-image img {
    width: 100%;
    height: 210px;
    object-fit: contain;
}

.product-image-wrap img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.04); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .85);
    color: #fff;
    font-size: .74rem;
    padding: .3rem .55rem;
}

.product-badge-light {
    background: #88cf7d;
    color: #fff;
    border-radius: 0;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: .3rem .8rem;
}

.product-meta { padding: 1rem 1.15rem 1.35rem; display: grid; gap: .5rem; text-align: center; }
.minimalist-meta { gap: .42rem; }
.product-category { color: var(--muted); font-size: .88rem; }
.product-name { margin: 0; font-size: 1.15rem; line-height: 1.28; }
.product-name a { color: #2a2a2a; }
.product-name a:hover { color: inherit; }
.price { font-family: 'Jost', sans-serif; font-weight: 400; margin: 0; }
.price-accent { color: #111111; font-size: 1rem; font-family: 'Jost', sans-serif; font-weight: 400; }

.product-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    padding-top: .15rem;
}

.product-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
}

.product-dot.is-active {
    background: #111111;
}

.minimalist-cart-form {
    margin-top: .3rem;
}

.btn-mini {
    border-color: #e2e2e2;
    padding: .65rem .9rem;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: #fff;
    border-radius: 0;
}

.btn-mini:hover {
    background: #0d0d0d;
    border-color: #0d0d0d;
    color: #fff;
}

.best-sale-section {
    padding-top: 0;
}

.best-sale-sticky-header {
    position: sticky;
    top: 76px;
    z-index: 80;
    background: #fff;
    padding: 2.4rem 0 0;
    border-bottom: 1px solid #e8e6e3;
}

.best-sale-panels-wrap {
    padding-top: 1.8rem;
}

.best-sale-head {
    text-align: center;
    margin-bottom: 1.2rem;
}

.best-sale-head h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
}

.best-sale-underline {
    width: 40px;
    height: 1px;
    background: #0d0d0d;
    display: inline-block;
    margin-top: .55rem;
}

.best-sale-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 1.2rem auto 1.8rem;
    width: fit-content;
    max-width: 100%;
}

.best-sale-tabs button {
    font: inherit;
    cursor: pointer;
    border: 1px solid #e0ddd9;
    background: #fff;
    color: #888;
    padding: .5rem 1.8rem;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-left: -1px;
    white-space: nowrap;
    transition: background .15s, color .15s, border-color .15s;
}

.best-sale-tabs button:first-child {
    margin-left: 0;
}

.best-sale-tabs button.is-active,
.best-sale-tabs button:hover,
.best-sale-tabs button:focus-visible {
    background: #0d0d0d;
    border-color: #0d0d0d;
    color: #fff;
}

.best-sale-panel {
    display: none;
}

.best-sale-panel.is-visible {
    display: block;
}

.best-sale-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.best-sale-card {
    border: 1px solid #efefef;
    background: #fff;
    padding: .9rem .9rem 1rem;
    text-align: center;
}

.best-sale-image-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 230px;
    margin-bottom: .8rem;
}

.best-sale-image-wrap img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: opacity 0.35s ease;
}

/* Bouton panier best-sale */
.bs-cart-form {
    margin-top: .7rem;
}

/* Dots cliquables */
.product-dot,
.best-sale-dots span {
    cursor: pointer;
}

.best-sale-badge {
    position: absolute;
    top: 0;
    left: 0;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    padding: .25rem .58rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.best-sale-badge.is-new {
    background: #75c56d;
}

.best-sale-badge.is-sale {
    background: #111111;
}

.best-sale-card h3 {
    margin: 0 0 .4rem;
    font-size: 1.06rem;
    line-height: 1.28;
}

.best-sale-card h3 a {
    color: #202631;
}

.best-sale-card h3 a:hover {
    color: #111111;
}

.best-sale-price {
    margin: 0;
    color: #111111;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.best-sale-dots {
    margin-top: .6rem;
    display: flex;
    justify-content: center;
    gap: .35rem;
}

.best-sale-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1c1c1c;
    opacity: .3;
}

.best-sale-dots span.is-active {
    background: #111111;
    opacity: 1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}
.category-card {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 1.3rem;
    border-radius: 18px;
}

.category-showcase-wrap {
    background: #efefef;
    padding: 3rem 2rem;
    border-radius: 6px;
}

.category-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 330px 330px;
    gap: 1rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    display: block;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.showcase-item:hover img {
    transform: scale(1.06);
}

.showcase-item::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .2));
}

.showcase-item span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #1c2530;
    padding: .75rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.men-tile,
.homme-tile {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
}

.kid-tile,
.enfant-tile {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.accessories-tile,
.accessoires-tile {
    grid-column: 2 !important;
    grid-row: 2 !important;
}

.women-tile,
.femme-tile {
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
}

.lookbook-strip {
    background: #ffffff;
    padding-top: 2.4rem;
}
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.lookbook-card {
    min-height: 260px;
    border-radius: 18px;
    color: #fff;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}
.lookbook-card a {
    margin-top: .45rem;
    color: #fff;
    font-weight: 700;
}
.lookbook-card.one { background-image: linear-gradient(180deg, rgba(20, 14, 9, .04), rgba(20, 14, 9, .62)), url('https://images.unsplash.com/photo-1516257984-b1b4d707412e?auto=format&fit=crop&w=900&q=80'); }
.lookbook-card.two { background-image: linear-gradient(180deg, rgba(20, 14, 9, .04), rgba(20, 14, 9, .62)), url('https://images.unsplash.com/photo-1485230895905-ec40ba36b9bc?auto=format&fit=crop&w=900&q=80'); }
.lookbook-card.three { background-image: linear-gradient(180deg, rgba(20, 14, 9, .04), rgba(20, 14, 9, .62)), url('https://images.unsplash.com/photo-1503919545889-aef636e10ad4?auto=format&fit=crop&w=900&q=80'); }

.storytelling { background: linear-gradient(180deg, #f2e5d4, #ead8c5); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.story-panel {
    background: #fff;
    border: 1px solid #ebdfd4;
    border-radius: 16px;
    padding: 1.3rem;
}
.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .65rem;
}
.process-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.process-list span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f4f4f4;
    color: #000000;
    font-weight: 700;
    font-size: .82rem;
}

.testimonials-showcase {
    background: linear-gradient(180deg, #eef6f3 0%, #ecf4f1 100%);
    padding: 3rem 0;
}

.testimonials-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .8rem;
}

.testimonials-heading {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: .4rem;
}

.testimonials-heading h2 {
    margin: 0;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    -webkit-transform: translateZ(0); /* force couche GPU pour clip iOS Safari */
    transform: translateZ(0);
}

.testimonials-track {
    display: flex;
    gap: 1rem;
    transition: transform .3s ease;
}

.testimonial-card {
    flex: 0 0 calc((100% - 2rem) / 3);
    background: #f8f8f8;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    padding: 1.05rem;
    display: grid;
    gap: .8rem;
}

.quote-mark {
    color: #8b8f93;
    font-size: 3rem;
    line-height: .8;
    font-weight: 700;
}

.testimonial-card p {
    margin: 0;
    color: #2f3640;
    line-height: 1.45;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.testimonial-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #2a313a;
    font-size: 1.02rem;
}

.testimonial-author span {
    color: #77808b;
    font-size: .82rem;
}

.testimonial-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: #c6ccca;
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
    background: #111111;
}

.cta-box {
    background: #000000;
    color: #fff;
    border-radius: 22px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    box-shadow: var(--shadow);
}

/* -- Banni�re catalogue Homme / Femme -- */
@keyframes kenburns {
    0%   { transform: scale(1);     }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1);     }
}

.catalog-hero {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.catalog-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    animation: kenburns 14s ease-in-out infinite;
    will-change: transform;
}
.catalog-hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.10) 60%, transparent 100%);
}
.catalog-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    color: #fff;
}
.catalog-hero-inner h1 {
    margin: 0 0 .3rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
}
.catalog-hero-inner p {
    margin: 0;
    font-size: .95rem;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}
@media (max-width: 760px) {
    .catalog-hero { height: 220px; }
    .catalog-hero-inner { padding: 1.5rem 1.2rem; }
    .catalog-hero-inner h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ----------------------------------------
   Barre filtre catalogue
---------------------------------------- */
.catalog-form { margin-bottom: 2rem; }

.filter-bar-sticky-wrap {
    position: sticky;
    top: 76px;
    z-index: 90;
    background: #ffffff;
    border-bottom: 1px solid #e8e6e3;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
}

/* Bouton "= Filtre" */
.filter-bar-toggle {
    display: flex;
    align-items: center;
    gap: .45rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1c1917;
    padding: 0;
    position: relative;
}
.filter-bar-toggle:hover { color: #555; }
.filter-bar-dot {
    position: absolute;
    top: -2px;
    right: -6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--notif);
}

/* Section "Trier par" */
.filter-bar-sort {
    display: flex;
    align-items: center;
    gap: .55rem;
}
.filter-bar-label {
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9e9893;
    white-space: nowrap;
}
.filter-bar-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.filter-bar-select {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 400;
    color: #1c1917;
    cursor: pointer;
    padding-right: 1.1rem;
    outline: none;
}
.filter-bar-chevron {
    position: absolute;
    right: 0;
    pointer-events: none;
    color: #1c1917;
}

/* Panneau de filtres dépliable */
.filter-panel {
    overflow: hidden;
    /* État fermé par défaut */
    max-height: 0;
    opacity: 0;
    padding: 0;
    border-bottom: 1px solid transparent;
    pointer-events: none;
    /* Transitions ouverture / fermeture */
    transition: max-height .32s cubic-bezier(.4,0,.2,1),
                opacity .22s ease,
                padding .28s ease,
                border-color .18s ease;
}
.filter-panel.is-open {
    max-height: 800px; /* valeur > hauteur réelle pour la transition */
    opacity: 1;
    padding: 1.2rem 0 1rem;
    border-bottom-color: #e8e6e3;
    pointer-events: auto;
    overflow: visible; /* laisse les dropdowns position:absolute déborder */
}
.filter-panel-inner {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.filter-panel-label {
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9e9893;
    margin: 0 0 .6rem;
}
.filter-panel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: .3rem .85rem;
    border: 1px solid #e0ddd9;
    border-radius: 2px;
    font-size: .75rem;
    letter-spacing: .04em;
    color: #1c1917;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}
.filter-chip input[type="radio"] { display: none; }
.filter-chip:hover,
.filter-chip.is-active {
    background: #1c1917;
    border-color: #1c1917;
    color: #fff;
}
/* -- Chips avec sous-cat�gories : dropdown au survol (desktop) -- */
.filter-chip--has-sub {
    gap: .3rem;
    align-items: center;
}
.filter-chip-caret {
    flex-shrink: 0;
    transition: transform .2s;
    display: block;
}
/* --- Groupe : wrapper positionn� pour le dropdown absolu --- */
.filter-chip-group {
    position: relative;
    display: inline-block;
}
/* Barre chip + bouton toggle cot� � cot� */
.filter-chip-group-bar {
    display: inline-flex;
    align-items: stretch;
}
/* Chip sans rayon droit : se connecte visuellement au toggle */
.filter-chip-group-bar > .filter-chip {
    border-right: none;
    border-radius: 2px 0 0 2px;
}
/* Bouton toggle attach� � droite de la chip */
.filter-chip-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .3rem .48rem;
    background: #fff;
    border: 1px solid #e0ddd9;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    color: #6b6560;
    transition: background .15s, border-color .15s, color .15s;
    flex-shrink: 0;
}
/* Caret : transition rotation */
.filter-chip-caret { flex-shrink: 0; transition: transform .2s ease; }
/* �tat ouvert (JS) */
.filter-chip-group.is-open > .filter-chip-group-bar > .filter-chip-toggle {
    background: #1c1917; border-color: #1c1917; color: #fff;
}
.filter-chip-group.is-open > .filter-chip-group-bar .filter-chip-caret {
    transform: rotate(180deg);
}
/* --- Dropdown panel principal --- */
.filter-chip-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: max(175px, 100%);
    background: #fff;
    border: 1px solid #e0ddd9;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    padding: .3rem 0;
    display: none;
    z-index: 100;
}
.filter-chip-dropdown::before {
    content: '';
    position: absolute;
    top: -6px; left: 0; right: 0; height: 6px;
}
.filter-chip-group.is-open > .filter-chip-dropdown { display: block; }
/* Hover souris seulement (@media hover:hover) */
@media (hover: hover) {
    .filter-chip-group:hover > .filter-chip-dropdown { display: block; }
    .filter-chip-group:hover > .filter-chip-group-bar .filter-chip-caret { transform: rotate(180deg); }
    .filter-chip-group:hover > .filter-chip-group-bar > .filter-chip-toggle {
        background: #1c1917; border-color: #1c1917; color: #fff;
    }
}
/* --- Groupe imbriqu� (depth = 1 avec enfants) : flyout � droite --- */
.filter-chip-group--nested {
    position: relative;
    display: block;
    width: 100%;
}
.filter-chip-group--nested > .filter-chip-group-bar {
    display: flex;
    width: 100%;
}
.filter-chip-group--nested > .filter-chip-group-bar > .filter-chip-dropdown-item {
    flex: 1;
    border-radius: 0;
    transition: background .12s;
}
/* Bouton indicateur � (flyout) */
.filter-chip-toggle--sub {
    border-radius: 0;
    border: none;
    border-left: 1px solid #e0ddd9;
    background: transparent;
    padding: .38rem .45rem;
}
.filter-chip-group--nested.is-open > .filter-chip-group-bar > .filter-chip-toggle--sub {
    background: #f5f4f2;
}
/* Sous-dropdown flyout � droite */
.filter-chip-dropdown--sub {
    position: absolute;
    top: 0; left: calc(100% + 3px);
    min-width: 165px;
    background: #fff;
    border: 1px solid #e0ddd9;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    padding: .3rem 0;
    display: none;
    z-index: 101;
}
/* Pont transparent (gap 3 px � gauche) */
.filter-chip-dropdown--sub::before {
    content: '';
    position: absolute;
    top: 0; left: -5px; bottom: 0; width: 5px;
}
.filter-chip-group--nested.is-open > .filter-chip-dropdown--sub { display: block; }
@media (hover: hover) {
    .filter-chip-group--nested:hover > .filter-chip-dropdown--sub { display: block; }
}
.filter-chip-dropdown-item {
    display: flex;
    align-items: center;
    padding: .38rem .85rem;
    font-size: .72rem;
    letter-spacing: .04em;
    color: #1c1917;
    cursor: pointer;
    white-space: nowrap;
    transition: background .12s;
}
.filter-chip-dropdown-item input[type="radio"] { display: none; }
.filter-chip-dropdown-item:hover {
    background: #f5f4f2;
}
.filter-chip-dropdown-item.is-active {
    background: #1c1917;
    color: #fff;
}
.filter-panel-search-wrap {
    display: flex;
    gap: .4rem;
    align-items: center;
    position: relative;
}
.filter-panel-input {
    border: 1px solid #e0ddd9;
    border-radius: 2px;
    padding: .35rem .7rem;
    font: inherit;
    font-size: .8rem;
    outline: none;
    color: #1c1917;
    width: 180px;
}
.filter-panel-input:focus { border-color: #1c1917; }
.filter-panel-submit {
    padding: .35rem .8rem;
    background: #1c1917;
    color: #fff;
    border: none;
    border-radius: 2px;
    font: inherit;
    font-size: .75rem;
    letter-spacing: .06em;
    cursor: pointer;
}

/* ----------------------------------------
   Autocompl�tion recherche (.ac-dropdown)
---------------------------------------- */
.ac-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    max-width: 340px;
    background: #fff;
    border: 1px solid #e0ddd9;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: .25rem 0;
    overflow: hidden;
}
.ac-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem .85rem;
    font-size: .82rem;
    color: #1c1917;
    cursor: pointer;
    transition: background .12s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ac-item svg {
    color: #aaa;
    flex-shrink: 0;
}
.ac-item span {
    overflow: hidden;
    text-overflow: ellipsis;
}
.ac-item mark {
    background: transparent;
    color: #111;
    font-weight: 600;
}
.ac-item:hover,
.ac-item.is-active {
    background: #f5f4f1;
    color: #111;
}
.ac-item.is-active svg { color: #111; }


.form-grid textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit;
}

.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.gallery { display: grid; gap: .8rem; }
.gallery img { width: 100%; border-radius: 14px; border: 1px solid var(--line); }
.tag { display: inline-block; background: #f4f4f4; border-radius: 999px; padding: .2rem .7rem; font-size: .85rem; }
.inline-form { display: flex; gap: .5rem; margin-bottom: .8rem; }
.inline-form input { width: 90px; padding: .6rem; border: 1px solid var(--line); border-radius: 10px; }

/* -----------------------------------------------------------------------
   FICHE PRODUIT � .pds-* (product detail show)
   Layout : galerie sticky � gauche � info scrollable � droite
----------------------------------------------------------------------- */
.pds-wrapper { padding-bottom: 4rem; }

/* Fil d'Ariane */
.pds-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .3rem .5rem;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    padding: .6rem 0 .3rem;
}
.pds-breadcrumb a { color: inherit; text-decoration: none; }
.pds-breadcrumb a:hover { color: var(--ink); }
.pds-breadcrumb span[aria-hidden] { opacity: .4; }

/* Layout 2 colonnes */
.pds-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
    align-items: start;
    padding-top: .5rem;
    padding-bottom: 3rem;
}

/* -- Galerie -- */
.pds-gallery {
    position: sticky;
    top: 86px; /* navbar height */
}

.pds-main-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-alt);
    aspect-ratio: 4 / 5;
}

.pds-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.pds-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.pds-badge--out { background: #fde8e8; color: #c0392b; }
.pds-badge--low { background: #fff3cd; color: #856404; }

/* Thumbnails */
.pds-thumbs {
    display: flex;
    gap: .6rem;
    margin-top: .8rem;
    flex-wrap: wrap;
}

.pds-thumb {
    width: 72px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--bg-alt);
    padding: 0;
    transition: border-color .18s ease, opacity .18s ease;
}
.pds-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pds-thumb:hover { opacity: .8; }
.pds-thumb.is-active { border-color: var(--ink); }

/* -- Info produit -- */
.pds-info { display: flex; flex-direction: column; gap: 0; padding-left: .5rem; }

.pds-tags { display: flex; gap: .5rem; margin-bottom: 1rem; }
.pds-tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 500;
}
.pds-tag--light { background: var(--bg-alt); color: var(--muted); }

.pds-title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 1.2rem;
}

.pds-price {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: 0 0 .3rem;
}
.pds-currency {
    font-size: .65em;
    font-weight: 500;
    letter-spacing: .08em;
    vertical-align: super;
    color: var(--muted);
    margin-left: .25rem;
}

.pds-divider {
    height: 1px;
    background: var(--line);
    margin: 1.4rem 0;
}

.pds-description {
    font-size: .95rem;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

.pds-availability { margin-bottom: 1.2rem; }
.pds-avail {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 999px;
}
.pds-avail--ok  { background: #e8f5e9; color: #2e7d32; }
.pds-avail--out { background: #fde8e8; color: #c0392b; }

/* Stepper quantit� */
.pds-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: .7rem; }

.pds-qty-wrap { display: flex; flex-direction: column; gap: .45rem; }
.pds-qty-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    font-weight: 500;
}
.pds-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}
.pds-qty-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .12s;
}
.pds-qty-btn:hover { background: var(--bg-alt); }
.pds-qty-input {
    width: 52px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-size: .95rem;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    -moz-appearance: textfield;
}
.pds-qty-input::-webkit-inner-spin-button,
.pds-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Boutons CTA */
.pds-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    padding: .95rem 1.5rem;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .12s ease, opacity .18s ease;
    margin-bottom: .6rem;
    border: none;
}
.pds-btn--primary { background: var(--ink); color: #fff; }
.pds-btn--primary:hover { background: #333; transform: translateY(-1px); }
.pds-btn--outline {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}
.pds-btn--outline:hover { background: var(--ink); color: #fff; }
.pds-btn--disabled { background: #e0e0e0; color: #999; cursor: not-allowed; }

/* Rassurances */
.pds-reassurance {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    border-top: 1px solid var(--line);
    padding-top: 1.4rem;
}
.pds-reassurance li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .04em;
}
.pds-reassurance svg { flex-shrink: 0; opacity: .6; }



.cart-list { display: grid; gap: .7rem; }
.cart-item {
    display: grid;
    grid-template-columns: 2fr auto auto auto;
    gap: .8rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .9rem;
}
.cart-summary { margin-top: 1rem; text-align: right; }

.checkout-grid, .contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.1rem; }
.order-preview { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem; }
.total { font-size: 1.2rem; font-weight: 700; }

.contact-showcase {
    background: #f5f5f5;
}

.contact-showcase-head {
    margin-bottom: 1.4rem;
}

.contact-showcase-head h1 {
    margin: 0;
}

.contact-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: center;
    margin-bottom: 1.4rem;
}

.contact-story-row.is-reverse .contact-story-media {
    order: 2;
}

.contact-story-row.is-reverse .contact-story-content {
    order: 1;
}

.contact-story-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.contact-story-content h2 {
    margin: 0 0 .25rem;
    font-size: 2rem;
}

.contact-role {
    margin: 0 0 1rem;
    color: #7f8792;
    font-weight: 600;
}

.contact-story-content p {
    margin: 0 0 1rem;
    color: #5e6670;
    line-height: 1.6;
}

.contact-story-content a {
    color: #2d3743;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-story-content a:hover {
    color: #111111;
}

.about-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: 14px; margin-bottom: 1rem; }
.auth-wrap { max-width: 480px; }
.auth-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem; }

.site-footer {
    background: #ffffff;
    color: #273240;
    margin-top: 2rem;
    border-top: 1px solid #ececec;
}

.footer-newsletter-wrap {
    background: #f4f4f4;
    border-bottom: 1px solid #ececec;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.3rem 0;
}

.footer-newsletter-title {
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #31363f;
}

.footer-newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.footer-newsletter-form input {
    width: 100%;
    min-width: 0;
    height: 44px;
    border: 1px solid #e3e3e3;
    border-right: 0;
    padding: 0 1rem;
    font: inherit;
    color: #273240;
    background: #fff;
}

.footer-newsletter-form input::placeholder {
    color: #b0b7c3;
}

.footer-newsletter-form button {
    height: 44px;
    border: 0;
    background: #111111;
    color: #fff;
    padding: 0 1.2rem;
    font: inherit;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.footer-socials a {
    color: #31363f;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    color: #111111;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.8rem 0 2.2rem;
    align-items: start;
}

.footer-links-column {
    display: grid;
    gap: .9rem;
    align-content: start;
}

.footer-links-column a {
    color: #273240;
    font-size: .96rem;
    line-height: 1.3;
}

.footer-links-column a:hover,
.footer-links-column a:focus-visible {
    color: #111111;
}

.footer-brand-block {
    display: grid;
    gap: .5rem;
    justify-items: start;
    color: #5b6674;
}

.footer-brand {
    font-size: 2.15rem;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1;
    color: #273240;
}

.footer-brand span {
    color: #111111;
}

.footer-brand-block p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.45;
}

.footer-bottom {
    border-top: 1px solid #ececec;
    text-align: center;
    color: #6b7280;
    font-size: .92rem;
    padding: .95rem 0;
}

.flash { margin-top: 1rem; padding: .8rem 1rem; border-radius: 10px; }
.flash-success { background: var(--success); }
.flash-warning { background: var(--warning); }
.flash-error, .flash-danger { background: var(--error); }

@media (max-width: 980px) {
    .lookbook-grid { grid-template-columns: 1fr 1fr; }
    .story-grid,
    .product-detail-grid,
    .checkout-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 1fr; }

    .univers-grid,
    .about-process-grid,
    .simple-testimonials {
        grid-template-columns: 1fr;
    }

    .category-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 230px;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-shell {
        grid-template-columns: 1fr;
    }

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

    .contact-story-row.is-reverse .contact-story-media,
    .contact-story-row.is-reverse .contact-story-content {
        order: initial;
    }

    .testimonials-track {
        gap: .9rem;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - .9rem) / 2);
    }

    .testimonial-arrow {
        justify-self: center;
    }

    .featured-line .product-card {
        flex: unset;
        min-width: unset;
    }

    .men-tile,
    .homme-tile {
        grid-column: 1;
        grid-row: 1;
    }

    .kid-tile,
    .enfant-tile {
        grid-column: 2;
        grid-row: 1;
    }

    .accessories-tile,
    .accessoires-tile {
        grid-column: 1;
        grid-row: 2;
    }

    .women-tile,
    .femme-tile {
        grid-column: 2;
        grid-row: 2;
    }

    /* -- Best-sellers : 3 colonnes tablette -- */
    .best-sale-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 760px) {
    .navbar {
        grid-template-columns: auto auto auto;
        gap: .7rem;
    }
    .mobile-toggle { display: inline-block; border: 1px solid var(--line); background: #fff; padding: .45rem .7rem; border-radius: 8px; }
    .nav-links {
        display: none;
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: 84px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 1rem;
        flex-direction: column;
        z-index: 20;
    }
    body.menu-open .nav-links { display: flex; }
    .nav-icons { justify-content: end; }
    /* Menus d�roulants sur mobile : accordi�on inline */
    .nav-dropdown-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        color: #777;
        padding: 0;
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    .nav-dropdown-toggle svg {
        transition: transform .2s;
    }
    .nav-item--has-dropdown.is-open .nav-dropdown-toggle svg {
        transform: rotate(180deg);
    }
    .nav-item--has-dropdown {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .nav-item-label {
        width: 100%;
        justify-content: space-between;
    }
    .nav-dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none;
        border: none;
        border-left: 2px solid #e0ddd9;
        margin: .2rem 0 .2rem 1rem;
        padding: .15rem 0;
        display: none;
        min-width: 0;
        width: auto;
    }
    .nav-dropdown::before { display: none; }
    .nav-item--has-dropdown::after { display: none; }
    /* Annuler le hover desktop sur mobile */
    .nav-item--has-dropdown:hover .nav-dropdown,
    .nav-item--has-dropdown:focus-within .nav-dropdown {
        display: none;
    }
    .nav-item--has-dropdown.is-open .nav-dropdown {
        display: block;
    }
    .nav-dropdown-item {
        white-space: normal;
        padding: .38rem .7rem;
        border-left: none;          /* pas d'accent barre sur mobile */
        letter-spacing: .09em;
    }
    .nav-dropdown .nav-dropdown-item:hover,
    .nav-dropdown .nav-dropdown-item:focus-visible {
        border-left-color: transparent;
        letter-spacing: .09em;
    }
    .nav-dropdown-item--child {
        padding-left: 1.4rem;
    }
    .nav-dropdown-sep { display: none; }
    /* -- Chips filtres mobile : m�me comportement visuel que desktop -- */
    /* Pas de hover CSS sur touch ; .is-open (JS) g�re l'ouverture.   */
    .filter-chip-dropdown,
    .filter-chip-dropdown--sub {
        max-width: calc(100vw - 1rem);
    }
    /* Sous-dropdown mobile : en dessous (pas de flyout droit) */
    .filter-chip-dropdown--sub {
        left: 0;
        top: 100%;
    }
    /* Neutraliser le hover flash sur touch */
    .filter-chip:hover { background: #fff; border-color: #e0ddd9; color: #1c1917; }
    .filter-chip.is-active:hover { background: #1c1917; border-color: #1c1917; color: #fff; }
    .filter-chip-dropdown-item:hover { background: #fff; }
    .brand-logo { width: 120px; }
    .lookbook-grid { grid-template-columns: 1fr; }
    /* -- Hero mobile : stable, aucun effet -- */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        max-height: none;
        position: relative;
        overflow: hidden;
        padding: 0;
        background: #0d0d0d;
        transition: none !important;
        touch-action: pan-y;
    }
    /* D?sactiver l'effet compact sur mobile */
    .hero--compact,
    .hero--compact .hero-layout {
        min-height: 100vh !important;
        min-height: 100svh !important;
        max-height: none !important;
        transition: none !important;
    }
    .hero-layout {
        min-height: 100vh;
        min-height: 100svh;
        max-height: none;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        transition: none !important;
    }
    .hero-visual {
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        overflow: hidden;
    }
    .hero-visual picture {
        display: block;
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
    }
    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        filter: none;
        animation: none;           /* d�sactiv� sur mobile : �vite fuite couche GPU iOS Safari */
        will-change: auto;
    }
    /* D?grad? bas ? haut pour lisibilit? texte sur mobile */
    .hero-layout::after {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        background: linear-gradient(to top,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.5) 40%,
            rgba(0,0,0,.1) 70%,
            transparent 100%);
        z-index: 1;
        pointer-events: none;
        display: block;
    }
    .hero-overlay-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 2rem 1.3rem 2.2rem;
        max-width: none;
    }
    .hero-overlay-content h1,
    .hero-overlay-content p,
    .hero-kicker {
        color: #fff;
    }
    .hero-kicker { color: rgba(255,255,255,.7); }
    .hero-overlay-content p { max-width: none; font-size: .95rem; }
    .hero-overlay-content .hero-cta-btn {
        background: #fff;
        color: #111;
        font-weight: 700;
    }
    .hero-overlay-content .hero-cta-btn:hover { background: #f0f0f0; }

    .category-showcase-wrap {
        padding: 1.25rem;
    }

    .category-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: .8rem;
    }

    .men-tile,
    .kid-tile,
    .accessories-tile,
    .women-tile {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .showcase-item span {
        font-size: .9rem;
        padding: .6rem 1.2rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .best-sale-tabs a {
        font-size: .62rem;
        padding: .5rem .75rem;
    }

    .best-sale-tabs button {
        font-size: .62rem;
        padding: .5rem .75rem;
    }

    /* -- Best-sale : pas sticky sur mobile -- */
    .best-sale-sticky-header {
        position: static;
        border-bottom: none;
        padding: 2rem 0 0;
    }
    .best-sale-panels-wrap {
        padding-top: 0;
    }

    .best-sale-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    .footer-newsletter-form {
        width: 100%;
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .featured-line .product-card {
        flex: unset;
        min-width: unset;
    }
}


/* -----------------------------------------------------------
   PAGE SUIVI DE COMMANDE ? ORDER TRACKING
----------------------------------------------------------- */

/* -- Hero -- */
.ot-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 90px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ot-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,0,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.ot-hero-inner {
    position: relative;
}
.ot-hero h1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0.35em 0 0.5em;
    letter-spacing: 0.02em;
}
.ot-hero-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -- Recherche -- */
.ot-search-section {
    margin-top: -30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.ot-search-card {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 48px 44px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    text-align: center;
}
.ot-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111111 0%, #d4a853 100%);
    color: #fff;
    margin-bottom: 20px;
}
.ot-search-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}
.ot-search-hint {
    color: #777;
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.ot-form {
    width: 100%;
}
.ot-input-group {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: border-color 0.2s;
}
.ot-input-group:focus-within {
    border-color: #111111;
}
.ot-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    background: #faf9f7;
    color: #111;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ot-input::placeholder {
    text-transform: none;
    color: #bbb;
    letter-spacing: 0;
}
.ot-input--error {
    background: #fff5f5;
}
.ot-btn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 24px;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}
.ot-btn-search:hover {
    background: linear-gradient(135deg, #8A6B1E 0%, #111111 100%);
}
.ot-btn-search:active {
    transform: scale(0.98);
}
.ot-error-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background: #fff5f5;
    border: 1px solid #ffd6d6;
    border-radius: 8px;
    color: #c00;
    font-size: 0.88rem;
    text-align: left;
    line-height: 1.5;
}
.ot-error-msg a {
    color: #111111;
    text-decoration: underline;
}

/* -- R?sultat ? carte r?sum? -- */
.ot-result {
    max-width: 800px;
    margin: 0 auto 80px;
}
.ot-summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 32px;
}
.ot-summary-ref {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}
.ot-summary-ref .ot-summary-value {
    font-family: 'Jost', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.06em;
}
.ot-summary-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.ot-summary-meta > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ot-summary-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
}
.ot-summary-value {
    font-size: 0.95rem;
    color: #222;
    font-weight: 500;
}
.ot-summary-total {
    color: #111111;
    font-weight: 700;
}
.ot-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.ot-status-badge--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.ot-status-badge--error {
    background: #fff5f5;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.ot-status-badge--progress {
    background: #fefce8;
    color: #854d0e;
    border: 1px solid #fef08a;
}
.ot-dot-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ca8a04;
    animation: ot-pulse 1.4s ease-in-out infinite;
}
@keyframes ot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

/* -- Timeline -- */
.ot-timeline-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 32px;
}
.ot-timeline-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 28px;
}
.ot-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 4px;
}
.ot-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 80px;
    position: relative;
}
.ot-step-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ebebeb;
    border: 2px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s;
    flex-shrink: 0;
}
.ot-step--done .ot-step-bubble {
    background: linear-gradient(135deg, #111111, #000000);
    border-color: #111111;
    color: #fff;
}
.ot-step--current .ot-step-bubble {
    background: #fff;
    border: 3px solid #111111;
    box-shadow: 0 0 0 4px rgba(212,0,0,0.15);
    color: #111111;
}
.ot-step-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111111;
    animation: ot-pulse 1.2s ease-in-out infinite;
}
.ot-step-line {
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}
.ot-step-line--done {
    background: linear-gradient(90deg, #111111, #000000);
}
.ot-step-info {
    margin-top: 10px;
    text-align: center;
    padding: 0 4px;
}
.ot-step-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
}
.ot-step--done .ot-step-name,
.ot-step--current .ot-step-name {
    color: #111;
}
.ot-step--current .ot-step-name {
    color: #111111;
}
.ot-step-desc {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-top: 4px;
    line-height: 1.45;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}

/* -- Non livr? -- */
.ot-not-delivered {
    background: #fff;
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 32px;
}
.ot-not-delivered h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: #c41200;
    margin: 16px 0 8px;
}
.ot-not-delivered p {
    color: #666;
    margin-bottom: 24px;
}
.ot-btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #111111, #000000);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.ot-btn-contact:hover { opacity: 0.88; }

/* -- Articles command?s -- */
.ot-items-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.ot-items-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
}
.ot-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ot-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #ebebeb;
}
.ot-item:last-child { border-bottom: none; }
.ot-item-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f7f4ef;
}
.ot-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ot-item-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    color: #bbb;
    letter-spacing: 0.05em;
}
.ot-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ot-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
}
.ot-item-qty {
    font-size: 0.8rem;
    color: #888;
}
.ot-item-price {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: #111111;
    white-space: nowrap;
}

/* -- Processus de commande -- */
.ot-process {
    background: #f9f7f4;
}
.ot-process-header {
    text-align: center;
    margin-bottom: 60px;
}
.ot-process-header h2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #111;
    margin: 0.3em 0 0.5em;
}
.ot-process-sub {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}
.ot-process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}
.ot-process-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.ot-process-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111111;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}
.ot-process-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}
.ot-process-icon-wrap--1 { background: #fff0f0; color: #e05a5a; }
.ot-process-icon-wrap--2 { background: #f0f8e8; color: #4caf50; }
.ot-process-icon-wrap--3 { background: #e8f4ff; color: #2196f3; }
.ot-process-icon-wrap--4 { background: #fff8e0; color: #ff9800; }
.ot-process-icon-wrap--5 { background: #f3e8ff; color: #9c27b0; }
.ot-process-step h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.35;
}
.ot-process-step p {
    color: #666;
    font-size: 0.87rem;
    line-height: 1.6;
}
.ot-process-connector {
    width: 40px;
    flex-shrink: 0;
    margin-top: 34px;
    height: 2px;
    background: linear-gradient(90deg, #d8d8d8, #111111, #d8d8d8);
    align-self: flex-start;
}

/* -- CTA Aide -- */
.ot-help {
    background: #fff;
}
.ot-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px 48px;
    flex-wrap: wrap;
}
.ot-help-text h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}
.ot-help-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}
.ot-help-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.ot-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: #25d366;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.2s;
}
.ot-btn-whatsapp:hover { background: #1fba58; }
.ot-btn-contact-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.ot-btn-contact-outline:hover {
    border-color: #111111;
    color: #111111;
}

/* -- Responsive -- */
@media (max-width: 900px) {
    .ot-process-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .ot-process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
        background: linear-gradient(180deg, #d8d8d8, #111111, #d8d8d8);
    }
    .ot-process-step {
        max-width: 320px;
    }
    .ot-timeline {
        flex-direction: column;
        gap: 0;
    }
    .ot-step {
        flex-direction: row;
        align-items: flex-start;
        min-width: unset;
        width: 100%;
    }
    .ot-step-line {
        top: calc(50% + 22px);
        left: 21px;
        right: unset;
        width: 2px;
        height: 100%;
    }
    .ot-step-info {
        text-align: left;
        margin-top: 0;
        margin-left: 16px;
        padding: 10px 0;
    }
    .ot-step-desc {
        max-width: none;
        margin: 0;
    }
    .ot-help-card {
        padding: 32px 28px;
    }
}
@media (max-width: 600px) {
    .ot-search-card {
        padding: 32px 24px 28px;
    }
    .ot-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    .ot-btn-search {
        justify-content: center;
        border-radius: 0 0 10px 10px;
    }
    .ot-summary-meta {
        gap: 20px;
    }
    .ot-timeline-wrap,
    .ot-items-wrap,
    .ot-summary-card {
        padding: 24px 20px;
    }
    .ot-help-card {
        padding: 28px 20px;
        flex-direction: column;
    }
    .ot-help-actions {
        width: 100%;
    }
    .ot-btn-whatsapp,
    .ot-btn-contact-outline {
        flex: 1;
        justify-content: center;
    }
}


/* -----------------------------------------------------------
   PAGE NOUS CONTACTER ? CONTACT PAGE
----------------------------------------------------------- */

/* -- Hero -- */
.cp-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 90px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cp-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,0,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cp-hero-inner { position: relative; }
.cp-hero h1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    color: #fff;
    margin: 0.3em 0 0.5em;
}
.cp-hero-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* -- Layout principal -- */
.cp-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: start;
}

/* -- Colonne infos -- */
.cp-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cp-info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #ebebeb;
}
.cp-info-block:first-child { padding-top: 0; }
.cp-info-block:last-of-type { border-bottom: none; }
.cp-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cp-info-icon--green  { background: #f0fdf4; color: #16a34a; }
.cp-info-icon--gold   { background: #fff0f0; color: #111111; }
.cp-info-icon--ink    { background: #f5f5f5; color: #333; }
.cp-info-block h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: #111;
}
.cp-info-block p {
    font-size: 0.88rem;
    color: #777;
    margin: 0 0 8px;
    line-height: 1.5;
}
.cp-channel-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}
.cp-channel-link:hover { color: #111111; }
.cp-channel-link--wa { color: #16a34a; }
.cp-channel-link--wa:hover { color: #15803d; }
.cp-tracking-cta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 18px 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    color: #111111;
}
.cp-tracking-cta strong {
    display: block;
    font-size: 0.88rem;
    color: #111;
    margin-bottom: 2px;
}
.cp-tracking-cta a {
    font-size: 0.82rem;
    color: #111111;
    font-weight: 600;
}

/* -- Formulaire -- */
.cp-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 44px 44px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.cp-form-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 6px;
}
.cp-form-intro {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.cp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cp-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cp-field label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #555;
}
.cp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cp-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Jost', sans-serif;
    color: #111;
    background: #faf9f7;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.cp-input:focus {
    border-color: #111111;
    background: #fff;
}
.cp-textarea {
    resize: vertical;
    min-height: 130px;
}
.cp-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    align-self: flex-start;
}
.cp-btn-submit:hover { opacity: 0.88; }
.cp-btn-submit:active { transform: scale(0.98); }

/* -- FAQ rapide -- */
.cp-faq-section { background: #f9f7f4; }
.cp-faq-header {
    text-align: center;
    margin-bottom: 44px;
}
.cp-faq-header h2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #111;
    margin: 0.3em 0 0;
}
.cp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.cp-faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 28px 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.cp-faq-item h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}
.cp-faq-item p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
.cp-faq-item a { color: #111111; text-decoration: underline; }

/* -- Responsive contact -- */
@media (max-width: 900px) {
    .cp-layout { grid-template-columns: 1fr; gap: 36px; }
    .cp-faq-grid { grid-template-columns: 1fr; }
    .cp-form-wrap { padding: 32px 24px; }
}
@media (max-width: 600px) {
    .cp-field-row { grid-template-columns: 1fr; }
    .cp-btn-submit { width: 100%; }
}


/* -----------------------------------------------------------
   PAGE ? PROPOS ? ABOUT PAGE
----------------------------------------------------------- */

/* -- Hero -- */
.ab-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 90px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ab-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,0,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.ab-hero-inner { position: relative; }
.ab-hero h1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: #fff;
    margin: 0.3em 0 0.4em;
}
.ab-hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* -- Section histoire -- */
.ab-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ab-story-media { position: relative; }
.ab-story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.ab-story-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: linear-gradient(135deg, #111111, #000000);
    color: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(212,0,0,0.35);
}
.ab-badge-year {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.ab-badge-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-top: 2px;
}
.ab-story-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #111;
    margin: 0.3em 0 1em;
    line-height: 1.25;
}
.ab-story-text {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 1.2em;
}
.ab-story-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
}
.ab-stat { display: flex; flex-direction: column; gap: 3px; }
.ab-stat-num {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    line-height: 1;
}
.ab-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
}

/* -- Valeurs -- */
.ab-values-section { background: #f9f7f4; }
.ab-section-header {
    text-align: center;
    margin-bottom: 52px;
}
.ab-section-header h2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #111;
    margin: 0.3em 0 0.6em;
}
.ab-section-sub {
    color: #777;
    font-size: 0.97rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ab-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}
.ab-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}
.ab-value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #111111, #000000);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 18px;
}
.ab-value-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}
.ab-value-card p {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* -- Services -- */
.ab-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ab-services-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 400;
    color: #111;
    margin: 0.3em 0 1em;
    line-height: 1.3;
}
.ab-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ab-services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #444;
}
.ab-services-list li svg { color: #111111; flex-shrink: 0; }
.ab-services-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.ab-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #25d366;
    text-decoration: none;
    transition: opacity 0.2s;
}
.ab-wa-link:hover { opacity: 0.8; color: #25d366; }
.ab-services-media { position: relative; }
.ab-services-img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    display: block;
}

/* -- CTA final -- */
.ab-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ab-cta-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212,0,0,0.12) 0%, transparent 70%);
}
.ab-cta-inner { position: relative; }
.ab-cta-section h2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}
.ab-cta-section p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 36px;
}
.ab-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.ab-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.1s;
}
.ab-cta-btn:active { transform: scale(0.98); }
.ab-cta-btn--primary {
    background: linear-gradient(135deg, #111111, #000000);
    color: #fff;
}
.ab-cta-btn--primary:hover { opacity: 0.88; color: #fff; }
.ab-cta-btn--outline {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
}
.ab-cta-btn--outline:hover { border-color: #111111; color: #111111; }

/* -- Responsive about -- */
@media (max-width: 1000px) {
    .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .ab-story, .ab-services {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ab-story-media { order: -1; }
    .ab-story-badge { right: 16px; }
    .ab-story-img, .ab-services-img { height: auto; max-height: 380px; }
    .ab-services-content { order: 1; }
    .ab-services-media { order: 0; }
}
@media (max-width: 600px) {
    .ab-values-grid { grid-template-columns: 1fr; }
    .ab-story-stats { gap: 20px; }
    .ab-cta-actions { flex-direction: column; align-items: stretch; }
    .ab-cta-btn { text-align: center; }
}


/* -----------------------------------------------------------
   AM?LIORATIONS CONTACT ? NOUVEAUX ?L?MENTS
----------------------------------------------------------- */

/* -- Flash message -- */
.cp-flash {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 0.93rem;
    font-weight: 500;
    border-radius: 0;
    position: relative;
}
.cp-flash--success {
    background: #f0fdf4;
    color: #166534;
    border-bottom: 2px solid #86efac;
}
.cp-flash span { flex: 1; }
.cp-flash-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: inherit;
    opacity: 0.6;
    padding: 0 4px;
    line-height: 1;
}
.cp-flash-close:hover { opacity: 1; }

/* -- Hero badges -- */
.cp-hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.cp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.cp-badge--wa {
    background: rgba(37,211,102,0.15);
    color: #25d366;
    border: 1px solid rgba(37,211,102,0.3);
}
.cp-badge--time {
    background: rgba(212,0,0,0.15);
    color: #111111;
    border: 1px solid rgba(212,0,0,0.3);
}
.cp-badge-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25d366;
    animation: ot-pulse 1.5s ease-in-out infinite;
}

/* -- Carte WhatsApp prioritaire -- */
.cp-wa-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1.5px solid #bbf7d0;
    border-radius: 14px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cp-wa-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.15);
    color: inherit;
}
.cp-wa-icon {
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.cp-wa-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cp-wa-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}
.cp-wa-text span {
    font-size: 0.8rem;
    color: #555;
}
.cp-wa-arrow { color: #25d366; flex-shrink: 0; }

/* -- Grille horaires -- */
.cp-hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 16px;
    font-size: 0.86rem;
    color: #555;
    margin-top: 4px;
}
.cp-hours-grid strong { color: #111; }
.cp-hours-closed { color: #bbb; font-style: italic; }

/* -- Tracking CTA am?lior? -- */
.cp-tracking-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    margin-top: 12px;
    transition: border-color 0.2s, background 0.2s;
}
.cp-tracking-cta:hover {
    border-color: #111111;
    background: #fdf5e6;
    color: inherit;
}
.cp-tracking-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #111111, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.cp-tracking-cta > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cp-tracking-cta strong {
    font-size: 0.88rem;
    color: #111;
    font-weight: 700;
    display: block;
}
.cp-tracking-cta span {
    font-size: 0.8rem;
    color: #888;
}

/* -- Extras formulaire -- */
.cp-form-header { margin-bottom: 28px; }
.cp-field-hint {
    font-size: 0.78rem;
    color: #aaa;
    font-style: italic;
}
.cp-form-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #bbb;
    margin-top: 12px;
}
.cp-form-privacy svg { flex-shrink: 0; }

/* -- FAQ Accordion -- */
.cp-faq-sub {
    color: #888;
    font-size: 0.92rem;
    max-width: 480px;
    margin: 8px auto 0;
    line-height: 1.6;
}
.cp-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cp-faq-item {
    background: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border-bottom: 1px solid #ebebeb;
}
.cp-faq-item:first-child {
    border-top: 1px solid #ebebeb;
    border-radius: 12px 12px 0 0;
}
.cp-faq-item:last-child {
    border-radius: 0 0 12px 12px;
}
.cp-faq-q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    user-select: none;
    transition: color 0.2s;
}
.cp-faq-q::-webkit-details-marker { display: none; }
.cp-faq-q::marker { content: ''; }
.cp-faq-item[open] .cp-faq-q { color: #111111; }
.cp-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: #aaa;
}
.cp-faq-item[open] .cp-faq-chevron {
    transform: rotate(180deg);
    color: #111111;
}
.cp-faq-a {
    padding: 0 24px 20px;
    animation: faq-open 0.2s ease;
}
.cp-faq-a p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.cp-faq-a a { color: #111111; text-decoration: underline; }
@keyframes faq-open {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* -----------------------------------------------------------
   AM?LIORATIONS ? PROPOS ? NOUVEAUX ?L?MENTS
----------------------------------------------------------- */

/* -- Hero stats -- */
.ab-hero-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #111111, transparent);
    margin: 28px auto 24px;
}
.ab-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.ab-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
}
.ab-hero-stat-num {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    line-height: 1;
}
.ab-hero-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}
.ab-hero-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
@media (max-width: 600px) {
    .ab-hero-stat-sep { display: none; }
    .ab-hero-stat { padding: 12px 20px; }
    .ab-hero-stats { gap: 0; }
}

/* -- Story ? quote & CTA -- */
.ab-story-quote {
    border-left: 3px solid #111111;
    margin: 24px 0;
    padding: 8px 0 8px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #111111;
    line-height: 1.55;
}
.ab-story-cta { margin-top: 28px; }

/* -- Timeline -- */
.ab-timeline-section { background: #fff; }
.ab-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.ab-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #111111 0%, #e0e0e0 100%);
}
.ab-tl-item {
    position: relative;
    padding-bottom: 40px;
}
.ab-tl-item:last-child { padding-bottom: 0; }
.ab-tl-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #d8d8d8;
    transition: background 0.2s;
}
.ab-tl-item--current .ab-tl-dot {
    background: linear-gradient(135deg, #111111, #000000);
    box-shadow: 0 0 0 3px rgba(212,0,0,0.2);
    width: 20px;
    height: 20px;
    left: -36px;
    top: 2px;
}
.ab-tl-content {
    padding-left: 4px;
}
.ab-tl-year {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #111111;
    margin-bottom: 4px;
}
.ab-tl-content h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px;
}
.ab-tl-content p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* -- Value icons color?s -- */
.ab-value-icon--1 { background: linear-gradient(135deg, #991b1b, #111111); }
.ab-value-icon--2 { background: linear-gradient(135deg, #991b1b, #111111); }
.ab-value-icon--3 { background: linear-gradient(135deg, #111111, #000000); }
.ab-value-icon--4 { background: linear-gradient(135deg, #000000, #111111); }

/* -- Section Engagements -- */
.ab-engage-section { background: #0a0a0a; }
.ab-engage-section .ab-section-header h2 { color: #fff; }
.ab-engage-section .ab-section-header .kicker { color: rgba(212,0,0,0.8); }
.ab-engage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}
.ab-engage-item {
    background: #111;
    padding: 36px 28px;
    transition: background 0.2s;
}
.ab-engage-item:hover { background: #161616; }
.ab-engage-num {
    font-family: 'Jost', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(212,0,0,0.3);
    line-height: 1;
    margin-bottom: 16px;
}
.ab-engage-item h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.ab-engage-item p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 960px) {
    .ab-engage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .ab-engage-grid { grid-template-columns: 1fr; }
    .ab-hero-stat-sep { display: none; }
}


/* -----------------------------------------------------------
   PAGE CONNEXION ? LOGIN PAGE
----------------------------------------------------------- */

/* -- Masquer header/footer sur cette page -- */
body:has(.lp-shell) .site-header,
body:has(.lp-shell) .site-footer { display: none; }

/* -- Shell pleine page -- */
.lp-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* -- Panneau gauche -- */
.lp-left {
    position: relative;
    overflow: hidden;
}
.lp-left-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.lp-left-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        160deg,
        rgba(5,5,5,0.72) 0%,
        rgba(10,10,10,0.55) 40%,
        rgba(0,0,0,0.78) 100%
    );
    z-index: 1;
}
.lp-left-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 52px;
}
.lp-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.lp-brand-bgs { color: #ffffff; }
.lp-brand-prestige { color: #111111; }
.lp-left-quote {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.45;
    border-left: 3px solid #111111;
    padding-left: 20px;
    margin: 0;
}
.lp-left-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.lp-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.2s;
}
.lp-dot--active {
    background: #111111;
    width: 24px;
    border-radius: 4px;
}

/* -- Panneau droit -- */
.lp-right {
    display: flex;
    flex-direction: column;
    background: #faf9f7;
    position: relative;
}
.lp-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 28px 28px 0;
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.lp-back:hover { color: #111; }
.lp-back svg { transition: transform 0.2s; }
.lp-back:hover svg { transform: translateX(-3px); }

/* -- Zone formulaire centr?e -- */
.lp-form-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 10%;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

/* -- En-t?te formulaire -- */
.lp-form-header {
    margin-bottom: 36px;
}
.lp-logo-sm {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111111, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}
.lp-form-header h1 {
    font-family: 'Jost', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.lp-form-sub {
    color: #888;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

/* -- Erreur -- */
.lp-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.88rem;
    margin-bottom: 24px;
}

/* -- Champs -- */
.lp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lp-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.lp-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
}
.lp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.lp-input-icon {
    position: absolute;
    left: 14px;
    color: #bbb;
    pointer-events: none;
    flex-shrink: 0;
}
.lp-input {
    width: 100%;
    padding: 14px 44px 14px 44px;
    border: 1.5px solid #e0e0e0;
    border-radius: 11px;
    font-size: 0.95rem;
    font-family: 'Jost', sans-serif;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-input::placeholder { color: #ccc; }
.lp-input:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(212,0,0,0.12);
}
.lp-pw-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.lp-pw-toggle:hover { color: #666; }

/* -- Bouton submit -- */
.lp-btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    margin-top: 4px;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity 0.2s, transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(212,0,0,0.3);
}
.lp-btn-submit:hover {
    opacity: 0.9;
    box-shadow: 0 8px 28px rgba(212,0,0,0.4);
}
.lp-btn-submit:active { transform: scale(0.99); }

/* -- Hint s?curit? -- */
.lp-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.76rem;
    color: #bbb;
    line-height: 1.5;
}
.lp-hint svg { flex-shrink: 0; }

/* -- Footer -- */
.lp-footer {
    padding: 20px 28px;
    text-align: center;
    font-size: 0.76rem;
    color: #ccc;
}

/* -- Responsive -- */
@media (max-width: 860px) {
    .lp-shell { grid-template-columns: 1fr; }
    .lp-left { display: none; }
    .lp-right { background: #fff; }
    .lp-form-wrap { padding: 40px 24px; max-width: 100%; }
    /* R?afficher header/footer sur mobile pour la nav */
    body:has(.lp-shell) .site-header { display: block; }
}
@media (max-width: 480px) {
    .lp-form-wrap { padding: 32px 20px; }
    .lp-form-header h1 { font-size: 1.8rem; }
}




/* -----------------------------------------------------------
   OPTIMISATION MOBILE ? PRIORIT? MOBILE (approche mobile-first)
   Ces r?gles compl?tent et surchargent les breakpoints existants
----------------------------------------------------------- */

/* -- Barre de navigation inf?rieure mobile -- */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 760px) {

    /* -- Globals mobile -- */
    body {
        padding-bottom: 64px; /* espace pour la bottom nav */
        font-size: 15px;
    }
    .section {
        padding: 2rem 0;
    }
    .container {
        width: 95%;
    }
    h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }

    /* -- Navbar mobile : Hamburger ? gauche | Logo centr? | Ic?nes ? droite -- */
    .navbar-shell {
        min-height: 56px;
    }
    .filter-bar-sticky-wrap {
        top: 56px;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        position: relative;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
        color: #111;
        flex-shrink: 0;
    }
    .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.9rem;
        pointer-events: auto;
    }
    .nav-icons {
        display: flex;
        align-items: center;
        gap: 0;
    }
    .icon-link {
        width: 40px;
        height: 40px;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 56px; right: 0; bottom: 64px; left: 0;
        background: #fff;
        z-index: 100;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        overflow-y: auto;
        border: none;
        border-radius: 0;
    }
    body.menu-open .nav-links {
        display: flex;
    }
    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links a {
        padding: 16px 20px;
        font-size: 1rem;
        min-height: 52px;
        display: flex;
        align-items: center;
    }
    .nav-links a.is-active {
        background: #fff5f5;
        border-left: 3px solid #111111;
    }

    /* -- Bottom navigation bar -- */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: #fff;
        border-top: 1px solid #e8e8e8;
        z-index: 200;
        box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    }
    .mbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #666;
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        transition: color 0.15s;
        -webkit-tap-highlight-color: transparent;
    }
    .mbn-item:hover,
    .mbn-item.is-active {
        color: #0d0d0d;
    }
    .mbn-item svg {
        flex-shrink: 0;
    }
    .mbn-cart-count {
        position: absolute;
        top: 6px;
        right: calc(50% - 18px);
        background: var(--notif);
        color: #fff;
        font-size: 0.6rem;
        font-weight: 700;
        min-width: 16px;
        height: 16px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 3px;
    }
    .mbn-cart-wrap {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        text-decoration: none;
        color: #666;
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        transition: color 0.15s;
    }
    .mbn-cart-wrap:hover { color: #0d0d0d; }

    /* -- Showcase univers (fix noms de classes) -- */
    .homme-tile,
    .femme-tile,
    .enfant-tile,
    .accessoires-tile {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 200px;
    }
    .category-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
    }
    .homme-tile {
        grid-column: 1 / span 2 !important;
        grid-row: 1 !important;
        min-height: 200px;
    }
    .femme-tile {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    .enfant-tile {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    .accessoires-tile {
        grid-column: 1 / span 2 !important;
        grid-row: 3 !important;
        min-height: 160px;
    }
    .category-showcase {
        grid-template-rows: 200px 180px 160px;
    }

    /* -- Grille produits mobile 2 colonnes -- */
    .product-grid,
    .featured-line {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
        overflow-x: unset;
        align-items: start; /* chaque carte prend sa hauteur naturelle : pas d'�tirement */
    }
    .product-card {
        border-radius: 4px;
        box-shadow: none;
        border-color: #ececec;
    }
    .product-image-wrap img {
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    .minimalist-image {
        min-height: unset;
        padding: .75rem .75rem 0;
    }
    .minimalist-image img {
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }
    .product-meta {
        padding: .5rem .6rem .75rem;
    }
    .product-name {
        font-size: .88rem;
        line-height: 1.3;
    }
    .product-price {
        font-size: .9rem;
    }
    .product-card .btn-cart,
    .product-card .btn-solid {
        display: none;
    }

    /* -- Best-sellers : 2 colonnes mobile -- */
    .best-sale-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    /* -- Catalogue : filtres -- */
    .filter-panel-inner { flex-direction: column; gap: 1rem; }
    .filter-panel-input { width: 140px; }
    .filter-bar-label { display: none; }

    /* -- Fiche produit -- */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .pds-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pds-gallery { position: static; }
    .pds-main-img-wrap { aspect-ratio: 4 / 3.2; max-height: 60vw; }
    .pds-thumbs { justify-content: center; }
    .pds-thumb { width: 60px; height: 75px; }

    /* -- Panier -- */
    .cart-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: .5rem;
    }
    .cart-item > *:nth-child(3),
    .cart-item > *:nth-child(4) {
        grid-column: auto;
    }

    /* -- Checkout -- */
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .order-preview {
        order: -1;
    }

    /* -- Contact grid -- */
    .contact-story-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-story-row.is-reverse .contact-story-media,
    .contact-story-row.is-reverse .contact-story-content {
        order: unset;
    }
    .contact-story-media img {
        min-height: 220px;
        max-height: 260px;
    }

    /* -- Footer newsletter -- */
    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: .8rem;
        text-align: center;
        padding: 1.2rem 0;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        padding: 1.6rem 0;
    }

    /* -- Formulaires -- */
    .form-grid { display: grid; gap: .7rem; }
    .form-grid input,
    .form-grid textarea,
    .form-grid select {
        width: 100%;
        padding: .9rem .8rem;
        font-size: 1rem;
    }
    .btn-solid,
    .btn-outline {
        padding: .85rem 1.2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    /* -- Pages statiques -- */
    .ab-hero { padding: 60px 20px 50px; }
    .ab-hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .ab-hero-stat-num { font-size: 1.5rem; }
    .ab-story { grid-template-columns: 1fr; gap: 24px; }
    .ab-story-badge { right: 12px; bottom: 12px; }
    .ab-values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ab-value-card { padding: 20px 16px; }
    .ab-services { grid-template-columns: 1fr; gap: 28px; }
    .ab-services-media { order: -1; }
    .ab-services-img { height: auto; max-height: 280px; }
    .ab-engage-grid { grid-template-columns: 1fr 1fr; }
    .ab-cta-section { padding: 56px 20px; }

    /* -- Order tracking -- */
    .ot-hero { padding: 60px 20px 50px; }
    .ot-search-card { padding: 24px 16px 20px; }
    .ot-input-group { flex-direction: column; }
    .ot-btn-search { justify-content: center; border-radius: 0 0 10px 10px; }
    .ot-timeline { flex-direction: column; align-items: center; }

    /* -- Contact page -- */
    .cp-layout { grid-template-columns: 1fr; gap: 24px; }
    .cp-form-wrap { padding: 24px 16px; }

    /* -- T?moignages -- */
    .testimonials-shell {
        grid-template-columns: auto 1fr auto;
        gap: .4rem;
    }

    /* -- Boutons tactiles -- */
    a, button { -webkit-tap-highlight-color: transparent; }
    .icon-link,
    .page-link,
    .btn-solid,
    .btn-outline,
    .btn-link,
    .btn-mini {
        min-height: 44px;
    }
}

/* -- Tr?s petit mobile (< 400px) -- */
@media (max-width: 400px) {
    .brand-logo { width: 100px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .best-sale-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-values-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .category-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .homme-tile,
    .femme-tile,
    .enfant-tile,
    .accessoires-tile {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: 160px;
    }
}

/* ----------------------------------------------
   PAGE PANIER ? cart-page
---------------------------------------------- */
.cart-page h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
}

/* Panier vide */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 1rem;
    text-align: center;
    color: #888;
}
.cart-empty p { font-size: 1.1rem; }

/* Liste articles */
.cart-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* Ligne article */
.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #fafafa; }

/* Image */
.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-img-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
}

/* Infos */
.cart-item-info { min-width: 0; }
.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.cart-item-meta {
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 2px;
}
.cart-item-qty {
    font-size: 0.8rem;
    color: #555;
}

/* Prix */
.cart-item-price {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #111111;
    white-space: nowrap;
}

/* Bouton supprimer */
.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    padding: 6px;
    border-radius: 6px;
    transition: color .15s, background .15s;
    display: grid;
    place-items: center;
}
.cart-remove-btn:hover {
    color: #111111;
    background: #fff0f0;
}

/* R?capitulatif */
.cart-summary {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 1.2rem 1.4rem 1.4rem;
    max-width: 420px;
    margin-left: auto;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.cart-total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}
.cart-checkout-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
    letter-spacing: 0.04em;
}

/* Mobile : panier plein largeur */
@media (max-width: 600px) {
    .cart-item {
        grid-template-columns: 60px 1fr auto auto;
        gap: .6rem;
        padding: .8rem 1rem;
    }
    .cart-item-img {
        width: 60px;
        height: 60px;
    }
    .cart-summary {
        max-width: 100%;
    }
}

/* -- Indicateur swipe section Nouveaut?s -- */
.nouveautes-swipe-hint {
    display: none;
    text-align: center;
    font-size: 0.72rem;
    color: #aaa;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: .5rem 0 0;
    font-weight: 500;
    pointer-events: none;
    user-select: none;
}
@media (max-width: 760px) {
    .nouveautes-swipe-hint {
        display: block;
    }
    /* Feedback visuel pendant le swipe */
    #nouveautes-body {
        touch-action: pan-y;
    }
}
/* Nouveaut�s : 8 en desktop, 6 en tablette/mobile */
@media (max-width: 980px) {
    #nouveautes-body .featured-line .pc:nth-child(n+7) {
        display: none;
    }
}

/* Bouton CTA hero masqu? sur mobile */
@media (max-width: 760px) {
    .hero-cta-desktop { display: none; }
}


/* ----------------------------------------
   Pages l�gales (CGU / Confidentialit�)
---------------------------------------- */
.legal-page { max-width: 800px; }

.legal-header { margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.legal-header h1 { margin: .4rem 0 .5rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-date { color: var(--muted); font-size: .85rem; margin: 0; }

.legal-content h2 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 2rem 0 .6rem; color: var(--ink); }
.legal-content p,
.legal-content li { font-size: .95rem; line-height: 1.75; color: #444; }
.legal-content ul { padding-left: 1.2rem; margin: .5rem 0 1rem; }
.legal-content li { margin-bottom: .3rem; }
.legal-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-back { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* ----------------------------------------
   Pages l�gales (CGU / Confidentialit�)
---------------------------------------- */
.legal-page { max-width: 800px; }

.legal-header { margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.legal-header h1 { margin: .4rem 0 .5rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-date { color: var(--muted); font-size: .85rem; margin: 0; }

.legal-content h2 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 2rem 0 .6rem; color: var(--ink); }
.legal-content p,
.legal-content li { font-size: .95rem; line-height: 1.75; color: #444; }
.legal-content ul { padding-left: 1.2rem; margin: .5rem 0 1rem; }
.legal-content li { margin-bottom: .3rem; }
.legal-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-back { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
