  /* ============================================================ */
  /* THÈME : EDITORIAL (style magazine moderne)                   */
  /* Bannière 100vh plein écran, menu fluide, typo display         */
  /* ============================================================ */
  body.theme-editorial {
    --radius: 0;
    --radius-lg: 0;
  }
  /* Bannière hero qui prend toute la hauteur de l'écran */
  body.theme-editorial .lv-banner {
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: none !important;
    border-radius: 0;
    margin-top: 0;
  }
  /* Overlay sombre pour assurer la lisibilité du titre ET du menu */
  body.theme-editorial .lv-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.45) 100%) !important;
    pointer-events: none;
    z-index: 0;
  }
  /* Overlay aussi sur bannière gradient (sans image) */
  body.theme-editorial .lv-banner.gradient {
    background: linear-gradient(135deg, #1c1917 0%, #44403c 100%) !important;
  }
  body.theme-editorial .lv-banner-content {
    position: relative;
    z-index: 2;
    /* On laisse le centrage du parent flex faire son travail, pas de height:100% */
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
  }
  body.theme-editorial .lv-hero-title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: clamp(48px, 9vw, 120px) !important;
    line-height: 0.95 !important;
    font-weight: 300 !important;
    letter-spacing: -0.03em !important;
    color: white !important;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    margin-bottom: 24px;
  }
  body.theme-editorial .lv-hero-title em {
    font-style: italic;
    font-weight: 400;
  }
  body.theme-editorial .lv-hero-subtitle {
    font-size: 14px !important;
    color: white !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
    margin-bottom: 40px !important;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  }
  body.theme-editorial .lv-hero-cta {
    border-radius: 0;
    padding: 18px 44px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    background: white;
    color: #1c1917;
    border: 1px solid white;
  }
  body.theme-editorial .lv-hero-cta:hover {
    background: transparent;
    color: white;
  }
  /* Menu transparent qui flotte au-dessus de la bannière */
  body.theme-editorial .shop-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease, border-color 0.3s ease, top 0.3s ease;
    z-index: 100;
  }
  /* Quand la banderolle promo est active, la fixer en haut et décaler le menu en dessous */
  body.theme-editorial.has-promo-banner .promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
  }
  body.theme-editorial.has-promo-banner .shop-nav {
    top: 38px; /* ≈ hauteur de la banderolle (9px padding × 2 + ~18px texte + bordure) */
  }
  /* La bannière hero doit également se décaler pour ne pas être cachée par la banderolle fixée */
  body.theme-editorial.has-promo-banner .lv-banner {
    margin-top: 38px;
    min-height: calc(100vh - 38px) !important;
    height: calc(100vh - 38px) !important;
  }
  /* Gradient de protection en haut pour la lisibilité du menu */
  body.theme-editorial .shop-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    bottom: -20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s ease;
  }
  body.theme-editorial.nav-scrolled .shop-nav::before {
    opacity: 0;
  }
  body.theme-editorial .lv-nav-links-left a,
  body.theme-editorial .lv-shop-name,
  body.theme-editorial .lv-shop-name-mode-name,
  body.theme-editorial .lv-name-text,
  body.theme-editorial .lv-nav-link-icon,
  body.theme-editorial .nav-cart-btn {
    color: white !important;
  }
  /* Burger lui-même sur Editorial : fond et bordure adaptés au menu transparent */
  body.theme-editorial .mobile-nav-toggle {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(4px);
  }
  body.theme-editorial .mobile-nav-toggle span {
    background: white !important;
  }
  /* Quand le user scroll, le menu devient blanc opaque */
  body.theme-editorial.nav-scrolled .shop-nav {
    background: rgba(255,255,255,0.96) !important;
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(0,0,0,0.08);
  }
  body.theme-editorial.nav-scrolled .lv-nav-links-left a,
  body.theme-editorial.nav-scrolled .lv-shop-name,
  body.theme-editorial.nav-scrolled .lv-shop-name-mode-name,
  body.theme-editorial.nav-scrolled .lv-name-text,
  body.theme-editorial.nav-scrolled .lv-nav-link-icon,
  body.theme-editorial.nav-scrolled .nav-cart-btn {
    color: #1c1917 !important;
  }
  /* Burger après scroll : retrouve un look standard */
  body.theme-editorial.nav-scrolled .mobile-nav-toggle {
    background: var(--bg) !important;
    border-color: var(--line) !important;
    backdrop-filter: none;
  }
  body.theme-editorial.nav-scrolled .mobile-nav-toggle span {
    background: #1c1917 !important;
  }
  /* Drawer mobile ouvert sur Editorial : fond blanc + liens en noir lisibles */
  body.theme-editorial .lv-nav-links-left.open {
    background: white !important;
  }
  body.theme-editorial .lv-nav-links-left.open a,
  body.theme-editorial .lv-nav-links-left.open .mega-menu-trigger,
  body.theme-editorial .lv-nav-links-left.open .mega-menu-title,
  body.theme-editorial .lv-nav-links-left.open .mega-menu-subs a,
  body.theme-editorial .lv-nav-links-left.open .mega-menu-footer a {
    color: #1c1917 !important;
  }
  /* Quand le drawer Editorial est ouvert, le fond du drawer est blanc.
     Le burger/croix doit donc avoir un look standard (fond blanc, X noir) */
  body.theme-editorial.drawer-open .mobile-nav-toggle {
    background: var(--bg) !important;
    border-color: var(--line) !important;
    backdrop-filter: none;
  }
  /* Le X de fermeture du hamburger doit aussi être noir quand le drawer est ouvert */
  body.theme-editorial .mobile-nav-toggle.is-open span {
    background: #1c1917 !important;
  }
  /* Le burger Editorial reste dans la nav (fixed top:0 ou top:38px avec banderolle),
     donc la croix suit naturellement la position du burger sans override. */
  /* Le panel du mega-menu (déroulant) a un fond blanc, donc le texte doit rester noir */
  /* peu importe la couleur du menu principal (qui est blanc sur Editorial) */
  body.theme-editorial .mega-menu-panel,
  body.theme-editorial .mega-menu-panel a,
  body.theme-editorial .mega-menu-panel .mega-menu-title,
  body.theme-editorial .mega-menu-panel .mega-menu-subs a,
  body.theme-editorial .mega-menu-panel .mega-menu-footer a {
    color: #1c1917 !important;
  }
  /* Compenser le menu fixed : ajouter padding-top quand pas de bannière hero */
  body.theme-editorial #shop-container {
    padding-top: 0;
  }
  /* Titres sections : énormes, serif, légers */
  body.theme-editorial h2,
  body.theme-editorial .section-header h2,
  body.theme-editorial .featured-section h2,
  body.theme-editorial .about-section h2,
  body.theme-editorial .section-title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: clamp(38px, 5vw, 72px) !important;
    font-weight: 300 !important;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
  }
  body.theme-editorial h2 em,
  body.theme-editorial .section-title em {
    font-style: italic;
    font-weight: 400;
  }
  /* Cards produits : sans bordure ni ombre, image plein cadre */
  body.theme-editorial .product-card-premium {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  body.theme-editorial .product-card-premium:hover {
    box-shadow: none;
  }
  body.theme-editorial .product-card-premium .media {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-subtle);
  }
  body.theme-editorial .product-card-premium .img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  body.theme-editorial .product-card-premium .meta {
    padding: 14px 14px 12px;
    text-align: left;
  }
  body.theme-editorial .product-card-premium .name {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
  }
  body.theme-editorial .product-card-premium .price {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  /* Grille produits uniforme (comme classique) */
  body.theme-editorial .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
  }
  @media (max-width: 760px) {
    body.theme-editorial .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    body.theme-editorial .lv-banner {
      height: 100vh !important;
      min-height: 100vh !important;
    }
    /* Sur mobile : remonter le contenu du hero pour compenser la perception visuelle */
    body.theme-editorial .lv-banner-content {
      padding-top: 0;
      transform: translateY(-8%);
    }
  }
  /* Section "Notre histoire" */
  body.theme-editorial .about-section {
    background: white;
    padding: 120px 0;
  }
  body.theme-editorial .lv-story-image {
    border-radius: 0;
  }
  /* Categories cards : carrées, sans arrondi */
  body.theme-editorial .lv-cat-card {
    border-radius: 0;
    aspect-ratio: 3 / 4;
  }
  body.theme-editorial .lv-cat-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    letter-spacing: 0;
    font-size: 28px;
  }
  body.theme-editorial .lv-cat-card-cta {
    display: none;
  }
  /* CTAs et boutons : rectangulaires, lettres espacées */
  body.theme-editorial .filter-pill,
  body.theme-editorial .cat-filter,
  body.theme-editorial .cat-filter-sub,
  body.theme-editorial .section-link {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 500;
  }
  body.theme-editorial .product-search {
    border-radius: 0;
    border-width: 0 0 1px 0;
    background: transparent;
    border-color: rgba(0,0,0,0.15);
  }
  body.theme-editorial .badge-corner,
  body.theme-editorial .badge-new {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 9px;
    font-weight: 600;
  }

  /* ============================================================ */
  /* THÈME : BOUTIQUE (luxe, raffiné, beaucoup de blanc)          */
  /* ============================================================ */
  body.theme-boutique {
    --radius: 0;
    --radius-lg: 0;
    background: #fbfaf8;
  }
  body.theme-boutique .shop-nav {
    background: rgba(251, 250, 248, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  body.theme-boutique .lv-shop-name {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 300;
    letter-spacing: 0.04em;
    font-size: 22px !important;
  }
  body.theme-boutique .lv-nav-links-left a {
    font-size: 12px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase;
    font-weight: 400 !important;
  }
  body.theme-boutique .lv-banner {
    border-radius: 0;
    min-height: 70vh;
  }
  body.theme-boutique .lv-banner-content {
    text-align: center;
    align-items: center;
  }
  body.theme-boutique .lv-hero-title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 300 !important;
    letter-spacing: -0.02em !important;
    font-size: clamp(40px, 6vw, 88px) !important;
  }
  body.theme-boutique .lv-hero-title em {
    font-style: italic;
    font-weight: 300;
  }
  body.theme-boutique .lv-hero-subtitle {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.85;
  }
  body.theme-boutique .lv-hero-cta {
    border-radius: 0;
    padding: 16px 48px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 11px;
    background: transparent;
    border: 1px solid white;
    color: white;
  }
  body.theme-boutique .lv-hero-cta:hover {
    background: white;
    color: #1c1917;
  }
  body.theme-boutique h2,
  body.theme-boutique .section-header h2,
  body.theme-boutique .featured-section h2,
  body.theme-boutique .about-section h2 {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 300 !important;
    letter-spacing: -0.01em !important;
    text-align: center;
  }
  body.theme-boutique h2 em {
    font-style: italic;
  }
  body.theme-boutique .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  body.theme-boutique .section-header .eyebrow {
    letter-spacing: 0.3em;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.7;
  }
  /* Cards produits style luxe : image plein cadre, infos centrées sous */
  body.theme-boutique .product-card-premium {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  body.theme-boutique .product-card-premium:hover {
    box-shadow: none;
  }
  body.theme-boutique .product-card-premium .media {
    aspect-ratio: 4 / 5;
    background: white;
    overflow: hidden;
  }
  body.theme-boutique .product-card-premium .meta {
    padding: 18px 14px 12px;
    text-align: center;
  }
  body.theme-boutique .product-card-premium .name {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
  }
  body.theme-boutique .product-card-premium .price {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.18em;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 6px;
  }
  body.theme-boutique .product-grid {
    gap: 40px 24px;
  }
  body.theme-boutique .lv-cat-card {
    border-radius: 0;
  }
  body.theme-boutique .lv-cat-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    letter-spacing: 0.04em;
  }
  body.theme-boutique .filter-pill,
  body.theme-boutique .cat-filter,
  body.theme-boutique .cat-filter-sub,
  body.theme-boutique .section-link {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    font-weight: 400;
  }
  body.theme-boutique .product-search {
    border-radius: 0;
    border-width: 0 0 1px 0;
    background: transparent;
  }
  body.theme-boutique .badge-corner,
  body.theme-boutique .badge-new {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 9px;
    font-weight: 500;
  }
  body.theme-boutique .about-section,
  body.theme-boutique .featured-section {
    background: #fbfaf8;
    padding: 100px 0;
  }
  body.theme-boutique .lv-story-image {
    border-radius: 0;
  }
  body.theme-boutique .shop-footer {
    background: #1c1917;
    color: #d6d3d1;
    padding: 80px 0 40px;
  }
  body.theme-boutique .shop-footer h4 {
    color: white;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
  }

  /* ============================================================ */
  /* THÈME : BOLD (Gen Z, vibrant, gradients, énergique)          */
  /* ============================================================ */
  body.theme-bold {
    --radius: 20px;
    --radius-lg: 28px;
    background: #ffffff;
  }
  body.theme-bold .shop-nav {
    background: white;
    border-bottom: none;
    padding: 14px 24px;
  }
  body.theme-bold .lv-shop-name,
  body.theme-bold .lv-name-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    font-size: 24px !important;
    background: linear-gradient(135deg, #f43f5e 0%, #a855f7 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
  }
  body.theme-bold .lv-nav-links-left a {
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
    font-size: 14px !important;
    color: #1c1917 !important;
  }
  body.theme-bold .lv-nav-links-left a:hover {
    opacity: 1;
    color: #f43f5e !important;
  }
  body.theme-bold .lv-banner {
    border-radius: 28px;
    margin: 8px;
    overflow: hidden;
    min-height: 72vh;
  }
  body.theme-bold .lv-banner.gradient {
    background: linear-gradient(135deg, #f43f5e 0%, #f97316 25%, #a855f7 75%, #3b82f6 100%) !important;
  }
  body.theme-bold .lv-banner-content {
    text-align: center;
  }
  body.theme-bold .lv-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
    font-size: clamp(48px, 11vw, 144px) !important;
    line-height: 0.9 !important;
    color: white !important;
    text-shadow: 0 4px 30px rgba(0,0,0,0.2);
  }
  body.theme-bold .lv-hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, #fef08a 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  body.theme-bold .lv-hero-subtitle {
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
    margin-bottom: 32px !important;
  }
  body.theme-bold .lv-hero-cta {
    border-radius: 100px;
    padding: 18px 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    font-size: 15px;
    background: white;
    color: #1c1917;
    border: none;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  body.theme-bold .lv-hero-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    background: white;
    color: #1c1917;
  }
  body.theme-bold h2,
  body.theme-bold .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    font-size: clamp(36px, 5vw, 64px) !important;
    line-height: 1 !important;
  }
  body.theme-bold h2 em,
  body.theme-bold .section-title em {
    font-style: normal;
    background: linear-gradient(135deg, #f43f5e 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  body.theme-bold .section-eyebrow {
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 14px;
    color: #f43f5e;
  }
  body.theme-bold .product-card-premium {
    border-radius: 20px;
    border: none;
    background: #fafaf9;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.theme-bold .product-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  }
  body.theme-bold .product-card-premium .media {
    border-radius: 16px;
    margin: 8px;
    overflow: hidden;
  }
  body.theme-bold .product-card-premium .meta {
    padding: 8px 16px 18px;
  }
  body.theme-bold .product-card-premium .name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
  }
  body.theme-bold .product-card-premium .price {
    font-weight: 700;
    color: #1c1917;
    font-size: 15px;
  }
  body.theme-bold .lv-cat-card {
    border-radius: 20px;
  }
  body.theme-bold .filter-pill,
  body.theme-bold .cat-filter,
  body.theme-bold .cat-filter-sub,
  body.theme-bold .section-link {
    border-radius: 100px;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 13px;
    font-weight: 700;
  }
  body.theme-bold .cat-filter.active {
    background: linear-gradient(135deg, #f43f5e 0%, #a855f7 100%);
    color: white;
    border-color: transparent;
  }
  body.theme-bold .product-search {
    border-radius: 100px;
    padding: 14px 22px;
    background: #fafaf9;
    border-color: #fafaf9;
    font-weight: 500;
  }
  body.theme-bold .badge-corner,
  body.theme-bold .badge-new {
    border-radius: 100px;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #f43f5e 0%, #a855f7 100%);
    color: white;
  }

  /* ============================================================ */
  /* THÈME : STUDIO (créatif, design portfolio, asymétrique)      */
  /* ============================================================ */
  body.theme-studio {
    --radius: 0;
    --radius-lg: 0;
    background: #f8f7f3;
  }
  body.theme-studio .shop-nav {
    background: #f8f7f3;
    border-bottom: 2px solid #1c1917;
  }
  body.theme-studio .lv-shop-name,
  body.theme-studio .lv-name-text {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    font-size: 26px !important;
    font-style: italic;
  }
  body.theme-studio .lv-nav-links-left a {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 400 !important;
    font-style: italic;
    text-transform: lowercase !important;
    font-size: 17px !important;
    letter-spacing: 0 !important;
  }
  body.theme-studio .lv-banner {
    border-radius: 0;
    min-height: 85vh;
    margin: 16px;
    overflow: hidden;
    border: 2px solid #1c1917;
  }
  body.theme-studio .lv-banner.gradient {
    background: #ffd803 !important;
  }
  body.theme-studio .lv-banner-content {
    text-align: left;
    max-width: 800px;
    padding: 0 60px;
  }
  body.theme-studio .lv-hero-title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: clamp(56px, 11vw, 160px) !important;
    line-height: 0.85 !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
    color: #1c1917 !important;
    text-shadow: none;
  }
  body.theme-studio .lv-banner.has-image .lv-hero-title {
    color: white !important;
  }
  body.theme-studio .lv-hero-title em {
    font-style: italic;
    font-weight: 400;
  }
  body.theme-studio .lv-hero-subtitle {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: 22px !important;
    font-style: italic;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 36px !important;
    color: #1c1917 !important;
    opacity: 1 !important;
  }
  body.theme-studio .lv-banner.has-image .lv-hero-subtitle {
    color: white !important;
  }
  body.theme-studio .lv-hero-cta {
    border-radius: 0;
    padding: 16px 36px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    font-size: 16px;
    font-style: italic;
    background: #1c1917;
    color: #ffd803;
    border: 2px solid #1c1917;
  }
  body.theme-studio .lv-hero-cta:hover {
    background: #ffd803;
    color: #1c1917;
  }
  body.theme-studio h2,
  body.theme-studio .section-title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 900 !important;
    font-size: clamp(40px, 6vw, 80px) !important;
    letter-spacing: -0.04em !important;
    line-height: 0.95 !important;
  }
  body.theme-studio h2 em,
  body.theme-studio .section-title em {
    font-style: italic;
    font-weight: 400;
  }
  body.theme-studio .section-eyebrow {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: lowercase;
    color: #1c1917;
  }
  body.theme-studio .product-card-premium {
    border-radius: 0;
    border: 2px solid #1c1917;
    background: white;
    transition: transform 0.18s ease;
  }
  body.theme-studio .product-card-premium:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #1c1917;
  }
  body.theme-studio .product-card-premium .media {
    aspect-ratio: 1 / 1;
    border-bottom: 2px solid #1c1917;
  }
  body.theme-studio .product-card-premium .meta {
    padding: 14px 16px;
  }
  body.theme-studio .product-card-premium .name {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 17px;
    font-style: italic;
  }
  body.theme-studio .product-card-premium .price {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    font-size: 18px;
    color: #1c1917;
  }
  body.theme-studio .lv-cat-card {
    border-radius: 0;
    border: 2px solid #1c1917;
    transition: transform 0.18s ease;
  }
  body.theme-studio .lv-cat-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #1c1917;
  }
  body.theme-studio .lv-cat-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.02em;
  }
  body.theme-studio .filter-pill,
  body.theme-studio .cat-filter,
  body.theme-studio .cat-filter-sub,
  body.theme-studio .section-link {
    border-radius: 0;
    border: 2px solid #1c1917;
    background: white;
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    text-transform: lowercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
  }
  body.theme-studio .cat-filter.active {
    background: #ffd803;
    color: #1c1917;
  }
  body.theme-studio .product-search {
    border-radius: 0;
    border: 2px solid #1c1917;
    background: white;
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
  }
  body.theme-studio .badge-corner,
  body.theme-studio .badge-new {
    border-radius: 0;
    border: 2px solid #1c1917;
    background: #ffd803;
    color: #1c1917;
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    text-transform: lowercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
  }

  /* ============================================================
     THEME: FLOATING (Pill Glassmorphism - inspiration luxe/agency)
     ============================================================
     Navigation : pill noire flottante avec backdrop-blur
     Cards : encadrées de la même manière, légèrement floating
     ============================================================ */

  body.theme-floating {
    background: var(--bg);
  }

  /* Nav : pill flottante au-dessus de l'image hero */
  body.theme-floating .shop-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    background: rgba(20, 18, 16, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 12px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
  }
  /* Quand on scroll : la pill se transforme en barre fine collée en haut */
  body.theme-floating.nav-scrolled .shop-nav {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(200, 161, 101, 0.2) !important;
    padding: 10px 24px !important;
    background: rgba(15, 13, 12, 0.92) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  /* Si banner promo : abaisser la pill */
  body.theme-floating.has-promo-banner .shop-nav {
    top: 56px;
  }
  body.theme-floating.has-promo-banner.nav-scrolled .shop-nav {
    top: 0 !important;
  }
  /* Mobile : équilibrer haut/bas */
  @media (max-width: 760px) {
    body.theme-floating.has-promo-banner .shop-nav {
      top: 50px;
    }
  }

  /* Couleur du contenu de la nav : blanc avec opacity */
  body.theme-floating .shop-nav,
  body.theme-floating .shop-nav a,
  body.theme-floating .shop-nav button,
  body.theme-floating .lv-shop-name {
    color: #fff;
  }
  body.theme-floating .lv-nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
  }
  body.theme-floating .lv-nav-link:hover {
    opacity: 0.7;
  }
  body.theme-floating .lv-nav-link-icon {
    color: #fff;
  }
  body.theme-floating .lv-nav-link-icon:hover {
    opacity: 0.7;
  }
  /* Le bouton hamburger devient un cercle doré flottant à droite */
  body.theme-floating .mobile-menu-toggle {
    background: linear-gradient(135deg, #d4a574 0%, #b8864e 100%);
    border-radius: 100px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 12px rgba(184, 134, 78, 0.4);
  }
  body.theme-floating .mobile-menu-toggle span {
    background: var(--floating-deep);
    height: 2px;
  }
  /* Quand le menu mobile est ouvert, on cache le hamburger natif (Floating gère son propre close) */
  body.theme-floating .mobile-menu-toggle.is-open {
    background: linear-gradient(135deg, #d4a574 0%, #b8864e 100%);
    border-color: rgba(255,255,255,0.4);
  }
  body.theme-floating .mobile-menu-toggle.is-open span {
    background: var(--floating-deep);
  }
  /* Push le contenu en bas pour que le hero soit visible derrière la nav */
  body.theme-floating .shop-main {
    padding-top: 0;
  }
  body.theme-floating .lv-hero,
  body.theme-floating .shop-hero {
    margin-top: 0;
  }

  /* Cards produits encadrées style pill (border-radius coordonné) */
  body.theme-floating .product-card-premium {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  }
  body.theme-floating .product-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.12);
  }
  body.theme-floating .product-card-premium .media {
    border-radius: 0;
  }
  body.theme-floating .product-card-premium .img {
    border-radius: 0;
  }
  /* Sections (coup de cœur, story, etc.) avec wrappers stylés */
  body.theme-floating .lv-featured-section,
  body.theme-floating .custom-section {
    background: var(--bg);
  }
  /* Boutons primaires : style pill aussi */
  body.theme-floating .btn-primary {
    border-radius: 100px;
    padding: 14px 28px;
    background: #1a1410;
    color: #fff;
    border: none;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  body.theme-floating .btn-primary:hover {
    background: #2c2620;
  }

  /* Filtres catégories : pills */
  body.theme-floating .cat-filter {
    border-radius: 100px;
    padding: 8px 18px;
    border: 1px solid var(--line);
    background: var(--bg);
    font-weight: 500;
  }
  body.theme-floating .cat-filter.active {
    background: #1a1410;
    color: #fff;
    border-color: #1a1410;
  }

  /* Search bar produits aussi en pill */
  body.theme-floating .product-search {
    border-radius: 100px;
    padding: 12px 20px;
  }

  /* Mobile : la pill reste lisible */
  @media (max-width: 760px) {
    body.theme-floating .shop-nav {
      /* Pas de transform translateX : on utilise left/right pour éviter le saut au scroll */
      top: 14px;
      left: 14px !important;
      right: 14px !important;
      transform: none !important;
      width: auto !important;
      max-width: none !important;
      padding: 10px 16px;
    }
    body.theme-floating.has-promo-banner .shop-nav {
      top: 50px;
    }
    /* Au scroll : full-width sans transform non plus */
    body.theme-floating.nav-scrolled .shop-nav {
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      transform: none !important;
    }
  }

  /* ============================================================
     THEME FLOATING : améliorations avancées pour distinctivité
     ============================================================ */

  /* Couleur accent doré pour le thème (réutilisable) */
  body.theme-floating {
    --floating-gold: #c8a165;
    --floating-gold-dark: #8b6332;
    --floating-deep: #1a1410;
    --floating-cream: #f5ebd9;
  }

  /* === HERO : ajout d'un overlay sombre élégant en haut === */
  body.theme-floating .lv-hero::after,
  body.theme-floating .shop-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* === TYPOGRAPHIE LUXE === */
  body.theme-floating .lv-hero-title,
  body.theme-floating .shop-hero h1,
  body.theme-floating .lv-story-title,
  body.theme-floating .custom-section-title,
  body.theme-floating .lv-featured-title {
    font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.05;
  }
  body.theme-floating .lv-story-eyebrow,
  body.theme-floating .custom-section-eyebrow,
  body.theme-floating .lv-featured-eyebrow {
    color: var(--floating-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 600;
  }

  /* === NAV : améliorations typographiques === */
  body.theme-floating .lv-nav-link {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  body.theme-floating .lv-shop-name {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-size: 18px;
  }
  /* Logo apparence un peu plus brillante avec effet inset */
  body.theme-floating .lv-shop-name img,
  body.theme-floating .lv-shop-name svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  }

  /* === DROPDOWN MOBILE FLOATING : ancré dans la pill, sort vers le bas === */
  @media (max-width: 760px) {
    body.theme-floating .shop-nav {
      position: fixed;
    }
    /* Le drawer = absolute par rapport à la nav */
    body.theme-floating .lv-nav-links-left.open {
      position: absolute !important;
      top: calc(100% + 8px) !important;
      right: 0 !important;
      left: 0 !important;
      bottom: auto !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      max-height: 70vh !important;
      background: linear-gradient(155deg, #2a1f15 0%, #1a1410 60%, #0d0a08 100%) !important;
      border: 1px solid rgba(200, 161, 101, 0.3) !important;
      border-radius: 18px !important;
      box-shadow: 0 16px 40px rgba(0,0,0,0.5) !important;
      padding: 8px 6px !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
      justify-content: flex-start !important;
      gap: 0 !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
      animation: floating-drawer-in 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body.theme-floating.nav-scrolled .lv-nav-links-left.open {
      top: 100% !important;
      border-radius: 0 0 18px 18px !important;
      border-top: none !important;
    }
    /* Liens principaux : compacts (force pour battre tous les selectors hérités) */
    body.theme-floating .lv-nav-links-left.open a,
    body.theme-floating .lv-nav-links-left.open .mega-menu-trigger {
      color: rgba(255, 248, 235, 0.95) !important;
      font-family: 'Inter', -apple-system, sans-serif !important;
      font-size: 12px !important;
      font-weight: 600 !important;
      letter-spacing: 0.12em !important;
      text-transform: uppercase !important;
      padding: 10px 14px !important;
      text-align: left !important;
      border-radius: 10px !important;
      border-bottom: none !important;
      width: 100% !important;
      display: block !important;
      transition: background 0.15s, color 0.15s !important;
    }
    /* Annule les surcharges potentielles */
    body.theme-floating .lv-nav-links-left.open a:not(.mega-menu-title):not(.mega-menu-subs a):not(.mega-menu-footer a) {
      font-size: 12px !important;
    }
    /* Override pour les sous-items qui doivent être un peu plus visibles */
    body.theme-floating .lv-nav-links-left.open .mega-menu-subs a {
      font-size: 13px !important;
      font-weight: 400 !important;
      text-transform: none !important;
      letter-spacing: 0.02em !important;
      padding: 7px 14px 7px 24px !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-title {
      font-size: 10px !important;
      font-weight: 700 !important;
      letter-spacing: 0.15em !important;
      padding: 10px 14px 4px !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-footer a {
      font-size: 11px !important;
      padding: 8px 14px !important;
    }

    /* === MEGA MENU DANS LE DRAWER MOBILE === */
    /* Sur mobile : le mega-menu s'affiche en pleine largeur (pas en dropdown hover) */
    body.theme-floating .lv-nav-links-left.open .mega-menu-wrap {
      display: block !important;
      width: 100% !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-trigger {
      color: rgba(255, 248, 235, 0.95) !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 11px !important;
      font-weight: 600 !important;
      letter-spacing: 0.12em !important;
      text-transform: uppercase !important;
      padding: 9px 14px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: flex-start !important;
      gap: 6px !important;
      border-radius: 10px !important;
      width: 100% !important;
      cursor: default !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-arrow {
      display: none !important;
    }
    /* Sur mobile, le mega-menu panel est toujours visible (pas de hover) */
    body.theme-floating .lv-nav-links-left.open .mega-menu-panel {
      position: static !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      background: transparent !important;
      box-shadow: none !important;
      border: none !important;
      padding: 0 !important;
      transform: none !important;
      width: auto !important;
      pointer-events: auto !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
      grid-template-columns: none !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-col {
      padding: 0 !important;
    }
    /* Titre de catégorie (NOS UNIVERS, FIGURINES) */
    body.theme-floating .lv-nav-links-left.open .mega-menu-title {
      color: var(--floating-gold) !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 10px !important;
      font-weight: 700 !important;
      letter-spacing: 0.15em !important;
      text-transform: uppercase !important;
      padding: 12px 14px 6px !important;
      display: block !important;
      border-bottom: none !important;
    }
    /* Sous-items (DRAGON BALL Z, NARUTO, ONE PIECE) */
    body.theme-floating .lv-nav-links-left.open .mega-menu-subs {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
      padding: 0 !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-subs a {
      color: rgba(255, 248, 235, 0.85) !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 13px !important;
      font-weight: 400 !important;
      letter-spacing: 0.02em !important;
      text-transform: none !important;
      padding: 8px 14px 8px 24px !important;
      border-radius: 8px !important;
      transition: background 0.15s, color 0.15s !important;
      display: block !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-subs a:hover,
    body.theme-floating .lv-nav-links-left.open .mega-menu-subs a:active {
      background: rgba(200, 161, 101, 0.1) !important;
      color: var(--floating-gold) !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-footer {
      border-top: 1px solid rgba(200, 161, 101, 0.15) !important;
      margin-top: 8px !important;
      padding: 10px 14px 4px !important;
    }
    body.theme-floating .lv-nav-links-left.open .mega-menu-footer a {
      color: var(--floating-gold) !important;
      font-size: 11px !important;
      font-weight: 600 !important;
      letter-spacing: 0.1em !important;
      text-transform: uppercase !important;
      padding: 0 !important;
    }

    /* Socials en bas avec séparateur fin, centrés */
    body.theme-floating .lv-mobile-socials {
      border-top: 1px solid rgba(200, 161, 101, 0.18) !important;
      padding: 12px 14px !important;
      margin-top: 6px !important;
      gap: 16px !important;
      justify-content: center !important;
      display: flex !important;
    }
    body.theme-floating .lv-mobile-socials a {
      color: var(--floating-gold) !important;
      width: 32px !important;
      height: 32px !important;
      background: rgba(200, 161, 101, 0.08) !important;
      border-radius: 100px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      border: 1px solid rgba(200, 161, 101, 0.2) !important;
      transition: all 0.2s !important;
    }
    body.theme-floating .lv-mobile-socials a:hover,
    body.theme-floating .lv-mobile-socials a:active {
      background: var(--floating-gold) !important;
      color: var(--floating-deep) !important;
    }
    body.theme-floating .lv-mobile-socials a svg {
      width: 15px !important;
      height: 15px !important;
    }
  }

  /* === CARDS PRODUITS : style premium === */
  body.theme-floating .product-card-premium {
    position: relative;
    border: 1px solid rgba(20,20,18,0.08);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
      0 1px 3px rgba(0,0,0,0.03),
      0 4px 16px rgba(0,0,0,0.04);
  }
  body.theme-floating .product-card-premium:hover {
    transform: translateY(-6px);
    box-shadow:
      0 4px 12px rgba(0,0,0,0.06),
      0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(200, 161, 101, 0.3);
  }
  /* Effet de lueur dorée subtile au hover */
  body.theme-floating .product-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%,
                  rgba(200, 161, 101, 0.08) 0%,
                  transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
  }
  body.theme-floating .product-card-premium:hover::after {
    opacity: 1;
  }
  /* Le prix en doré sur les cards */
  body.theme-floating .product-card-premium .price,
  body.theme-floating .product-card-premium .price-final {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.01em;
  }
  body.theme-floating .product-card-premium .name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.005em;
  }

  /* === SECTION SEPARATORS : ligne dorée fine === */
  body.theme-floating .lv-featured-section,
  body.theme-floating .lv-story-section,
  body.theme-floating .custom-section,
  body.theme-floating .lv-categories-section {
    position: relative;
  }
  body.theme-floating .lv-story-section::before,
  body.theme-floating .custom-section::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--floating-gold);
    margin: 0 auto 32px;
  }

  /* === BOUTONS PREMIUM === */
  body.theme-floating .btn-primary {
    border-radius: 100px;
    padding: 16px 32px;
    background: var(--floating-deep);
    color: #fff;
    border: none;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  body.theme-floating .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
                  transparent,
                  rgba(200, 161, 101, 0.3),
                  transparent);
    transition: left 0.6s;
  }
  body.theme-floating .btn-primary:hover::before {
    left: 100%;
  }
  body.theme-floating .btn-primary:hover {
    background: linear-gradient(135deg, var(--floating-deep) 0%, #2c2620 100%);
  }

  /* === CART BUTTON et icônes de nav === */
  body.theme-floating .lv-icon-badge {
    background: var(--floating-gold);
    color: var(--floating-deep);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 700;
  }

  /* === FOOTER === */
  body.theme-floating .shop-footer {
    background: var(--floating-deep);
    color: rgba(255,248,235,0.7);
    padding: 60px 24px 40px;
    margin-top: 80px;
  }
  body.theme-floating .shop-footer a {
    color: rgba(255,248,235,0.85);
  }
  body.theme-floating .shop-footer a:hover {
    color: var(--floating-gold);
  }
  body.theme-floating .shop-footer-col h4 {
    color: var(--floating-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 600;
  }

  /* === BORDEREAUX hor === */
  body.theme-floating hr,
  body.theme-floating .divider {
    border-color: rgba(200, 161, 101, 0.2);
  }

  /* === HERO TITLE ajustements mobile === */
  @media (max-width: 760px) {
    body.theme-floating .lv-shop-name {
      font-size: 16px;
    }
    body.theme-floating .lv-nav-links-left.open a {
      font-size: 28px !important;
      padding: 14px 0 !important;
    }
  }

  /* === STATS / BANNIÈRES === */
  body.theme-floating .lv-banner {
    background: linear-gradient(135deg, var(--floating-deep) 0%, #2a1f15 100%);
    color: var(--floating-cream);
    border-bottom: 1px solid rgba(200, 161, 101, 0.2);
  }
  body.theme-floating .lv-banner::after {
    background: var(--floating-gold);
  }

  /* === BADGES (NEW, PROMO etc.) === */
  body.theme-floating .badge-corner,
  body.theme-floating .badge-new {
    background: var(--floating-gold);
    color: var(--floating-deep);
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  /* === HOPLA FOOTER LINK === */
  body.theme-floating .hopla-footer-link {
    color: rgba(255,248,235,0.5);
  }

  @keyframes floating-drawer-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* === MEGA MENU DESKTOP : style floating/bulle premium === */
  @media (min-width: 761px) {
    body.theme-floating .mega-menu-panel {
      background: linear-gradient(155deg, #2a1f15 0%, #1a1410 60%, #0d0a08 100%) !important;
      border: 1px solid rgba(200, 161, 101, 0.3) !important;
      border-radius: 18px !important;
      box-shadow: 0 16px 50px rgba(0,0,0,0.4) !important;
      padding: 22px 26px !important;
      backdrop-filter: blur(20px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
      animation: floating-drawer-in 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body.theme-floating .mega-menu-title {
      color: var(--floating-gold) !important;
      font-family: 'Inter', -apple-system, sans-serif !important;
      font-size: 11px !important;
      font-weight: 700 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.15em !important;
      padding-bottom: 8px !important;
      display: block !important;
      border-bottom: 1px solid rgba(200, 161, 101, 0.18) !important;
      margin-bottom: 8px !important;
    }
    body.theme-floating .mega-menu-subs a {
      color: rgba(255, 248, 235, 0.85) !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 13px !important;
      font-weight: 400 !important;
      text-transform: none !important;
      letter-spacing: 0.02em !important;
      padding: 6px 0 !important;
      transition: color 0.15s, padding-left 0.15s !important;
      border-radius: 0 !important;
    }
    body.theme-floating .mega-menu-subs a:hover {
      color: var(--floating-gold) !important;
      padding-left: 6px !important;
      background: transparent !important;
    }
    body.theme-floating .mega-menu-footer {
      border-top: 1px solid rgba(200, 161, 101, 0.2) !important;
      margin-top: 16px !important;
      padding-top: 14px !important;
    }
    body.theme-floating .mega-menu-footer a {
      color: var(--floating-gold) !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 11px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.12em !important;
    }
    body.theme-floating .mega-menu-footer a:hover {
      color: rgba(255, 248, 235, 0.95) !important;
    }
    /* Filtres catégories sous-pills déjà gérés plus haut */
  }
