/* ============================================================================
 * LLA Shop Blocks — Shop CSS v1.0.2
 *
 * Refonte from scratch (mockup boutique-mockup.html, style Etsy/Amazon).
 * BEM strict. Mobile-first. Breakpoints : 640 / 1024 / 1440.
 *
 * Spécificité : tous les sélecteurs sont préfixés par body pour battre les CSS
 * Elementor par défaut qui ont une spécificité agressive sur les containers.
 *
 * Dépend de : tokens.css.
 * ============================================================================ */

/* ─── 1. Wrapper page boutique ────────────────────────────────────────────── */
/* Full width : pas de max-width pour suivre la largeur du container theme.
   Le user veut 100% comme Amazon/Etsy, pas 1440px centré. */
body .lla-shop-page {
    width: 100%;
    margin: 0;
    padding: var(--lla-space-6) var(--lla-space-6) var(--lla-space-12);
    color: var(--lla-color-text);
    font-family: var(--lla-font-sans);
    font-size: var(--lla-fs-base);
    line-height: var(--lla-lh-normal);
}

/* Override des wrappers theme/Elementor qui limiteraient la largeur. */
body.archive.tax-product_cat .entry-content,
body.archive.tax-product_cat .site-main,
body.archive.tax-product_cat .content-area,
body.archive.tax-product_cat .elementor-section-boxed > .elementor-container,
body.post-type-archive-product .entry-content,
body.post-type-archive-product .site-main,
body.post-type-archive-product .content-area,
body.post-type-archive-product .elementor-section-boxed > .elementor-container,
body.woocommerce.archive .entry-content {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ─── 2. Layout flex sidebar + main ──────────────────────────────────────── */
body .lla-shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lla-shop-gap);
    margin-top: var(--lla-space-6);
}
@media (min-width: 1024px) {
    body .lla-shop-layout { grid-template-columns: var(--lla-shop-sidebar-width) 1fr; }
}

/* ─── 3. Sidebar ─────────────────────────────────────────────────────────── */
body .lla-shop-sidebar { background: var(--lla-color-bg); }

/* v1.0.19 : sidebar non-sticky (pattern Cdiscount).
   La sidebar defile avec la page comme du contenu normal. Pas de double
   conteneur scrollable, pas de comportement sticky a fortiori : le scroll
   est completement natif et previsible, ce qui evite les sensations de
   blocage ou de "fil rouge accroche". Reference : Cdiscount, Boulanger,
   ManoMano — tous laissent la sidebar defiler avec la page. */
@media (min-width: 1024px) {
    body .lla-shop-sidebar {
        align-self: start;
        border: 1px solid var(--lla-color-border);
        border-radius: var(--lla-radius-md);
        padding: var(--lla-space-4);
    }
}

@media (max-width: 1023px) {
    body .lla-shop-sidebar {
        position: fixed; top: 0; left: -100%;
        width: 92%; max-width: 380px; height: 100vh;
        z-index: 9999;
        background: var(--lla-color-bg);
        padding: var(--lla-space-4);
        overflow-y: auto;
        overscroll-behavior: contain;
        transition: left var(--lla-transition);
        box-shadow: var(--lla-shadow-lg);
    }
    body .lla-shop-sidebar.is-open { left: 0; }
}

body .lla-shop-sidebar__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: var(--lla-space-4);
    padding-bottom: var(--lla-space-3);
    border-bottom: 1px solid var(--lla-color-border);
}
body .lla-shop-sidebar__title {
    font-family: var(--lla-font-sans) !important;
    font-size: var(--lla-fs-md); font-weight: 600; margin: 0;
    color: var(--lla-color-text);
}
body .lla-shop-sidebar__close {
    background: none; border: 0; cursor: pointer; color: var(--lla-color-text-muted);
    padding: var(--lla-space-1);
}
@media (min-width: 1024px) { body .lla-shop-sidebar__close { display: none; } }

body .lla-shop-sidebar__foot { margin-top: var(--lla-space-4); padding-top: var(--lla-space-3); border-top: 1px solid var(--lla-color-border); }
@media (min-width: 1024px) { body .lla-shop-sidebar__foot { display: none; } }
body .lla-shop-sidebar__apply {
    width: 100%; padding: var(--lla-space-3) var(--lla-space-4);
    background: var(--lla-color-accent); color: #fff !important; border: 0;
    border-radius: var(--lla-radius-md); font-weight: 600; font-size: var(--lla-fs-md);
    cursor: pointer; transition: background var(--lla-transition);
}
body .lla-shop-sidebar__apply:hover { background: var(--lla-color-accent-hover); }

/* ─── 4. Filter section ──────────────────────────────────────────────────── */
body .lla-filter {
    border-bottom: 1px solid var(--lla-color-border);
    padding: var(--lla-space-3) 0;
}
body .lla-filter:last-of-type { border-bottom: 0; }

body .lla-filter__head {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--lla-space-2) 0;
    font-weight: 600; font-size: var(--lla-fs-base);
    color: var(--lla-color-text);
    font-family: var(--lla-font-sans) !important;
}
body .lla-filter__head::-webkit-details-marker { display: none; }
body .lla-filter__chevron { transition: transform var(--lla-transition); flex: 0 0 16px; }
body .lla-filter[open] .lla-filter__chevron { transform: rotate(180deg); }

body .lla-filter__body { padding: var(--lla-space-2) 0; }
body .lla-filter__empty { color: var(--lla-color-text-light); font-size: var(--lla-fs-sm); margin: 0; }

body .lla-filter__list, body .lla-filter__tree, body .lla-filter__drill-list {
    list-style: none !important; margin: 0; padding: 0;
}

body .lla-filter__option {
    display: flex; align-items: center; gap: var(--lla-space-2);
    padding: var(--lla-space-2) 0;
    cursor: pointer; font-size: var(--lla-fs-sm);
    color: var(--lla-color-text-muted);
}
body .lla-filter__option:hover { color: var(--lla-color-text); }
body .lla-filter__option input { margin: 0; cursor: pointer; accent-color: var(--lla-color-accent); }
body .lla-filter__option-name { flex: 1; }
body .lla-filter__option-count, body .lla-filter__drill-count {
    color: var(--lla-color-text-light); font-size: var(--lla-fs-xs);
}

/* ─── 4.b Drill-down catégorie ─────────────────────────────────────────── */
body .lla-filter__drill-bc {
    margin-bottom: var(--lla-space-3);
    padding-bottom: var(--lla-space-2);
    border-bottom: 1px dashed var(--lla-color-border);
    display: flex; flex-wrap: wrap; gap: var(--lla-space-2);
    font-size: var(--lla-fs-xs);
}
body .lla-filter__drill-bc-link {
    color: var(--lla-color-accent); text-decoration: none; font-weight: 500;
}
body .lla-filter__drill-bc-link:hover { text-decoration: underline; }
body .lla-filter__drill-bc-current {
    color: var(--lla-color-text); font-weight: 600;
}

body .lla-filter__drill-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--lla-space-2) 0;
    color: var(--lla-color-text-muted) !important; text-decoration: none !important;
    font-size: var(--lla-fs-sm);
    transition: color var(--lla-transition);
    border-bottom: 1px solid transparent;
}
body .lla-filter__drill-link:hover {
    color: var(--lla-color-accent) !important;
    border-bottom-color: var(--lla-color-accent);
}
body .lla-filter__drill-name { flex: 1; }

/* ─── 4.c Slider de prix ────────────────────────────────────────────────── */
body .lla-filter__price { padding: var(--lla-space-2) 0; }

body .lla-filter__price-slider {
    position: relative; height: 32px; margin: var(--lla-space-3) 0;
}
body .lla-filter__price-track {
    position: absolute; top: 50%; left: 0; right: 0; height: 4px;
    background: var(--lla-color-border); border-radius: 2px;
    transform: translateY(-50%);
}
body .lla-filter__price-fill {
    position: absolute; top: 0; bottom: 0;
    background: var(--lla-color-accent); border-radius: 2px;
}
body .lla-filter__price-handle {
    position: absolute; top: 0; left: 0; right: 0; width: 100%;
    margin: 0; padding: 0; background: transparent;
    -webkit-appearance: none; appearance: none;
    pointer-events: none; height: 32px;
}
body .lla-filter__price-handle::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 18px; height: 18px;
    background: var(--lla-color-accent); border: 2px solid #fff;
    border-radius: 50%; cursor: grab;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
body .lla-filter__price-handle::-moz-range-thumb {
    width: 18px; height: 18px;
    background: var(--lla-color-accent); border: 2px solid #fff;
    border-radius: 50%; cursor: grab;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

body .lla-filter__price-inputs {
    display: flex; align-items: end; gap: var(--lla-space-2);
}
body .lla-filter__price-inputs label {
    display: flex; flex-direction: column; gap: var(--lla-space-1); flex: 1;
    font-size: var(--lla-fs-xs); color: var(--lla-color-text-light);
}
body .lla-filter__price-inputs input {
    padding: var(--lla-space-2) var(--lla-space-3);
    border: 1px solid var(--lla-color-border); border-radius: var(--lla-radius-sm);
    font-size: var(--lla-fs-sm); width: 100%; box-sizing: border-box;
    background: var(--lla-color-bg); color: var(--lla-color-text);
}
body .lla-filter__price-inputs input:focus {
    outline: none; border-color: var(--lla-color-accent);
}
body .lla-filter__price-sep { color: var(--lla-color-text-light); padding-bottom: var(--lla-space-2); }

/* ─── 5. Toolbar ────────────────────────────────────────────────────────── */
body .lla-shop-toolbar {
    display: flex; align-items: center; gap: var(--lla-space-3);
    padding: var(--lla-space-3) 0;
    border-bottom: 1px solid var(--lla-color-border);
    margin-bottom: var(--lla-space-4);
    flex-wrap: wrap;
    font-family: var(--lla-font-sans) !important;
}
body .lla-shop-toolbar__filter-btn {
    display: inline-flex; align-items: center; gap: var(--lla-space-2);
    padding: var(--lla-space-2) var(--lla-space-3);
    background: var(--lla-color-bg); border: 1px solid var(--lla-color-border);
    border-radius: var(--lla-radius-md); cursor: pointer;
    font-size: var(--lla-fs-sm); color: var(--lla-color-text);
    transition: border-color var(--lla-transition);
}
body .lla-shop-toolbar__filter-btn:hover { border-color: var(--lla-color-accent); }
@media (min-width: 1024px) { body .lla-shop-toolbar__filter-btn { display: none; } }

body .lla-shop-toolbar__filter-count {
    background: var(--lla-color-accent); color: #fff !important;
    padding: 0 var(--lla-space-2); border-radius: var(--lla-radius-full);
    font-size: var(--lla-fs-xs); min-width: 18px; text-align: center;
}

body .lla-shop-toolbar__count {
    margin: 0; flex: 1; color: var(--lla-color-text-muted); font-size: var(--lla-fs-sm);
}
body .lla-shop-toolbar__count strong { color: var(--lla-color-text); font-weight: 700; }

body .lla-shop-toolbar__sort { display: flex; align-items: center; gap: var(--lla-space-2); }
body .lla-shop-toolbar__sort-label { font-size: var(--lla-fs-sm); color: var(--lla-color-text-muted); white-space: nowrap; }
body .lla-shop-toolbar__sort-select {
    padding: var(--lla-space-2) var(--lla-space-3);
    border: 1px solid var(--lla-color-border); border-radius: var(--lla-radius-md);
    background: var(--lla-color-bg); color: var(--lla-color-text);
    font-size: var(--lla-fs-sm); cursor: pointer; min-width: 160px;
    font-family: var(--lla-font-sans) !important;
}

/* ─── 6. Active filters chips ──────────────────────────────────────────── */
body .lla-shop-active-filters {
    background: var(--lla-color-bg-soft);
    border-radius: var(--lla-radius-md);
    padding: var(--lla-space-3) var(--lla-space-4);
    margin-bottom: var(--lla-space-4);
}
body .lla-shop-active-filters__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: var(--lla-space-2);
}
body .lla-shop-active-filters__title { font-size: var(--lla-fs-sm); font-weight: 600; color: var(--lla-color-text); }
body .lla-shop-active-filters__reset { color: var(--lla-color-accent); text-decoration: underline; font-size: var(--lla-fs-sm); }
body .lla-shop-active-filters__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: var(--lla-space-2);
}
body .lla-shop-active-filters__chip {
    display: inline-flex; align-items: center; gap: var(--lla-space-1);
    padding: var(--lla-space-1) var(--lla-space-3);
    background: var(--lla-color-bg); border: 1px solid var(--lla-color-border);
    border-radius: var(--lla-radius-full); font-size: var(--lla-fs-xs);
    color: var(--lla-color-text); text-decoration: none;
    transition: border-color var(--lla-transition), color var(--lla-transition);
}
body .lla-shop-active-filters__chip:hover {
    border-color: var(--lla-color-accent); color: var(--lla-color-accent);
}

/* ─── 7. Grid produits ──────────────────────────────────────────────────── */
body .lla-shop-grid,
body ul.products.lla-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lla-space-4);
    list-style: none !important;
    margin: 0; padding: 0;
}
body .lla-shop-grid > li,
body ul.products.lla-shop-grid > li {
    list-style: none !important; margin: 0; padding: 0; width: 100%;
}
body ul.products.lla-shop-grid::before,
body ul.products.lla-shop-grid::after { content: none; display: none; }

@media (min-width: 640px)  { body .lla-shop-grid, body ul.products.lla-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { body .lla-shop-grid, body ul.products.lla-shop-grid { grid-template-columns: repeat(4, 1fr); gap: var(--lla-space-5); } }
@media (min-width: 1440px) { body .lla-shop-grid, body ul.products.lla-shop-grid { grid-template-columns: repeat(5, 1fr); } }

/* ─── 8. Pagination ─────────────────────────────────────────────────────── */
body .lla-shop-pagination { margin: var(--lla-space-8) 0 var(--lla-space-6); }
body .lla-shop-pagination__list {
    display: flex; gap: var(--lla-space-1); justify-content: center;
    list-style: none !important; padding: 0; margin: 0; flex-wrap: wrap;
}
body .lla-shop-pagination__item, body .lla-shop-pagination__prev, body .lla-shop-pagination__next {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 var(--lla-space-2);
    border: 1px solid var(--lla-color-border); background: var(--lla-color-bg);
    color: var(--lla-color-text) !important; text-decoration: none !important; border-radius: var(--lla-radius-sm);
    font-size: var(--lla-fs-sm); transition: border-color var(--lla-transition), color var(--lla-transition);
}
body .lla-shop-pagination__item:hover, body .lla-shop-pagination__prev:hover, body .lla-shop-pagination__next:hover {
    border-color: var(--lla-color-accent); color: var(--lla-color-accent) !important;
}
body .lla-shop-pagination__item--current {
    background: var(--lla-color-accent); color: #fff !important; border-color: var(--lla-color-accent);
}
body .lla-shop-pagination__ellipsis { color: var(--lla-color-text-light); padding: 0 var(--lla-space-2); }

/* ─── 9. Empty state ────────────────────────────────────────────────────── */
body .lla-shop-empty {
    text-align: center; padding: var(--lla-space-12) var(--lla-space-4);
    color: var(--lla-color-text-muted);
}
body .lla-shop-empty__icon { color: var(--lla-color-text-light); margin-bottom: var(--lla-space-3); }
body .lla-shop-empty__title { margin: 0 0 var(--lla-space-2); font-size: var(--lla-fs-xl); color: var(--lla-color-text); font-family: var(--lla-font-sans) !important; }
body .lla-shop-empty__text { margin: 0 0 var(--lla-space-4); font-size: var(--lla-fs-md); }
body .lla-shop-empty__cta {
    display: inline-block; padding: var(--lla-space-3) var(--lla-space-6);
    background: var(--lla-color-accent); color: #fff !important; text-decoration: none !important;
    border-radius: var(--lla-radius-md); font-weight: 600; font-size: var(--lla-fs-md);
    transition: background var(--lla-transition);
}
body .lla-shop-empty__cta:hover { background: var(--lla-color-accent-hover); }

/* ─── 10. Drawer mobile overlay ─────────────────────────────────────────── */
body .lla-shop-overlay {
    position: fixed; inset: 0; background: rgba(45, 36, 25, 0.5);
    z-index: 9998; opacity: 0; pointer-events: none;
    transition: opacity var(--lla-transition);
}
body .lla-shop-overlay.is-visible { opacity: 1; pointer-events: auto; }
@media (min-width: 1024px) { body .lla-shop-overlay { display: none; } }

/* ─── 11. Garde-fou ─────────────────────────────────────────────────────── */
body.archive.tax-product_cat,
body.post-type-archive-product { overflow-x: clip; }

/* ============================================================================
 * SECTIONS SaaS (Supabase) v1.0.6
 * Breadcrumb / Intro hero / Featured facets / Spotlight / SEO footer / FAQ
 * Tous les sélecteurs préfixés "body" pour battre Elementor.
 * ============================================================================ */

/* ─── 12. Breadcrumb ────────────────────────────────────────────────────── */
body .lla-shop-blocks--top { margin-bottom: var(--lla-space-6); }

body .lla-shop-bc {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: var(--lla-space-2);                       /* espace régulier entre items et séparateurs */
    margin: 0 0 var(--lla-space-4) 0;
    padding: 0;
    list-style: none;
    font-size: var(--lla-fs-sm); color: var(--lla-color-text-light);
}
body .lla-shop-bc__item {
    color: var(--lla-color-text-muted) !important;
    text-decoration: none !important;
    transition: color var(--lla-transition);
    padding: 2px 0;
}
body a.lla-shop-bc__item:hover { color: var(--lla-color-accent) !important; }
body .lla-shop-bc__item--current {
    color: var(--lla-color-accent) !important;
    font-weight: 500;
}
body .lla-shop-bc__sep {
    color: var(--lla-color-border-strong);
    display: inline-block;
    line-height: 1;
}

/* ─── 13. Intro (hero + H1 + texte) ─────────────────────────────────────── */
body .lla-shop-intro {
    margin-bottom: var(--lla-space-6);
    border-radius: var(--lla-radius-lg);
    overflow: hidden;
}

body .lla-shop-intro__hero {
    position: relative;
    min-height: 220px;
    background-color: var(--lla-color-bg-soft);
    background-size: cover;
    background-position: center;
    border-radius: var(--lla-radius-lg);
    display: flex; align-items: flex-end;
    padding: var(--lla-space-6);
    margin-bottom: var(--lla-space-5);
}

body .lla-shop-intro__hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(45, 36, 25, 0.0) 0%, rgba(45, 36, 25, 0.55) 100%);
    border-radius: var(--lla-radius-lg);
    pointer-events: none;
}

body .lla-shop-intro__overlay {
    position: relative; z-index: 1;
    margin: 0;
    color: #fff !important;
    font-family: var(--lla-font-serif) !important;
    font-size: var(--lla-fs-2xl);
    font-weight: 500;
    line-height: var(--lla-lh-tight);
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    max-width: 680px;
}

@media (min-width: 1024px) {
    body .lla-shop-intro__hero { min-height: 320px; padding: var(--lla-space-8); }
    body .lla-shop-intro__overlay { font-size: var(--lla-fs-3xl); }
}

body .lla-shop-intro__body { max-width: 820px; }
body .lla-shop-intro__h1 {
    margin: 0 0 var(--lla-space-3) 0;
    font-family: var(--lla-font-serif) !important;
    font-size: var(--lla-fs-3xl);
    font-weight: 600;
    line-height: var(--lla-lh-tight);
    color: var(--lla-color-text);
}
@media (min-width: 1024px) {
    body .lla-shop-intro__h1 { font-size: var(--lla-fs-4xl); }
}
body .lla-shop-intro__text {
    color: var(--lla-color-text-muted);
    font-size: var(--lla-fs-md);
    line-height: var(--lla-lh-relaxed);
}
body .lla-shop-intro__text p { margin: 0 0 var(--lla-space-3) 0; }
body .lla-shop-intro__text p:last-child { margin-bottom: 0; }
body .lla-shop-intro__text strong { color: var(--lla-color-text); font-weight: 600; }
body .lla-shop-intro__text a {
    color: var(--lla-color-accent) !important;
    text-decoration: underline;
}

/* ─── 14. Featured facets (chips horizontaux) ───────────────────────────── */
body .lla-shop-facets {
    margin-bottom: var(--lla-space-5);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lla-color-border-strong) transparent;
    padding-bottom: var(--lla-space-2);
}
body .lla-shop-facets::-webkit-scrollbar { height: 6px; }
body .lla-shop-facets::-webkit-scrollbar-thumb { background: var(--lla-color-border-strong); border-radius: 3px; }

body .lla-shop-facets__list {
    display: flex; flex-wrap: nowrap; gap: var(--lla-space-2);
    list-style: none !important; margin: 0; padding: 0;
}
body .lla-shop-facets__item { flex: 0 0 auto; }

body .lla-shop-facets__chip {
    display: inline-flex; align-items: center; gap: var(--lla-space-1);
    padding: var(--lla-space-2) var(--lla-space-4);
    background: var(--lla-color-bg);
    border: 1px solid var(--lla-color-border);
    border-radius: var(--lla-radius-full);
    color: var(--lla-color-text) !important;
    text-decoration: none !important;
    font-size: var(--lla-fs-sm); font-weight: 500;
    white-space: nowrap;
    transition: border-color var(--lla-transition), background var(--lla-transition);
}
body .lla-shop-facets__chip:hover {
    border-color: var(--lla-color-accent);
    background: var(--lla-color-accent-soft);
}
body .lla-shop-facets__chip.is-active {
    background: var(--lla-color-accent);
    border-color: var(--lla-color-accent);
    color: #fff !important;
}
body .lla-shop-facets__count {
    color: var(--lla-color-text-light);
    font-size: var(--lla-fs-xs);
}
body .lla-shop-facets__chip.is-active .lla-shop-facets__count { color: rgba(255,255,255,0.85); }
body .lla-shop-facets__remove { font-size: var(--lla-fs-md); line-height: 1; margin-left: var(--lla-space-1); }

/* ─── 15. Bottom blocks wrapper ─────────────────────────────────────────── */
body .lla-shop-blocks--bottom {
    margin-top: var(--lla-space-12);
    padding-top: var(--lla-space-8);
    border-top: 1px solid var(--lla-color-border);
}

/* ─── 16. Spotlight artisan ─────────────────────────────────────────────── */
body .lla-shop-spotlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lla-space-6);
    margin-bottom: var(--lla-space-12);
    padding: var(--lla-space-6);
    background: var(--lla-color-bg-soft);
    border-radius: var(--lla-radius-lg);
}
@media (min-width: 768px) {
    body .lla-shop-spotlight {
        grid-template-columns: 350px 1fr;
        align-items: stretch;
        padding: var(--lla-space-8);
    }
}

body .lla-shop-spotlight__photo {
    width: 100%; aspect-ratio: 4 / 5;
    border-radius: var(--lla-radius-md);
    object-fit: cover;
    background: var(--lla-color-border);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
body .lla-shop-spotlight__photo img {
    width: 100%; height: 100%; object-fit: cover;
}
body .lla-shop-spotlight__photo-initials {
    font-family: var(--lla-font-serif) !important;
    font-size: var(--lla-fs-4xl);
    color: var(--lla-color-accent);
    font-weight: 600;
}

body .lla-shop-spotlight__body {
    display: flex; flex-direction: column;
    gap: var(--lla-space-3);
}
body .lla-shop-spotlight__eyebrow {
    text-transform: uppercase; letter-spacing: 1.5px;
    font-size: var(--lla-fs-xs); font-weight: 700;
    color: var(--lla-color-accent);
    margin: 0;
}
body .lla-shop-spotlight__title,
body .lla-shop-spotlight h2,
body .lla-shop-spotlight h3 {
    font-family: var(--lla-font-serif) !important;
    font-size: var(--lla-fs-2xl);
    font-weight: 600;
    margin: 0;
    color: var(--lla-color-text);
    line-height: var(--lla-lh-tight);
}
body .lla-shop-spotlight__bio {
    color: var(--lla-color-text-muted);
    line-height: var(--lla-lh-relaxed);
    margin: 0;
}
body .lla-shop-spotlight__quote {
    border-left: 3px solid var(--lla-color-accent);
    padding-left: var(--lla-space-3);
    font-style: italic;
    color: var(--lla-color-text);
    margin: 0;
}

body .lla-shop-spotlight__products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lla-space-2);
    margin-top: var(--lla-space-2);
}
@media (min-width: 640px) {
    body .lla-shop-spotlight__products { grid-template-columns: repeat(4, 1fr); }
}

body .lla-shop-spotlight__thumb,
body .lla-shop-spotlight__thumb-link {
    position: relative; display: block;
    width: 100%; aspect-ratio: 1;
    border-radius: var(--lla-radius-sm);
    overflow: hidden;
    background: var(--lla-color-border);
    text-decoration: none !important;
}
body .lla-shop-spotlight__thumb img,
body .lla-shop-spotlight__thumb-link img {
    width: 100%; height: 100%; object-fit: cover;
}
body .lla-shop-spotlight__thumb-price {
    position: absolute; bottom: var(--lla-space-1); left: var(--lla-space-1);
    background: rgba(255,255,255,0.92); color: var(--lla-color-text);
    padding: 2px var(--lla-space-1);
    border-radius: var(--lla-radius-sm);
    font-size: var(--lla-fs-xs); font-weight: 700;
}
body .lla-shop-spotlight__thumb-badge {
    position: absolute; top: var(--lla-space-1); right: var(--lla-space-1);
    background: var(--lla-color-accent); color: #fff;
    padding: 2px 6px; border-radius: var(--lla-radius-sm);
    font-size: 10px; font-weight: 700;
}

/* ─── Performance & CLS defenses (v1.0.24) ─────────────────────────────────
   Verrouille l'aspect-ratio des images de carte produit meme si le wrapper
   .lla-card-image-wrapper venait a manquer (defense en profondeur). Empeche
   le saut de layout pendant le chargement des images en cas de cache miss
   ou de chargement progressif. */
body img.lla-card-image,
body .lla-card-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Reserve la hauteur du H1 catégorie pour eviter le decalage du layout
   quand Cormorant Garamond swap apres le fallback. Combine avec les
   font-fallback metrics injectees par AssetEnqueue. */
body .lla-shop-intro__h1 {
    min-height: 1.2em;
}

body .lla-shop-spotlight__cta {
    display: inline-block;
    padding: var(--lla-space-2) var(--lla-space-5);
    background: var(--lla-color-accent); color: #fff !important;
    border-radius: var(--lla-radius-md);
    text-decoration: none !important;
    font-weight: 600; font-size: var(--lla-fs-sm);
    transition: background var(--lla-transition);
    align-self: flex-start;
    margin-top: var(--lla-space-2);
}
body .lla-shop-spotlight__cta:hover { background: var(--lla-color-accent-hover); }

/* ─── 17. SEO footer ───────────────────────────────────────────────────── */
body .lla-shop-seo-footer {
    margin-bottom: var(--lla-space-12);
    max-width: 880px;
}
body .lla-shop-seo-footer__title {
    font-family: var(--lla-font-serif) !important;
    font-size: var(--lla-fs-2xl);
    font-weight: 600; margin: 0 0 var(--lla-space-4) 0;
    color: var(--lla-color-text);
}
body .lla-shop-seo-footer__body {
    color: var(--lla-color-text-muted);
    font-size: var(--lla-fs-md); line-height: var(--lla-lh-relaxed);
}
body .lla-shop-seo-footer__body h2 {
    font-family: var(--lla-font-serif) !important;
    font-size: var(--lla-fs-xl); font-weight: 600;
    margin: var(--lla-space-6) 0 var(--lla-space-3) 0;
    color: var(--lla-color-text);
}
body .lla-shop-seo-footer__body h3 {
    font-family: var(--lla-font-sans) !important;
    font-size: var(--lla-fs-lg); font-weight: 600;
    margin: var(--lla-space-4) 0 var(--lla-space-2) 0;
    color: var(--lla-color-text);
}
body .lla-shop-seo-footer__body p { margin: 0 0 var(--lla-space-3) 0; }
body .lla-shop-seo-footer__body ul { padding-left: var(--lla-space-5); margin: var(--lla-space-2) 0 var(--lla-space-3) 0; }
body .lla-shop-seo-footer__body li { margin-bottom: var(--lla-space-1); }
body .lla-shop-seo-footer__body strong { color: var(--lla-color-text); font-weight: 600; }
body .lla-shop-seo-footer__body a {
    color: var(--lla-color-accent) !important;
    text-decoration: underline;
}

/* ─── 18. FAQ accordéon ────────────────────────────────────────────────── */
body .lla-shop-faq { max-width: 880px; }

body .lla-shop-faq__title {
    font-family: var(--lla-font-serif) !important;
    font-size: var(--lla-fs-2xl); font-weight: 600;
    margin: 0 0 var(--lla-space-4) 0;
    color: var(--lla-color-text);
    text-align: center;
}

body .lla-shop-faq__items {
    display: flex; flex-direction: column;
    gap: var(--lla-space-2);
}

body .lla-shop-faq__item {
    border: 1px solid var(--lla-color-border);
    border-radius: var(--lla-radius-md);
    background: var(--lla-color-bg);
    overflow: hidden;
    transition: border-color var(--lla-transition);
}
body .lla-shop-faq__item[open] { border-color: var(--lla-color-accent); }

body .lla-shop-faq__question {
    list-style: none !important;
    cursor: pointer;
    padding: var(--lla-space-4) var(--lla-space-5);
    font-weight: 600;
    color: var(--lla-color-text);
    font-size: var(--lla-fs-md);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--lla-space-3);
    font-family: var(--lla-font-sans) !important;
    line-height: var(--lla-lh-normal);
}
body .lla-shop-faq__question::-webkit-details-marker { display: none; }
body .lla-shop-faq__question::after {
    content: '+'; flex: 0 0 24px;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--lla-color-border);
    border-radius: 50%;
    color: var(--lla-color-accent);
    font-size: 18px; font-weight: 400; line-height: 1;
    transition: transform var(--lla-transition), background var(--lla-transition), color var(--lla-transition);
}
body .lla-shop-faq__item[open] .lla-shop-faq__question::after {
    content: '−';
    background: var(--lla-color-accent);
    color: #fff;
    border-color: var(--lla-color-accent);
}

body .lla-shop-faq__answer {
    padding: 0 var(--lla-space-5) var(--lla-space-4);
    color: var(--lla-color-text-muted);
    line-height: var(--lla-lh-relaxed);
}
body .lla-shop-faq__answer p { margin: 0 0 var(--lla-space-2) 0; }
body .lla-shop-faq__answer p:last-child { margin-bottom: 0; }
body .lla-shop-faq__answer strong { color: var(--lla-color-text); font-weight: 600; }

/* ─── 19. Bonus : Polish global des composants Shop ─────────────────────── */
/* Empêcher le fond du theme Hostinger d'écraser nos sections */
body .lla-shop-page * { box-sizing: border-box; }

/* Focus visible accessible partout */
body .lla-shop-page a:focus-visible,
body .lla-shop-page button:focus-visible,
body .lla-shop-page input:focus-visible,
body .lla-shop-page select:focus-visible {
    outline: 2px solid var(--lla-color-accent);
    outline-offset: 2px;
}
