/** Shopify CDN: Minification failed

Line 6533:18 Unexpected "{"
Line 6533:27 Expected ":"
Line 6533:34 Unexpected "{"

**/
/* ================================================================
   YOCHAMIDA — Thème Custom Shopify Store 2.0
   Palette : #000000 | #ffffff | #0042FF
   Fonts   : Redaction 35 (titres) | Satoshi (corps)
   Style   : Gaming Premium / Rétro
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES — modifier ici pour changer toute la palette
   ================================================================ */
html {
  scroll-behavior: smooth;
}

:root {
  /* Couleurs — synchronisées avec settings_schema.json */
  --yc-blue:        #0042FF;
  --yc-blue-dark:   #0035CC;
  --yc-black:       #000000;
  --yc-white:       #ffffff;
  --yc-gray-900:    #0a0a0a;
  --yc-gray-800:    #111111;
  --yc-gray-700:    #1a1a1a;
  --yc-gray-500:    #555555;
  --yc-gray-300:    #aaaaaa;
  --yc-gray-100:    #e0e0e0;

  /* Typographie */
  --yc-font-heading: 'Redaction35', Georgia, 'Times New Roman', serif;
  --yc-font-body:    'Satoshi', system-ui, -apple-system, sans-serif;

  /* Mise en page */
  --yc-max-width:   1400px;
  --yc-gutter:      clamp(16px, 4vw, 48px);
  --yc-radius:      0px;        /* Coins carrés = esthétique gaming */
  --yc-radius-sm:   2px;

  /* Interactions */
  --yc-transition:  200ms ease;
  --yc-header-h:    64px;
}

/* ================================================================
   1b. MODE JOUR / NUIT
   Le sélecteur [data-theme="light"] est posé sur <html> par JS.
   On réaffecte uniquement les variables de palette — tout le reste
   hérite automatiquement.
   ================================================================ */
[data-theme="light"] {
  --yc-black:    #F5F5F0;   /* fond page → crème */
  --yc-white:    #111111;   /* texte principal → quasi-noir */
  --yc-gray-900: #EBEBEB;   /* fonds sections alternées → gris très clair */
  --yc-gray-800: #FFFFFF;   /* cartes / éléments → blanc pur */
  --yc-gray-700: #CCCCCC;   /* bordures → gris clair */
  --yc-gray-500: #777777;   /* texte secondaire → gris moyen */
  --yc-gray-300: #444444;   /* texte de soutien → gris foncé */
  --yc-gray-100: #111111;   /* texte accentué → quasi-noir */
}

/* ----------------------------------------------------------------
   Texte TOUJOURS BLANC — éléments sur fond bleu ou toujours sombre
---------------------------------------------------------------- */
[data-theme="light"] .btn--primary,
[data-theme="light"] .btn--primary:hover,
[data-theme="light"] .filter-tab--active,
[data-theme="light"] .cart-count,
[data-theme="light"] .product-badge--sale,
[data-theme="light"] .ba-label,
[data-theme="light"] .skip-to-content {
  color: #ffffff;
}

/* ----------------------------------------------------------------
   HERO BANNER
   — avec image  : overlay toujours sombre → texte blanc
   — sans image  : fond crème → texte sombre
---------------------------------------------------------------- */
.hero-banner--has-image .hero-banner__heading,
.hero-banner--has-image .hero-banner__subheading,
.hero-banner--has-image .hero-banner__tag {
  color: #ffffff;
}
[data-theme="light"] .hero-banner--has-image .hero-banner__subheading {
  color: rgba(255, 255, 255, 0.82);
}
[data-theme="light"] .hero-banner--has-image .btn--secondary {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Hero sans image : le heading hérite var(--yc-white) = #111111, OK. */
/* Subheading a une rgba codée en dur → on la corrige */
[data-theme="light"] .hero-banner:not(.hero-banner--has-image) .hero-banner__subheading {
  color: var(--yc-gray-300); /* #444444 sur crème = bon contraste */
}

/* ----------------------------------------------------------------
   EN-TÊTE
   Fond blanc en mode jour, fond quasi-noir en mode nuit
---------------------------------------------------------------- */
[data-theme="light"] .site-header {
  background-color: #ffffff !important;
  color: #171717 !important;
  border-bottom-color: #e8e8e8 !important;
  box-shadow: 0 1px 0 #e8e8e8;
}
[data-theme="light"] .nav-link { color: #171717; }
[data-theme="light"] .nav-link::before { background: #111111 !important; }
[data-theme="light"] .nav-link:hover {
  color: #ffffff !important;
  background: transparent !important;
}
[data-theme="light"] .header-icon { color: #171717; }
[data-theme="light"] .header-icon:hover {
  color: #171717 !important;
  background: #f0f0f0 !important;
}
[data-theme="light"] .cart-count {
  background: #111111 !important;
  color: #ffffff !important;
}
[data-theme="light"] .hamburger { background: #171717; }
[data-theme="light"] .mobile-menu { background: #ffffff; color: #171717; }

/* ----------------------------------------------------------------
   SECTIONS À FOND CODÉ EN DUR (bg_color = inline style)
   !important est nécessaire pour passer outre la spécificité inline.
   Chaque section reçoit un fond clair + le texte hérite auto.
---------------------------------------------------------------- */

/* Barre de réassurance */
[data-theme="light"] .reassurance-bar {
  background-color: var(--yc-gray-800) !important; /* blanc */
  border-color: var(--yc-gray-700) !important;
  color: #111111 !important; /* écrase le color:#ffffff de l'inline style */
}
[data-theme="light"] .reassurance-title {
  color: #111111 !important;
}
[data-theme="light"] .reassurance-desc {
  color: #555555 !important;
}
[data-theme="light"] .reassurance-icon {
  color: var(--yc-blue) !important;
}

/* Grilles de consoles (featured-consoles = Dernières Arrivées + cross-sell) */
[data-theme="light"] .featured-consoles {
  background-color: var(--yc-gray-900) !important; /* gris très clair */
}

/* Notre Processus */
[data-theme="light"] .our-process {
  background-color: var(--yc-gray-900) !important; /* gris très clair */
}

/* Showcase Vidéo */
[data-theme="light"] .video-showcase {
  background-color: var(--yc-black) !important; /* crème */
}

/* ----------------------------------------------------------------
   CARTES PRODUIT en mode jour
---------------------------------------------------------------- */
[data-theme="light"] .product-card__media {
  background: var(--yc-gray-900); /* fond placeholder gris clair */
}
[data-theme="light"] .product-card__title {
  color: var(--yc-white); /* #111111 */
}

/* ----------------------------------------------------------------
   DROPDOWN NAV en mode jour
---------------------------------------------------------------- */
[data-theme="light"] .nav-dropdown {
  background: var(--yc-gray-800); /* blanc */
  border-color: var(--yc-gray-700);
}
[data-theme="light"] .nav-dropdown__link:hover {
  background: var(--yc-gray-900);
}

/* ----------------------------------------------------------------
   MENU MOBILE en mode jour
---------------------------------------------------------------- */
[data-theme="light"] .mobile-menu {
  background: var(--yc-gray-800); /* blanc */
}

/* ----------------------------------------------------------------
   FOOTER en mode jour — gris clair net
---------------------------------------------------------------- */
[data-theme="light"] .site-footer {
  background: var(--yc-gray-900);   /* #EBEBEB */
  border-top-color: var(--yc-gray-700);
}

/* ----------------------------------------------------------------
   TOGGLE BOUTON JOUR/NUIT
   Sombre → lune  (cliquer = passer au jour)
   Jour   → soleil (cliquer = revenir au sombre)
---------------------------------------------------------------- */
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ----------------------------------------------------------------
   TRANSITIONS — changement de thème fluide
---------------------------------------------------------------- */
body,
.site-header,
.mobile-menu,
.nav-dropdown,
.product-card,
.product-card__media,
.console-filter,
.reassurance-bar,
.featured-consoles,
.our-process,
.video-showcase,
.site-footer {
  transition-property: background-color, color, border-color, outline-color, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: ease;
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--yc-font-body);
  background-color: var(--yc-black);
  color: var(--yc-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--yc-blue);
  color: var(--yc-white);
  font-weight: 700;
}
.skip-to-content:focus { left: 0; }

/* ================================================================
   3. TYPOGRAPHIE
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--yc-font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }

/* ================================================================
   4. LAYOUT UTILITAIRES
   ================================================================ */
.page-width {
  max-width: var(--yc-max-width);
  margin: 0 auto;
  padding: 0 var(--yc-gutter);
}

/* ================================================================
   5. BOUTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--yc-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--yc-radius);
  transition: background var(--yc-transition), color var(--yc-transition), border-color var(--yc-transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--yc-blue);
  color: var(--yc-white);
  border-color: var(--yc-blue);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--yc-blue-dark);
  border-color: var(--yc-blue-dark);
}
.btn--secondary {
  background: transparent;
  color: var(--yc-white);
  border-color: var(--yc-white);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background: var(--yc-white);
  color: var(--yc-black);
}
.btn--sm { padding: 10px 20px; font-size: 0.8rem; }
.btn--full-width { width: 100%; }

/* ================================================================
   6. EN-TÊTES DE SECTION
   ================================================================ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.section-subtitle {
  color: var(--yc-gray-300);
  font-size: 1.05rem;
  margin-top: 8px;
  max-width: 60ch;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yc-blue);
  border-bottom: 1px solid var(--yc-blue);
  white-space: nowrap;
  transition: opacity var(--yc-transition);
}
.section-link:hover { opacity: 0.7; }
.section-link svg { flex-shrink: 0; }

/* ================================================================
   7. HEADER
   ================================================================ */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--yc-blue);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 300ms ease, background 300ms ease;
}
.site-header--sticky {
  position: sticky;
  top: 0;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--yc-header-h);
  gap: 24px;
}

/* Logo */
.header-logo { flex-shrink: 0; min-width: 0; }
.header-logo__link { display: block; }
.header-logo img {
  display: block;
  height: auto;
  width: var(--logo-w, 150px);
  max-width: 100%;
  /* Mode jour (fond blanc) : multiply fait disparaître le fond blanc du JPG */
  mix-blend-mode: multiply;
}
/* Mode nuit (fond bleu) : inverser le logo noir→blanc, screen fait disparaître le fond */
html:not([data-theme="light"]) .header-logo img {
  filter: invert(1);
  mix-blend-mode: screen;
}
/* Sur mobile, plafonner à 150px pour ne pas dépasser les icônes */
@media (max-width: 767px) {
  .header-logo img { width: min(var(--logo-w, 150px), 150px); }
}
.header-logo__text {
  font-family: var(--yc-font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

/* Navigation desktop */
.header-nav { display: none; }

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }

/* ── Nav link avec animation slide-up ── */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 250ms ease;
  color: inherit;
}
/* Bloc qui monte du bas */
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: inherit;
  transform: translateY(102%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.15, 1);
  z-index: -1;
}
/* Texte et icône au-dessus du bloc */
.nav-link > * { position: relative; z-index: 1; }

.nav-link:hover::before {
  transform: translateY(0);
}
.nav-link:hover {
  color: #0d0d0d;
}

.nav-chevron {
  flex-shrink: 0;
  transition: transform var(--yc-transition);
}
.nav-item--has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--yc-gray-800);
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--yc-transition), visibility var(--yc-transition), transform var(--yc-transition);
  z-index: 200;
}
.nav-item--has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__link {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  transition: color var(--yc-transition), background var(--yc-transition);
}
.nav-dropdown__link:hover,
.nav-dropdown__link.active {
  color: var(--yc-blue);
  background: var(--yc-gray-700);
}

/* Actions header */
.header-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }

/* ── Sélecteur de langue ── */
.header-lang-selector {
  position: relative;
}
.header-lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header-lang-current { line-height: 1; }
.header-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.header-lang-dropdown[hidden] { display: none; }
.header-lang-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 5px;
  text-align: left;
  transition: background var(--yc-transition);
  color: rgba(255,255,255,0.75);
  background: none;
  border: none;
  cursor: pointer;
}
.header-lang-option:hover { background: rgba(255,255,255,0.08); color: #fff; }
.header-lang-option--active { color: var(--yc-blue); font-weight: 700; }
/* Light mode */
[data-theme="light"] .header-lang-dropdown {
  background: #ffffff;
  border-color: #e8e8e8;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
[data-theme="light"] .header-lang-option { color: #555; }
[data-theme="light"] .header-lang-option:hover { background: #f5f5f5; color: #111; }
[data-theme="light"] .header-lang-btn { color: #171717; }
.header-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--yc-radius-sm);
  transition: color var(--yc-transition), background var(--yc-transition);
}
.header-icon:hover { color: #ffffff; background: rgba(255, 255, 255, 0.12); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: var(--yc-white);
  color: var(--yc-blue);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Toggle hamburger */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--yc-radius-sm);
}
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 250ms ease, opacity 250ms ease;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  top: var(--yc-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--yc-black);
  z-index: 99;
  overflow-y: auto;
  padding: 24px var(--yc-gutter) 40px;
  transform: translateX(-100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 98;
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.is-visible { display: block; }

.mobile-nav-item { border-bottom: 1px solid var(--yc-gray-700); }
.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.15rem;
  font-weight: 500;
  transition: color var(--yc-transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--yc-blue); }

.mobile-nav-sub { padding-left: 16px; border-top: 1px solid var(--yc-gray-700); }
.mobile-nav-sub__link {
  display: block;
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--yc-gray-300);
  transition: color var(--yc-transition);
}
.mobile-nav-sub__link:hover, .mobile-nav-sub__link.active { color: var(--yc-blue); }

/* ================================================================
   8. HERO BANNER
   ================================================================ */
.hero-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--yc-black);
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--yc-black);
  z-index: 1;
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(60px, 10vw, 120px);
  width: 100%;
}

/* Alignements du contenu */
.text-center .hero-banner__content { text-align: center; }
.text-right  .hero-banner__content { text-align: right;  }

.hero-banner__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yc-blue);
  color: var(--yc-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-banner__heading {
  color: var(--yc-white);
  margin-bottom: 20px;
  max-width: 14ch;
}
.text-center .hero-banner__heading,
.text-right  .hero-banner__heading { max-width: none; }

.hero-banner__subheading {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 55ch;
  margin-bottom: 36px;
}
.text-center .hero-banner__subheading { margin-inline: auto; }
.text-right  .hero-banner__subheading { margin-left: auto; }

.hero-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.text-center .hero-banner__ctas { justify-content: center; }
.text-right  .hero-banner__ctas { justify-content: flex-end; }

/* ================================================================
   9. GRILLE PRODUITS (shared entre featured-consoles et console-filter)
   ================================================================ */
.featured-consoles,
.console-filter {
  padding-block: clamp(40px, 8vw, 80px);
}

.products-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .products-grid--3-col { grid-template-columns: repeat(3, 1fr); }
  .products-grid--4-col { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products-grid--3-col { grid-template-columns: repeat(3, 1fr); }
  .products-grid--4-col { grid-template-columns: repeat(4, 1fr); }
}

/* Carte produit */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card__media-link { display: block; }
.product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--yc-gray-800);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, opacity 300ms ease;
}
.product-card__image--hover {
  position: absolute !important;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__media > img:first-child { transform: scale(1.04); }
.product-card:hover .product-card__image--hover { opacity: 1; }

/* Badges */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge--sold-out { background: var(--yc-gray-700); color: var(--yc-gray-100); }
.product-badge--sale     { background: var(--yc-blue);     color: var(--yc-white);    }

.product-card__info {
  padding: 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__title {
  font-family: var(--yc-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}
.product-card__title a:hover { color: var(--yc-blue); }

.product-card__price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price--compare {
  text-decoration: line-through;
  color: var(--yc-gray-500);
  font-size: 0.85rem;
}
.price--current { font-weight: 700; }
.price--unavailable { color: var(--yc-gray-500); }

.product-card__atc { margin-top: 14px; }
.collection-empty {
  color: var(--yc-gray-500);
  text-align: center;
  padding: 60px 20px;
}

/* ================================================================
   10. CONSOLE FILTER (onglets)
   ================================================================ */
.console-filter { background: var(--yc-gray-900); }

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--yc-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--yc-gray-700);
  color: var(--yc-gray-300);
  background: transparent;
  border-radius: var(--yc-radius-sm);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: border-color 250ms ease, color 250ms ease;
}
.filter-tab > * { position: relative; z-index: 1; }
.filter-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yc-white);
  transform: translateY(102%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.15, 1);
  z-index: -1;
}
.filter-tab:not(.filter-tab--active):hover::before { transform: translateY(0); }
.filter-tab:not(.filter-tab--active):hover {
  border-color: var(--yc-white);
  color: var(--yc-black);
}
.filter-tab--active {
  background: var(--yc-blue);
  border-color: var(--yc-blue);
  color: var(--yc-white);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 640px)  { .filter-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .filter-grid { grid-template-columns: repeat(4, 1fr); } }

.filter-card { transition: opacity 200ms, transform 200ms; }
.filter-card[data-visible="false"] { display: none; }

.product-card__console-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.72);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ================================================================
   11. AVANT / APRÈS
   ================================================================ */
.before-after-section {
  padding-block: clamp(40px, 8vw, 80px);
  background: var(--yc-black);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px)  { .before-after-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .before-after-grid { grid-template-columns: repeat(3, 1fr); } }

.ba-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  user-select: none;
  cursor: ew-resize;
  border-radius: var(--yc-radius);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
/* ba-after démarre clippé à 50% */
.ba-after { clip-path: inset(0 50% 0 0); }

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yc-gray-800);
  color: var(--yc-gray-500);
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.65);
  color: var(--yc-white);
  backdrop-filter: blur(4px);
  z-index: 3;
}
.ba-label--before { left: 12px; }
.ba-label--after  { right: 12px; }

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--yc-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 10;
  transition: left 0ms;  /* mis à jour par JS */
}
/* Ligne verticale du handle */
.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  width: 2px;
  background: rgba(255,255,255,0.5);
  left: 50%;
  transform: translateX(-50%);
}
.ba-handle::before { top: 100%; height: 50vh; }
.ba-handle::after  { bottom: 100%; height: 50vh; }

.ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 11;
  margin: 0;
}

.ba-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--yc-gray-300);
  text-align: center;
}

/* ================================================================
   12. BARRE DE RÉASSURANCE
   ================================================================ */
.reassurance-bar {
  padding-block: 40px;
  border-top: 1px solid var(--yc-gray-700);
  border-bottom: 1px solid var(--yc-gray-700);
}
.reassurance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}
@media (min-width: 640px) { .reassurance-list { grid-template-columns: repeat(4, 1fr); } }

.reassurance-item { display: flex; align-items: flex-start; gap: 14px; }
.reassurance-icon { color: var(--yc-blue); flex-shrink: 0; margin-top: 2px; }
.reassurance-text { display: flex; flex-direction: column; gap: 4px; }
.reassurance-title { font-size: 0.9rem; font-weight: 700; }
.reassurance-desc  { font-size: 0.8rem; color: var(--yc-gray-300); line-height: 1.4; }

/* ================================================================
   13. FOOTER
   ================================================================ */
.site-footer { background: var(--yc-gray-900); border-top: 1px solid var(--yc-gray-700); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: 60px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 280px; }
.footer-logo img { height: 40px; width: auto; }
.footer-logo-text {
  font-family: var(--yc-font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 0.875rem; color: var(--yc-gray-300); line-height: 1.5; }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  color: var(--yc-gray-300);
  transition: border-color var(--yc-transition), color var(--yc-transition);
}
.social-icon:hover { border-color: var(--yc-blue); color: var(--yc-blue); }

.footer-nav-title {
  font-family: var(--yc-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yc-gray-500);
  margin-bottom: 16px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-link {
  font-size: 0.9rem;
  color: var(--yc-gray-100);
  transition: color var(--yc-transition);
}
.footer-nav-link:hover { color: var(--yc-blue); }

.footer-bottom { border-top: 1px solid var(--yc-gray-700); padding-block: 20px; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-copyright { font-size: 0.8rem; color: var(--yc-gray-500); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--yc-gray-500);
  transition: color var(--yc-transition);
}
.footer-legal-links a:hover { color: var(--yc-white); }

/* ================================================================
   14. BARRE D'ANNONCE
   ================================================================ */

/* Mode nuit : barre d'annonce → blanc avec texte sombre */
html:not([data-theme="light"]) .announcement-bar {
  background: #ffffff !important;
  color: #111111 !important;
}
html:not([data-theme="light"]) .ab-close {
  color: #111111;
}
/* Mode jour : la barre garde ses couleurs inline (bleu + texte blanc) */
.announcement-bar {
  position: relative;
  z-index: 101;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ab-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px var(--yc-gutter);
  gap: 12px;
  position: relative;
}
/* Desktop : centré statique */
.ab-marquee-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
  flex: 1;
}
.ab-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
}
.ab-item { display: inline-flex; align-items: center; gap: 8px; }
.ab-sep  { opacity: 0.6; }

/* Mobile : marquee défilant */
@media (max-width: 767px) {
  .ab-marquee-track {
    animation: yc-ab-scroll 22s linear infinite;
  }
  .ab-marquee-track:hover { animation-play-state: paused; }
  .ab-item--dup { display: inline-flex !important; }
}
@media (min-width: 768px) {
  .ab-item--dup { display: none; }
}
@keyframes yc-ab-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* Countdown */
.ab-countdown {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.cd-unit { display: inline-flex; align-items: baseline; gap: 1px; }
.cd-unit b { font-size: 0.95em; }
.cd-unit small { font-size: 0.7em; opacity: 0.75; }
.cd-sep { opacity: 0.5; margin: 0 1px; }

/* Bouton fermer */
.ab-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity var(--yc-transition);
}
.ab-close:hover { opacity: 1; }

/* ================================================================
   15. NOTRE PROCESSUS
   ================================================================ */
.our-process { overflow: hidden; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}
@media (min-width: 640px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.process-step__num {
  font-family: var(--yc-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--yc-blue);
  flex-shrink: 0;
  letter-spacing: -0.04em;
}
.process-step__icon {
  color: var(--yc-gray-300);
  padding-top: 4px;
  transition: color var(--yc-transition);
}
.process-step:hover .process-step__icon { color: var(--yc-blue); }

.process-step__title {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 8px;
}
.process-step__desc {
  font-size: 0.875rem;
  color: var(--yc-gray-300);
  line-height: 1.6;
}

/* Trait de connexion entre les étapes — masqué */
.process-step__connector { display: none; }

/* ================================================================
   16. SHOWCASE VIDÉO
   ================================================================ */
.video-showcase__wrap { max-width: 900px; margin: 0 auto; }

.video-showcase__ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--yc-gray-900);
  border-radius: var(--yc-radius);
}
.video-showcase__ratio iframe,
.video-showcase__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-showcase__frame { position: absolute; inset: 0; }

.video-showcase__poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-showcase__poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.video-showcase__poster:hover img { transform: scale(1.03); }
.video-showcase__poster.is-hidden { display: none; }

.video-showcase__placeholder {
  position: absolute;
  inset: 0;
  background: var(--yc-gray-800);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yc-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(0, 66, 255, 0.4);
  animation: yc-pulse-play 2.5s ease-in-out infinite;
  transition: transform var(--yc-transition);
}
.video-showcase__poster:hover .video-play-btn { transform: scale(1.1); }

@keyframes yc-pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 66, 255, 0.4); }
  50%       { box-shadow: 0 0 0 16px rgba(0, 66, 255, 0); }
}

.video-showcase__caption {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--yc-gray-300);
}

/* ================================================================
   17. BADGES & COMPTEURS PRODUIT
   ================================================================ */
.product-badge--unique {
  background: linear-gradient(135deg, #0042FF 0%, #7B61FF 100%);
  color: #fff;
  position: relative;
  overflow: visible;
}
.badge-pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: rgba(0, 66, 255, 0.35);
  animation: yc-badge-pulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes yc-badge-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.3); opacity: 0;   }
}

.stock-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e05252;
  letter-spacing: 0.02em;
}
.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e05252;
  flex-shrink: 0;
  animation: yc-stock-blink 1.4s ease-in-out infinite;
}
@keyframes yc-stock-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ================================================================
   18. MARQUEE MOBILE — barre de réassurance
   ================================================================ */
.reassurance-bar__desktop { display: block; }
.reassurance-bar__mobile  { display: none; }

@media (max-width: 639px) {
  .reassurance-bar__desktop { display: none; }
  .reassurance-bar__mobile  {
    overflow: hidden;
    padding-block: 20px;
  }
  .reassurance-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: yc-reassurance-scroll 28s linear infinite;
  }
  .reassurance-marquee-track:hover { animation-play-state: paused; }
  .reassurance-item--marquee {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@keyframes yc-reassurance-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ================================================================
   19. CTA FLOTTANT MOBILE
   ================================================================ */
.cta-sticky-mobile {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 500;
  align-items: center;
  gap: 8px;
  background: var(--yc-black);
  border: 1px solid var(--yc-gray-700);
  border-radius: 40px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
  opacity: 0;
  white-space: nowrap;
}
.cta-sticky-mobile.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cta-sticky-mobile .btn {
  border-radius: 32px;
  padding: 10px 20px;
}
.cta-sticky-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--yc-gray-300);
  flex-shrink: 0;
  transition: color var(--yc-transition);
}
.cta-sticky-close:hover { color: var(--yc-white); }

@media (max-width: 767px) {
  .cta-sticky-mobile { display: flex; }
}

/* Mode jour : CTA flottant */
[data-theme="light"] .cta-sticky-mobile {
  background-color: var(--yc-gray-800) !important;
  border-color: var(--yc-gray-700) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* ================================================================
   20. URGENCY BAR — fiche produit
   ================================================================ */
.yc-urgency-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px var(--yc-gutter);
  max-width: var(--yc-max-width);
  margin: 0 auto;
}

.urgency-badge-unique {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #0042FF 0%, #7B61FF 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: visible;
  border-radius: var(--yc-radius-sm);
}
.urgency-badge-unique .badge-pulse {
  position: absolute;
  inset: -4px;
  background: rgba(0, 66, 255, 0.25);
  border-radius: inherit;
  animation: yc-badge-pulse 2s ease-in-out infinite;
}

.urgency-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}

.urgency-stock {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e05252;
}
.urgency-stock--ok { color: #4caf72; }
.stock-dot--green { background: #4caf72; animation: none; opacity: 1; }

.urgency-viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--yc-gray-300);
}
.viewers-count { font-weight: 700; color: var(--yc-white); }

/* ================================================================
   21. STICKY ATC MOBILE — voir section 31 (styles complets)
   ================================================================ */

/* ================================================================
   22. POPUP NEWSLETTER
   ================================================================ */
.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}
.newsletter-popup.is-open {
  pointer-events: auto;
  opacity: 1;
}
.newsletter-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.newsletter-popup__box {
  position: relative;
  z-index: 1;
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  max-width: 780px;
  width: 100%;
  overflow: hidden;
  transform: translateY(32px) scale(0.97);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.newsletter-popup.is-open .newsletter-popup__box {
  transform: translateY(0) scale(1);
}
.newsletter-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yc-gray-800);
  border-radius: 50%;
  color: var(--yc-gray-300);
  transition: color var(--yc-transition), background var(--yc-transition);
}
.newsletter-popup__close:hover { color: var(--yc-white); background: var(--yc-gray-700); }

.newsletter-popup__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .newsletter-popup__inner { grid-template-columns: 5fr 7fr; }
}

.newsletter-popup__media {
  overflow: hidden;
  min-height: 200px;
}
.newsletter-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsletter-popup__content {
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.popup-discount-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--yc-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--yc-radius-sm);
  width: fit-content;
}
.popup-heading {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.popup-subheading {
  font-size: 0.875rem;
  color: var(--yc-gray-300);
  line-height: 1.6;
}
.popup-field-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.popup-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: var(--yc-gray-800);
  border: 1px solid var(--yc-gray-700);
  color: var(--yc-white);
  font-family: var(--yc-font-body);
  font-size: 0.875rem;
  border-radius: var(--yc-radius-sm);
  outline: none;
  transition: border-color var(--yc-transition);
}
.popup-input:focus { border-color: var(--yc-blue); }
.popup-input::placeholder { color: var(--yc-gray-500); }
.popup-submit { flex-shrink: 0; }
.popup-legal {
  font-size: 0.72rem;
  color: var(--yc-gray-500);
}
.popup-skip {
  font-size: 0.75rem;
  color: var(--yc-gray-500);
  text-decoration: underline;
  transition: color var(--yc-transition);
  text-align: left;
  width: fit-content;
}
.popup-skip:hover { color: var(--yc-gray-300); }

[data-theme="light"] .popup-input {
  background: var(--yc-gray-800) !important;
  border-color: var(--yc-gray-700) !important;
  color: var(--yc-white) !important;
}

/* ================================================================
   23. PAGE PRODUIT — yc-main-product.liquid
   ================================================================ */

/* Layout 2 colonnes */
.yc-product-section { background: var(--yc-black); }
.yc-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
}
@media (min-width: 768px) {
  .yc-product-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
@media (min-width: 1100px) {
  .yc-product-layout { grid-template-columns: 55fr 45fr; }
}

/* ---- Galerie ---- */
.yc-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: calc(var(--yc-header-h) + 16px);
}

.yc-gallery-main__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--yc-gray-800);
}
.yc-gallery-main__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 250ms ease;
}
.yc-gallery-placeholder {
  width: 100%;
  height: 100%;
  color: var(--yc-gray-700);
}

/* Thumbnails */
.yc-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.yc-thumb {
  width: 72px;
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: var(--yc-radius-sm);
  transition: border-color var(--yc-transition);
  padding: 0;
  cursor: pointer;
  background: var(--yc-gray-800);
}
.yc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yc-thumb:hover { border-color: var(--yc-gray-500); }
.yc-thumb--active { border-color: var(--yc-blue) !important; }

/* ---- Infos produit ---- */
.yc-product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yc-product-vendor {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yc-blue);
}

.yc-product-title {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--yc-white);
}

/* ---- Prix ---- */
.yc-product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.yc-price-compare {
  text-decoration: line-through;
  color: var(--yc-gray-500);
  font-size: 1rem;
}
.yc-price-current {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yc-white);
}
.yc-price-save {
  display: inline-block;
  padding: 3px 10px;
  background: var(--yc-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--yc-radius-sm);
}

/* ---- Sélecteur de variantes ---- */
.yc-variant-picker { display: flex; flex-direction: column; gap: 16px; }

.yc-option-group { display: flex; flex-direction: column; gap: 8px; }
.yc-option-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yc-gray-300);
}
.yc-option-value {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--yc-white);
}

.yc-option-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.yc-opt-btn {
  padding: 8px 16px;
  font-family: var(--yc-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  color: var(--yc-white);
  border: 1.5px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  cursor: pointer;
  transition: border-color var(--yc-transition), background var(--yc-transition), color var(--yc-transition);
  white-space: nowrap;
}
.yc-opt-btn:hover { border-color: var(--yc-white); }
.yc-opt-btn--active {
  background: var(--yc-blue);
  border-color: var(--yc-blue);
  color: #fff;
}
.yc-opt-btn--unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---- Quantité ---- */
.yc-qty-wrap { display: flex; flex-direction: column; gap: 8px; }
.yc-qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  overflow: hidden;
  width: fit-content;
}
.yc-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  color: var(--yc-white);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--yc-transition), color var(--yc-transition);
  flex-shrink: 0;
}
.yc-qty-btn:hover { background: var(--yc-gray-800); color: var(--yc-blue); }
.yc-qty-input {
  width: 48px;
  height: 44px;
  text-align: center;
  font-family: var(--yc-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  background: transparent;
  color: var(--yc-white);
  border: none;
  border-left: 1.5px solid var(--yc-gray-700);
  border-right: 1.5px solid var(--yc-gray-700);
  outline: none;
  -moz-appearance: textfield;
}
.yc-qty-input::-webkit-inner-spin-button,
.yc-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ---- ATC ---- */
.yc-atc-row { display: flex; flex-direction: column; gap: 10px; }
.yc-atc-btn {
  font-size: 1rem;
  padding: 16px 24px;
  gap: 10px;
}
.yc-atc-btn:disabled {
  background: var(--yc-gray-700);
  border-color: var(--yc-gray-700);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Dynamic checkout buttons wrapper */
.yc-dynamic-checkout { margin-top: 0; }
.yc-dynamic-checkout .shopify-payment-button__button { border-radius: var(--yc-radius-sm) !important; }

/* ---- Trust badges ---- */
.yc-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
}
.yc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--yc-gray-300);
}
.yc-trust-item svg { color: var(--yc-blue); flex-shrink: 0; }

/* ---- Accordéons ---- */
.yc-accordions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--yc-gray-700);
}
.yc-accordion {
  border-bottom: 1px solid var(--yc-gray-700);
}
.yc-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-family: var(--yc-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--yc-white);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--yc-transition);
}
.yc-accordion__trigger:hover { color: var(--yc-blue); }
.yc-accordion__icon {
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.yc-accordion__trigger[aria-expanded="true"] .yc-accordion__icon {
  transform: rotate(180deg);
}
.yc-accordion__body {
  padding-bottom: 20px;
  overflow: hidden;
}
.yc-accordion__body[hidden] { display: none; }

/* ---- RTE description ---- */
.yc-rte {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--yc-gray-300);
}
.yc-rte p + p { margin-top: 12px; }
.yc-rte ul,
.yc-rte ol { padding-left: 20px; margin-top: 8px; }
.yc-rte ul { list-style: disc; }
.yc-rte ol { list-style: decimal; }
.yc-rte li { margin-bottom: 6px; }
.yc-rte a { color: var(--yc-blue); text-decoration: underline; }
.yc-rte strong { color: var(--yc-white); }

/* ---- Light mode overrides ---- */
[data-theme="light"] .yc-product-section { background: var(--yc-black); }
[data-theme="light"] .yc-trust-badges {
  background: var(--yc-gray-800) !important;
  border-color: var(--yc-gray-700) !important;
}
[data-theme="light"] .yc-opt-btn { border-color: var(--yc-gray-700); color: var(--yc-white); }
[data-theme="light"] .yc-qty-selector { border-color: var(--yc-gray-700); }
[data-theme="light"] .yc-qty-input {
  color: var(--yc-white);
  border-color: var(--yc-gray-700);
}

/* ================================================================
   24. HERO VIDÉO + BANDEAUX ANIMÉS — yc-marquee-banner.liquid
   ================================================================ */

/* ── Hero vidéo ── */
.yc-hero-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--hero-min-h, 680px);
  overflow: hidden;
  background: #0a0a0a;
}
[data-theme="dark"] .yc-hero-video,
html:not([data-theme]) .yc-hero-video {
  background: linear-gradient(160deg, #0f0f1a 0%, #0a0a0a 50%, #000814 100%);
}

.yc-hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.yc-hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yc-hero-video__media--iframe {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
}

.yc-hero-video__media--img {
  object-position: center;
}

.yc-hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,calc(var(--hero-overlay, 0.55) * 1.1)) 60%,
    rgba(10,10,10,0.85) 100%
  );
}

/* ── Contenu superposé ── */
.yc-hero-video__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(80px, 10vw, 120px) 24px clamp(60px, 8vw, 100px);
  max-width: 900px;
  width: 100%;
}

.yc-hero-video__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 40px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.yc-hero-video__heading {
  font-family: var(--yc-font-heading);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.yc-hero-video__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 0 40px;
}

.yc-hero-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.yc-hero-video__btn {
  min-width: 160px;
  justify-content: center;
}

/* ── Indicateur scroll ── */
.yc-hero-video__scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.45);
  animation: yc-scroll-bounce 2s ease-in-out infinite;
}
@keyframes yc-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Barre chiffres clés ── */
.yc-hero-stats {
  background: var(--yc-gray-900);
  border-bottom: 1px solid var(--yc-gray-800);
}
.yc-hero-stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .yc-hero-stats__inner { grid-template-columns: repeat(4, 1fr); }
}

.yc-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 16px;
  border-right: 1px solid var(--yc-gray-800);
  transition: background var(--yc-transition);
}
.yc-hero-stat:last-child { border-right: none; }
.yc-hero-stat:hover { background: var(--yc-gray-800); }

.yc-hero-stat__value {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--yc-blue);
}
.yc-hero-stat__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--yc-gray-400);
  text-align: center;
  line-height: 1.3;
}

/* ── Bandeaux défilants ── */
.yc-mq-bands { overflow: hidden; }

.yc-mq-bar {
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
}
.yc-mq-bar--blue { background: var(--yc-blue); }
.yc-mq-bar--dark { background: var(--yc-gray-900); }

.yc-mq-track {
  display: flex;
  width: max-content;
  gap: 0;
  white-space: nowrap;
}
.yc-mq-track--fwd { animation: yc-mq-scroll-fwd 30s linear infinite; }
.yc-mq-track--rev { animation: yc-mq-scroll-rev 34s linear infinite; }

.yc-mq-content {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 40px;
  color: #ffffff;
  flex-shrink: 0;
}
.yc-mq-bar--dark .yc-mq-content { color: var(--yc-gray-300); }

@keyframes yc-mq-scroll-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes yc-mq-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.yc-mq-bar:hover .yc-mq-track { animation-play-state: paused; }

/* ── Light mode ── */
[data-theme="light"] .yc-mq-bar--dark { background: var(--yc-gray-900) !important; }
[data-theme="light"] .yc-hero-stats { background: var(--yc-gray-900) !important; }
[data-theme="light"] .yc-hero-stat { border-color: var(--yc-gray-700) !important; }

/* ================================================================
   25. FAQ — yc-faq.liquid
   ================================================================ */
.yc-faq-section { background: var(--yc-gray-900); }

/* Badge FAQ */
.yc-faq-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--yc-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--yc-radius-sm);
  margin-bottom: 12px;
}

/* Liste */
.yc-faq-list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--yc-gray-700);
}

/* Item */
.yc-faq-item {
  border-bottom: 1px solid var(--yc-gray-700);
}

/* Bouton question */
.yc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  gap: 16px;
  font-family: var(--yc-font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--yc-white);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--yc-transition);
  line-height: 1.4;
}
.yc-faq-q:hover { color: var(--yc-blue); }
.yc-faq-q[aria-expanded="true"] { color: var(--yc-blue); }

.yc-faq-icon {
  flex-shrink: 0;
  color: var(--yc-blue);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.yc-faq-q[aria-expanded="true"] .yc-faq-icon {
  transform: rotate(180deg);
}

/* Corps réponse */
.yc-faq-a {
  overflow: hidden;
  transition: none;
}
.yc-faq-a[hidden] { display: none; }

.yc-faq-a__inner {
  padding-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--yc-gray-300);
  max-width: 65ch;
}
.yc-faq-a__inner strong { color: var(--yc-white); }
.yc-faq-a__inner ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yc-faq-a__inner ul li {
  padding-left: 18px;
  position: relative;
}
.yc-faq-a__inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yc-blue);
  font-size: 0.8rem;
  top: 1px;
}
.yc-faq-a__inner p + p { margin-top: 10px; }

/* Light mode */
[data-theme="light"] .yc-faq-section {
  background-color: var(--yc-gray-900) !important;
}

/* ================================================================
   26. ACCESSIBILITÉ
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--yc-blue);
  outline-offset: 2px;
  border-radius: var(--yc-radius-sm);
}

/* Désactiver outline pour les clics souris (conservé pour clavier) */
:focus:not(:focus-visible) { outline: none; }

/* ================================================================
   28. PAGE DE CONTENU — yc-page.liquid
   ================================================================ */
.yc-page-section { background: var(--yc-black); }

.yc-page-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--yc-gray-700);
  background: var(--yc-gray-900);
}
.yc-page-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yc-blue);
  margin-bottom: 12px;
}
.yc-page-title {
  font-family: var(--yc-font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--yc-white);
}

.yc-page-body {
  padding: 60px var(--yc-gutter) 80px;
}
.yc-page-content {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--yc-gray-100);
}

/* H2 : accent bleu sur la gauche */
.yc-page-content h2 {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  color: var(--yc-white);
  margin: 52px 0 18px;
  padding-left: 16px;
  border-left: 3px solid var(--yc-blue);
  line-height: 1.2;
}
.yc-page-content h2:first-child { margin-top: 0; }

.yc-page-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yc-white);
  margin: 32px 0 10px;
}

.yc-page-content p { line-height: 1.8; }
.yc-page-content p + p { margin-top: 14px; }
.yc-page-content a { color: var(--yc-blue); text-decoration: underline; }
.yc-page-content strong { color: var(--yc-white); font-weight: 700; }

/* Listes : flèche bleue + séparateurs fins */
.yc-page-content ul,
.yc-page-content ol {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}
.yc-page-content ul li,
.yc-page-content ol li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--yc-gray-700);
  line-height: 1.6;
  margin-bottom: 0;
}
.yc-page-content ul li:first-child,
.yc-page-content ol li:first-child { border-top: 1px solid var(--yc-gray-700); }
.yc-page-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--yc-blue);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.6;
}
.yc-page-content ol { counter-reset: yc-ol; }
.yc-page-content ol li { counter-increment: yc-ol; }
.yc-page-content ol li::before {
  content: counter(yc-ol);
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--yc-blue);
  font-weight: 700;
  font-family: var(--yc-font-heading);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Bloc info (blockquote) */
.yc-page-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  background: rgba(0, 66, 255, 0.07);
  border: 1px solid rgba(0, 66, 255, 0.25);
  border-left: 3px solid var(--yc-blue);
  border-radius: 0 6px 6px 0;
}
.yc-page-content blockquote p { margin: 0; color: var(--yc-gray-100); }

/* Séparateur */
.yc-page-content hr {
  border: none;
  border-top: 1px solid var(--yc-gray-700);
  margin: 44px 0;
}

/* Light mode */
[data-theme="light"] .yc-page-hero  { background: #f7f7f7; border-bottom-color: #e2e2e2; }
[data-theme="light"] .yc-page-section { background: #ffffff; }
[data-theme="light"] .yc-page-content { color: #444; }
[data-theme="light"] .yc-page-content h2 { color: #0a0a0a; }
[data-theme="light"] .yc-page-content h3 { color: #0a0a0a; }
[data-theme="light"] .yc-page-content strong { color: #0a0a0a; }
[data-theme="light"] .yc-page-content ul li,
[data-theme="light"] .yc-page-content ol li { border-color: #e2e2e2; }
[data-theme="light"] .yc-page-content blockquote {
  background: rgba(0,66,255,0.04);
  border-color: rgba(0,66,255,0.2);
}

/* ----------------------------------------------------------------
   Info-cards grid (2 colonnes)
   ---------------------------------------------------------------- */
.yc-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.yc-page-grid--two-col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) {
  .yc-page-grid--two-col { grid-template-columns: 1fr; }
}

.yc-info-card {
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: 12px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
}
.yc-info-card__icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 14px;
}
.yc-info-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yc-white);
  margin: 0 0 12px;
}
.yc-info-card__content {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--yc-gray-100);
  flex: 1;
}
.yc-info-card__content p { margin: 0; }
.yc-info-card__content p + p { margin-top: 10px; }
.yc-info-card__content strong { color: var(--yc-white); font-weight: 700; }
.yc-info-card__content a { color: var(--yc-blue); text-decoration: underline; }
.yc-info-card__content ul,
.yc-info-card__content ol {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.yc-info-card__content li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 0.9rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--yc-gray-700);
  line-height: 1.55;
}
.yc-info-card__content li:first-child { border-top: 1px solid var(--yc-gray-700); }
.yc-info-card__content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--yc-blue);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.55;
}
.yc-info-card__content ol { counter-reset: yc-card-ol; }
.yc-info-card__content ol li { counter-increment: yc-card-ol; }
.yc-info-card__content ol li::before {
  content: counter(yc-card-ol);
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--yc-blue);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Light mode — info-cards */
[data-theme="light"] .yc-info-card {
  background: #f7f7f7;
  border-color: #e2e2e2;
}
[data-theme="light"] .yc-info-card__title { color: #0a0a0a; }
[data-theme="light"] .yc-info-card__content { color: #444; }
[data-theme="light"] .yc-info-card__content strong { color: #0a0a0a; }
[data-theme="light"] .yc-info-card__content li { border-color: #e2e2e2; }

/* ================================================================
   29. FEED INSTAGRAM — yc-instagram-feed.liquid
   ================================================================ */
.yc-insta-section {
  background: var(--yc-gray-900);
  overflow: hidden;
}

/* ── En-tête ── */
.yc-insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.yc-insta-title {
  font-family: var(--yc-font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--yc-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.yc-insta-sub {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--yc-gray-400);
  letter-spacing: 0.01em;
}

/* ── Profil Instagram ── */
.yc-insta-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.yc-insta-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 2.5px;
  background: conic-gradient(#f09433, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
  flex-shrink: 0;
}
.yc-insta-avatar__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2.5px solid var(--yc-gray-900);
}
.yc-insta-avatar__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--yc-gray-800);
  border: 2.5px solid var(--yc-gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yc-gray-400);
}
.yc-insta-profile__info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.yc-insta-handle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yc-white);
  letter-spacing: 0.02em;
  display: block;
}
.yc-insta-follow-btn {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yc-white);
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.yc-insta-profile:hover .yc-insta-follow-btn {
  background: var(--yc-white);
  color: var(--yc-black);
  border-color: var(--yc-white);
}

/* ── Feed scroll ── */
.yc-insta-feed-wrap {
  /* Fondu sur la droite pour révéler le scroll */
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
}
.yc-insta-feed {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 60px; /* espace pour le fondu */
  padding-bottom: 4px;
}
.yc-insta-feed::-webkit-scrollbar { display: none; }

/* ── Carte vidéo ── */
.yc-insta-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--yc-gray-700);
  transition: border-color 0.25s;
  cursor: pointer;
}
.yc-insta-card:hover { border-color: rgba(255,255,255,0.28); }
.yc-insta-card--empty { cursor: default; }

.yc-insta-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--yc-gray-800);
}

/* Vidéo autoplay silencieux */
.yc-insta-card__video,
.yc-insta-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.yc-insta-card:hover .yc-insta-card__video,
.yc-insta-card:hover .yc-insta-card__img { transform: scale(1.04); }

/* Bouton play — coin centre */
.yc-insta-card__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.yc-insta-card:hover .yc-insta-card__play-btn { opacity: 1; }
.yc-insta-card__play-btn svg {
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  padding: 12px;
  color: #fff;
}

/* Badge Instagram — coin haut droit */
.yc-insta-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 4;
  text-decoration: none;
  transition: background 0.2s;
}
.yc-insta-card__badge:hover { background: #e1306c; }

/* Overlay légende */
.yc-insta-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px 12px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  pointer-events: none;
}
.yc-insta-card:hover .yc-insta-card__overlay { opacity: 1; }
.yc-insta-card__caption {
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Placeholder carte vide */
.yc-insta-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--yc-gray-500);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
  border: 1.5px dashed var(--yc-gray-700);
}

/* ── Modal vidéo plein écran ── */
.yc-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yc-video-modal[hidden] { display: none; }
.yc-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}
.yc-video-modal__inner {
  position: relative;
  z-index: 1;
  max-width: min(420px, 95vw);
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.yc-video-modal__video {
  width: 100%;
  display: block;
  max-height: 85vh;
  object-fit: contain;
  background: #000;
}
.yc-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.yc-video-modal__close:hover { background: rgba(255,255,255,0.2); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .yc-insta-card { flex: 0 0 200px; border-radius: 10px; }
  .yc-insta-title { font-size: 2rem; }
  .yc-insta-header { gap: 16px; }
}

/* ── Light mode ── */
[data-theme="light"] .yc-insta-section { background: #f5f5f5; }
[data-theme="light"] .yc-insta-title  { color: #0a0a0a; }
[data-theme="light"] .yc-insta-sub    { color: #777; }
[data-theme="light"] .yc-insta-handle { color: #0a0a0a; }
[data-theme="light"] .yc-insta-follow-btn { color: #0a0a0a; border-color: rgba(0,0,0,0.3); }
[data-theme="light"] .yc-insta-profile:hover .yc-insta-follow-btn { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
[data-theme="light"] .yc-insta-avatar__img  { border-color: #f5f5f5; }
[data-theme="light"] .yc-insta-avatar__placeholder { background: #ddd; border-color: #f5f5f5; color: #888; }
[data-theme="light"] .yc-insta-card { background: #fff; border-color: #e0e0e0; }
[data-theme="light"] .yc-insta-card__media { background: #e8e8e8; }
[data-theme="light"] .yc-insta-card__placeholder { color: #999; border-color: #ccc; }

/* ================================================================
   RECHERCHE — yc-search.liquid
   ================================================================ */
.yc-search-section { background: var(--yc-black); }

.yc-search-hero {
  padding: 60px 0 48px;
  background: var(--yc-gray-900);
  border-bottom: 1px solid var(--yc-gray-700);
}
.yc-search-title {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--yc-white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.yc-search-term { color: var(--yc-blue); }

.yc-search-form { width: 100%; max-width: 680px; }
.yc-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.yc-search-icon {
  position: absolute;
  left: 16px;
  color: var(--yc-gray-500);
  pointer-events: none;
  flex-shrink: 0;
}
.yc-search-input {
  flex: 1;
  height: 52px;
  padding: 0 16px 0 48px;
  background: var(--yc-gray-800);
  border: 1.5px solid var(--yc-gray-700);
  border-right: none;
  border-radius: var(--yc-radius-sm) 0 0 var(--yc-radius-sm);
  color: var(--yc-white);
  font-family: var(--yc-font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--yc-transition);
}
.yc-search-input::placeholder { color: var(--yc-gray-500); }
.yc-search-input:focus { border-color: var(--yc-blue); }
.yc-search-btn {
  height: 52px;
  border-radius: 0 var(--yc-radius-sm) var(--yc-radius-sm) 0;
  white-space: nowrap;
}

.yc-search-results { padding: 48px 0 80px; }

/* Résultats page/article */
.yc-search-page-result { border-bottom: 1px solid var(--yc-gray-700); }
.yc-search-page-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  transition: color var(--yc-transition);
}
.yc-search-page-link:hover { color: var(--yc-blue); }
.yc-search-page-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yc-blue);
  padding: 2px 8px;
  border: 1px solid var(--yc-blue);
  border-radius: var(--yc-radius-sm);
  white-space: nowrap;
}
.yc-search-page-title { flex: 1; font-size: 0.95rem; }
.yc-search-page-link svg { flex-shrink: 0; color: var(--yc-gray-500); }

/* État vide */
.yc-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
  color: var(--yc-gray-300);
}
.yc-search-empty svg { opacity: 0.3; }
.yc-search-empty p { font-size: 1.05rem; }
.yc-search-suggest { font-size: 0.9rem; color: var(--yc-gray-500); }
.yc-search-suggest em { font-style: normal; color: var(--yc-blue); }

[data-theme="light"] .yc-search-hero { background: var(--yc-gray-900); }
[data-theme="light"] .yc-search-input {
  background: var(--yc-gray-800);
  border-color: var(--yc-gray-700);
  color: var(--yc-white);
}

/* ================================================================
   404 — yc-404.liquid
   ================================================================ */
.yc-404-section {
  background: var(--yc-black);
  min-height: calc(100vh - var(--yc-header-h));
  display: flex;
  align-items: center;
}
.yc-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  gap: 20px;
}
.yc-404-code {
  font-family: var(--yc-font-heading);
  font-size: clamp(7rem, 20vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px var(--yc-gray-700);
  user-select: none;
}
.yc-404-title {
  font-family: var(--yc-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--yc-white);
  letter-spacing: -0.02em;
}
.yc-404-desc {
  font-size: 1.05rem;
  color: var(--yc-gray-300);
  line-height: 1.7;
  max-width: 42ch;
}
.yc-404-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ================================================================
   27. PAGE COLLECTION — yc-collection.liquid
   ================================================================ */

/* ── Hero collection ── */
.yc-coll-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--yc-gray-900);
  border-bottom: 1px solid var(--yc-gray-700);
}

.yc-coll-hero__img {
  position: absolute;
  inset: 0;
}
.yc-coll-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.yc-coll-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.yc-coll-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 60px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

/* Sans image de collection */
.yc-coll-hero:not(:has(.yc-coll-hero__img)) .yc-coll-hero__content {
  padding-top: 40px;
}

.yc-coll-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yc-blue);
  margin-bottom: 8px;
}

.yc-coll-title {
  font-family: var(--yc-font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--yc-white);
  margin-bottom: 8px;
}

.yc-coll-desc {
  font-size: 0.95rem;
  color: var(--yc-gray-300);
  max-width: 55ch;
  line-height: 1.55;
}

.yc-coll-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  padding: 16px 24px;
  background: rgba(0,66,255,0.15);
  border: 1px solid rgba(0,66,255,0.35);
  border-radius: var(--yc-radius-sm);
  gap: 2px;
}
.yc-coll-count__num {
  font-family: var(--yc-font-heading);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--yc-blue);
  letter-spacing: -0.03em;
}
.yc-coll-count__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yc-gray-300);
}

/* ── Section principale ── */
.yc-collection-section { background: var(--yc-black); }

/* ── Barre de tri ── */
.yc-coll-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--yc-gray-700);
  flex-wrap: wrap;
}

.yc-coll-toolbar__results {
  font-size: 0.85rem;
  color: var(--yc-gray-300);
}

.yc-coll-sort-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yc-sort-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yc-gray-300);
  white-space: nowrap;
}
.yc-sort-select {
  appearance: none;
  background: var(--yc-gray-900);
  color: var(--yc-white);
  border: 1.5px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  padding: 8px 36px 8px 12px;
  font-family: var(--yc-font-body);
  font-size: 0.85rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--yc-transition);
}
.yc-sort-select:hover,
.yc-sort-select:focus { border-color: var(--yc-blue); outline: none; }

/* ── Grille vide ── */
.yc-coll-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 20px;
  text-align: center;
  color: var(--yc-gray-300);
}
.yc-coll-empty svg { opacity: 0.35; }
.yc-coll-empty p { font-size: 1rem; }

/* ── Pagination ── */
.yc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.yc-pag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  color: var(--yc-white);
  transition: border-color var(--yc-transition), background var(--yc-transition);
}
.yc-pag-btn:hover { border-color: var(--yc-blue); color: var(--yc-blue); }

.yc-pag-pages { display: flex; align-items: center; gap: 4px; }

.yc-pag-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--yc-radius-sm);
  color: var(--yc-white);
  transition: border-color var(--yc-transition), background var(--yc-transition), color var(--yc-transition);
}
a.yc-pag-page:hover { border-color: var(--yc-gray-700); }
.yc-pag-page--current {
  background: var(--yc-blue);
  border-color: var(--yc-blue);
  color: #fff;
}
.yc-pag-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 0.9rem;
  color: var(--yc-gray-500);
}

/* ── Light mode ── */
[data-theme="light"] .yc-coll-hero { background: var(--yc-gray-900); }
[data-theme="light"] .yc-collection-section { background: var(--yc-black); }
[data-theme="light"] .yc-sort-select {
  background-color: var(--yc-gray-900);
  color: var(--yc-white);
  border-color: var(--yc-gray-700);
}

/* ═══════════════════════════════════════════════════════════════
   Section 29 — PAGE À PROPOS
═══════════════════════════════════════════════════════════════ */

/* Hero */
.yc-about__hero {
  background: var(--yc-black);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.yc-about__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,66,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.yc-about__eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yc-blue);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.yc-about__title {
  font-family: 'Redaction35', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--yc-white);
  margin: 0 0 24px;
}
.yc-about__lead {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--yc-gray-400);
  max-width: 600px;
  margin: 0;
}
.yc-about__hero-line {
  height: 1px;
  background: linear-gradient(90deg, var(--yc-blue) 0%, transparent 60%);
  margin-top: 60px;
  opacity: .5;
}

/* Histoire */
.yc-about__story {
  background: var(--yc-black);
  padding: 80px 0;
  border-top: 1px solid var(--yc-gray-800);
}
.yc-about__story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.yc-about__section-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--yc-blue);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.yc-about__section-title {
  font-family: 'Redaction35', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--yc-white);
  margin: 0 0 28px;
}
.yc-about__story-text p {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--yc-gray-400);
  margin: 0 0 16px;
}
.yc-about__story-text p:last-child { margin-bottom: 0; }

/* Stats block */
.yc-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--yc-gray-800);
  border-radius: 16px;
  overflow: hidden;
}
.yc-about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px;
  background: var(--yc-gray-900);
  gap: 8px;
}
.yc-about__stat:nth-child(1) { border-radius: 14px 0 0 0; }
.yc-about__stat:nth-child(2) { border-radius: 0 14px 0 0; }
.yc-about__stat:nth-child(3) { border-radius: 0 0 0 14px; }
.yc-about__stat:nth-child(4) { border-radius: 0 0 14px 0; }
.yc-about__stat-num {
  font-family: 'Redaction35', serif;
  font-size: 2.2rem;
  color: var(--yc-white);
  line-height: 1;
}
.yc-about__stat-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.78rem;
  color: var(--yc-gray-500);
  letter-spacing: 0.04em;
}

/* Valeurs */
.yc-about__values {
  background: var(--yc-gray-900);
  padding: 80px 0;
  border-top: 1px solid var(--yc-gray-800);
}
.yc-about__values > .page-width > .yc-about__section-label { margin-bottom: 12px; }
.yc-about__values > .page-width > .yc-about__section-title { margin-bottom: 48px; }
.yc-about__values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.yc-about__value-card {
  background: var(--yc-black);
  border: 1px solid var(--yc-gray-800);
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 250ms ease, transform 250ms ease;
}
.yc-about__value-card:hover {
  border-color: var(--yc-blue);
  transform: translateY(-4px);
}
.yc-about__value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0,66,255,.12);
  color: var(--yc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.yc-about__value-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--yc-white);
  margin: 0 0 10px;
}
.yc-about__value-desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--yc-gray-500);
  margin: 0;
}

/* Promesse */
.yc-about__promise {
  background: var(--yc-blue);
  padding: 80px 0;
}
.yc-about__promise-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.yc-about__promise-text .yc-about__section-label { color: rgba(255,255,255,.6); }
.yc-about__promise-title {
  font-family: 'Redaction35', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--yc-white);
  margin: 0 0 16px;
  line-height: 1.1;
}
.yc-about__promise-text p {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin: 0;
  max-width: 500px;
}
.yc-about__promise-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.yc-about__promise .btn--primary {
  background: var(--yc-white);
  color: var(--yc-blue);
  border-color: var(--yc-white);
}
.yc-about__promise .btn--primary:hover { background: rgba(255,255,255,.9); }
.yc-about__promise .btn--secondary {
  background: transparent;
  color: var(--yc-white);
  border-color: rgba(255,255,255,.5);
}
.yc-about__promise .btn--secondary:hover { border-color: var(--yc-white); }

/* Responsive À propos */
@media (max-width: 900px) {
  .yc-about__story-inner { grid-template-columns: 1fr; gap: 48px; }
  .yc-about__values-grid { grid-template-columns: repeat(2, 1fr); }
  .yc-about__promise-inner { flex-direction: column; align-items: flex-start; }
  .yc-about__promise-actions { flex-direction: row; }
}
@media (max-width: 600px) {
  .yc-about__hero { padding: 72px 0 56px; }
  .yc-about__values-grid { grid-template-columns: 1fr; }
  .yc-about__promise-actions { flex-direction: column; width: 100%; }
  .yc-about__stats { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   Section 30 — PAGE CONTACT
═══════════════════════════════════════════════════════════════ */

/* Hero */
.yc-contact__hero {
  background: var(--yc-black);
  padding: 100px 0 72px;
  position: relative;
}
.yc-contact__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 20% 60%, rgba(0,66,255,.1) 0%, transparent 70%);
  pointer-events: none;
}
.yc-contact__eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yc-blue);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.yc-contact__title {
  font-family: 'Redaction35', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--yc-white);
  margin: 0 0 24px;
}
.yc-contact__lead {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--yc-gray-400);
  max-width: 560px;
  margin: 0;
}

/* Corps */
.yc-contact__body {
  background: var(--yc-black);
  padding: 60px 0 100px;
  border-top: 1px solid var(--yc-gray-800);
}
.yc-contact__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.yc-contact__col-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yc-white);
  margin: 0 0 28px;
}

/* Formulaire */
.yc-contact-form { display: flex; flex-direction: column; gap: 20px; }
.yc-contact-field { display: flex; flex-direction: column; gap: 8px; }
.yc-contact-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yc-gray-300);
  letter-spacing: 0.02em;
}
.yc-contact-label span { color: var(--yc-blue); }
.yc-contact-input,
.yc-contact-select,
.yc-contact-textarea {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: var(--yc-white);
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  -webkit-appearance: none;
}
.yc-contact-input::placeholder,
.yc-contact-textarea::placeholder { color: var(--yc-gray-600); }
.yc-contact-input:focus,
.yc-contact-select:focus,
.yc-contact-textarea:focus {
  border-color: var(--yc-blue);
  box-shadow: 0 0 0 3px rgba(0,66,255,.2);
}
.yc-contact-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: var(--yc-gray-300);
}
.yc-contact-select option { background: var(--yc-gray-900); }
.yc-contact-textarea { resize: vertical; min-height: 140px; }

/* Feedback messages */
.yc-contact-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,200,100,.1);
  border: 1px solid rgba(0,200,100,.3);
  border-radius: 10px;
  padding: 16px 20px;
  color: #00c864;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
}
.yc-contact-success svg { flex-shrink: 0; }
.yc-contact-error {
  background: rgba(255,50,50,.1);
  border: 1px solid rgba(255,50,50,.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #ff4444;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
}

/* Panneau infos */
.yc-contact__info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.yc-contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--yc-gray-800);
}
.yc-contact-info-block:first-of-type { border-top: 1px solid var(--yc-gray-800); }
.yc-contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,66,255,.1);
  color: var(--yc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yc-contact-info-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yc-gray-500);
  margin: 0 0 4px;
}
.yc-contact-info-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: var(--yc-white);
  text-decoration: none;
  margin: 0;
}
a.yc-contact-info-value:hover { color: var(--yc-blue); }

/* Réseaux sociaux */
.yc-contact__socials {
  padding: 24px 0 0;
}
.yc-contact__social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.yc-contact__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: 50px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yc-white);
  text-decoration: none;
  transition: border-color 200ms, background 200ms;
}
.yc-contact__social-btn:hover {
  border-color: var(--yc-blue);
  background: rgba(0,66,255,.1);
  color: var(--yc-white);
}

/* FAQ link */
.yc-contact__faq-link {
  padding: 24px 0 0;
}
.yc-contact__faq-link p {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  color: var(--yc-gray-500);
  margin: 0 0 10px;
}
.yc-contact__faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--yc-blue);
  text-decoration: none;
  transition: opacity 200ms;
}
.yc-contact__faq-btn:hover { opacity: .75; }

/* Responsive Contact */
@media (max-width: 900px) {
  .yc-contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .yc-contact__hero { padding: 72px 0 56px; }
}
@media (max-width: 600px) {
  .yc-contact__hero { padding: 60px 0 48px; }
}

/* ================================================================
   31. PAGE PRODUIT — CRO v2 (badges, trust grid, hover states…)
   ================================================================ */

/* ---- Badges produit (top info) ---- */
.yc-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.yc-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-family: var(--yc-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 1;
}
.yc-badge--solid {
  background: var(--yc-blue);
  color: #fff;
  border: 1.5px solid var(--yc-blue);
}
.yc-badge--outline {
  background: transparent;
  color: var(--yc-white);
  border: 1.5px solid var(--yc-white);
}
.yc-badge--unique {
  background: transparent;
  color: #f59e0b;
  border: 1.5px solid #f59e0b;
}
.yc-badge--sale {
  background: #ef4444;
  color: #fff;
  border: 1.5px solid #ef4444;
}

/* ---- Tagline (extrait description) ---- */
.yc-product-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--yc-gray-300);
  margin: 0;
}

/* ---- Barre de statut inline (stock + viewers) ---- */
.yc-product-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.yc-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.yc-status-dot--ok       { background: #22c55e; animation: yc-pulse-grn 2s infinite; }
.yc-status-dot--low      { background: #f59e0b; }
.yc-status-dot--critical { background: #ef4444; }
.yc-status-dot--out      { background: var(--yc-gray-500); }
.yc-status-text  { color: var(--yc-gray-300); font-weight: 600; }
.yc-status-text strong { color: var(--yc-white); }
.yc-status-sep   { color: var(--yc-gray-700); }
.yc-status-viewers { color: var(--yc-gray-500); font-size: 0.78rem; }

/* ---- Stars avec badge "vérifiés" ---- */
.yc-stars-sep { color: var(--yc-gray-700); font-size: 0.85rem; }
.yc-stars-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #22c55e;
}

/* ---- Rangée Quantité + ATC ---- */
.yc-action-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.yc-product-qty {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border: 1.5px solid var(--yc-gray-700);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--yc-transition);
}
.yc-product-qty:focus-within { border-color: var(--yc-blue); }
.yc-product-qty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 52px;
  background: transparent;
  border: none;
  color: var(--yc-white);
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
  transition: background 150ms, color 150ms;
  flex-shrink: 0;
}
.yc-product-qty__btn:hover {
  background: var(--yc-gray-800);
  color: var(--yc-blue);
}
.yc-product-qty__input {
  width: 48px;
  text-align: center;
  font-family: var(--yc-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  background: transparent;
  color: var(--yc-white);
  border: none;
  border-left:  1.5px solid var(--yc-gray-700);
  border-right: 1.5px solid var(--yc-gray-700);
  outline: none;
  -moz-appearance: textfield;
}
.yc-product-qty__input::-webkit-outer-spin-button,
.yc-product-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }
.yc-action-row .yc-atc-btn { flex: 1; min-width: 0; }

/* ---- Bouton "Acheter maintenant" ---- */
.yc-buynow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  font-family: var(--yc-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--yc-white);
  border: 2px solid var(--yc-gray-700);
  border-radius: 10px;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms, transform 80ms;
  white-space: nowrap;
}
.yc-buynow-btn:hover {
  background: var(--yc-white);
  color: var(--yc-black);
  border-color: var(--yc-white);
}
.yc-buynow-btn:active { transform: scale(0.985); }

/* ---- Trust grid (4 icônes) ---- */
.yc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px;
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
}
@media (max-width: 480px) {
  .yc-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
.yc-trust-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--yc-gray-300);
  line-height: 1.3;
}
.yc-trust-grid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yc-gray-800);
  border: 1px solid var(--yc-gray-700);
  color: var(--yc-blue);
  transition: background 200ms, border-color 200ms;
}
.yc-trust-grid__item:hover .yc-trust-grid__icon {
  background: rgba(0,66,255,.12);
  border-color: var(--yc-blue);
}

/* ---- Icônes paiement ---- */
.yc-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.yc-pay-svg {
  height: 26px;
  width: auto;
  border-radius: 4px;
  opacity: .7;
  transition: opacity 200ms;
}
.yc-pay-svg:hover { opacity: 1; }

/* ---- Variant pills avec prix ---- */
.yc-opt-btn {
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
}
.yc-opt-btn__label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.yc-opt-btn__price {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  color: var(--yc-gray-400);
  transition: color 150ms;
}
.yc-opt-btn--active .yc-opt-btn__price { color: rgba(255,255,255,.75); }
.yc-opt-btn:hover .yc-opt-btn__price   { color: var(--yc-gray-200); }

/* ---- Hover states — variant pills ---- */
.yc-opt-btn:hover {
  border-color: var(--yc-white);
  color: var(--yc-white);
  background: rgba(255,255,255,.06);
}
.yc-opt-btn--active {
  background: var(--yc-blue) !important;
  border-color: var(--yc-blue) !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(0,66,255,.25);
}
.yc-opt-btn--active:hover { box-shadow: 0 0 0 4px rgba(0,66,255,.4); }

/* ---- ATC arrondi ---- */
.yc-atc-btn { border-radius: 10px !important; }

/* ---- Hover states — ATC + Buy Now ---- */
.yc-atc-btn {
  position: relative;
  overflow: hidden;
}
.yc-atc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%);
  transition: transform 280ms ease;
  pointer-events: none;
}
.yc-atc-btn:hover:not(:disabled)::before { transform: translateX(0); }
.yc-atc-btn:hover:not(:disabled) {
  background: var(--yc-blue-dark);
  border-color: var(--yc-blue-dark);
}

/* ---- Hover states — thumbnails ---- */
.yc-thumb { transition: border-color 150ms, transform 150ms, box-shadow 150ms; }
.yc-thumb:hover { transform: scale(1.05); box-shadow: 0 0 0 2px var(--yc-blue); }

/* ---- Hover states — accordéons ---- */
.yc-accordion__trigger {
  padding-left: 0;
  transition: color var(--yc-transition), padding-left var(--yc-transition);
}
.yc-accordion__trigger:hover {
  color: var(--yc-blue);
  padding-left: 10px;
}
.yc-accordion__trigger[aria-expanded="true"] { color: var(--yc-blue); }

/* ================================================================
   CSS hérité section 31 (breadcrumb, urgence, sticky…)
   ================================================================ */

/* ---- Breadcrumb ---- */
.yc-product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--yc-gray-500);
}
.yc-product-breadcrumb a {
  color: var(--yc-gray-500);
  text-decoration: none;
  transition: color var(--yc-transition);
}
.yc-product-breadcrumb a:hover { color: var(--yc-white); }
.yc-product-breadcrumb span[aria-hidden] { opacity: .4; }
.yc-product-breadcrumb span[aria-current] { color: var(--yc-gray-300); }

/* ---- Meta row (vendor + étoiles) ---- */
.yc-product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---- Étoiles / social proof ---- */
.yc-product-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.yc-stars-icons {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  line-height: 1;
}
.yc-stars-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yc-white);
}
.yc-stars-total {
  font-size: 0.78rem;
  color: var(--yc-gray-500);
}

/* ---- Badge prix ---- */
.yc-price-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--yc-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--yc-radius-sm);
  text-transform: uppercase;
}

/* ---- Bloc urgence ---- */
.yc-urgency-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Viewers */
.yc-viewers {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--yc-gray-300);
}
.yc-viewers-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: yc-pulse-grn 2s infinite;
}
@keyframes yc-pulse-grn {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  60%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Badges stock */
.yc-stock-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}
.yc-stock-badge svg { flex-shrink: 0; }
.yc-stock-badge--ok       { color: #22c55e; }
.yc-stock-badge--low      { color: #f59e0b; }
.yc-stock-badge--critical { color: #ef4444; }
.yc-stock-badge--out      { color: var(--yc-gray-500); }

/* ---- Formulaire produit : espacement entre les boutons ---- */
[data-product-form] {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---- Bouton ATC complet ---- */
.yc-atc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--yc-font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--yc-blue);
  color: #fff;
  border: 2px solid var(--yc-blue);
  border-radius: var(--yc-radius-sm);
  cursor: pointer;
  transition: background var(--yc-transition), border-color var(--yc-transition), transform 80ms;
  white-space: nowrap;
  text-decoration: none;
}
.yc-atc-btn:hover:not(:disabled) {
  background: var(--yc-blue-dark);
  border-color: var(--yc-blue-dark);
}
.yc-atc-btn:active:not(:disabled) { transform: scale(0.985); }

/* ---- Micro-trust (sous ATC) ---- */
.yc-micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.yc-micro-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--yc-gray-500);
  white-space: nowrap;
}
.yc-micro-trust-item svg { color: var(--yc-gray-500); flex-shrink: 0; }
.yc-micro-trust-sep {
  color: var(--yc-gray-700);
  font-size: 0.8rem;
  line-height: 1;
}

/* ---- Compteur images (overlay galerie) ---- */
.yc-gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 50px;
  pointer-events: none;
}

/* ---- Garantie sous galerie ---- */
.yc-gallery-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--yc-gray-300);
}
.yc-gallery-guarantee svg { color: var(--yc-blue); flex-shrink: 0; }

/* ---- Barre ATC sticky mobile ---- */
.sticky-atc-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: var(--yc-gray-900);
  border-top: 1px solid var(--yc-gray-700);
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  transform: translateY(0);
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
}
.sticky-atc-mobile[aria-hidden="true"] {
  transform: translateY(110%);
  pointer-events: none;
}
.sticky-atc-mobile__info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sticky-atc-mobile__info img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: var(--yc-radius-sm);
  border: 1px solid var(--yc-gray-700);
}
.sticky-atc-mobile__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yc-white);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-atc-mobile__price {
  font-size: 0.78rem;
  color: var(--yc-gray-300);
  margin: 0;
}
.yc-atc-btn--sticky {
  flex-shrink: 0;
  width: auto;
  padding: 12px 20px;
  font-size: 0.85rem;
}
/* Masquer la barre sur desktop */
@media (min-width: 768px) {
  .sticky-atc-mobile { display: none; }
}

/* Responsive product page */
@media (max-width: 767px) {
  .yc-product-breadcrumb { margin-bottom: 20px; }
  .yc-gallery-guarantee  { display: none; }
  /* Galerie : pas de sticky sur mobile (colonne unique → bloquerait le scroll) */
  .yc-product-gallery    { position: static; }
  /* Barre sticky ATC : padding bas pour safe-area iOS */
  .sticky-atc-mobile {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* ================================================================
   32. PAGE PANIER — yc-cart.liquid
   ================================================================ */

.yc-cart-section { background: var(--yc-black); min-height: 60vh; }

/* ---- En-tête ---- */
.yc-cart-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--yc-gray-700);
}
.yc-cart-title {
  font-family: var(--yc-font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
  color: var(--yc-white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.yc-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: var(--yc-blue);
  color: #fff;
  font-family: var(--yc-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0;
}
.yc-cart-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yc-gray-500);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--yc-transition);
}
.yc-cart-back:hover { color: var(--yc-white); }

/* ---- Layout 2 col ---- */
.yc-cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .yc-cart-layout {
    grid-template-columns: 1fr 360px;
    gap: 48px;
  }
}
@media (min-width: 1200px) {
  .yc-cart-layout { grid-template-columns: 1fr 400px; }
}

/* ---- En-tête colonnes ---- */
.yc-cart-items-head {
  display: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yc-gray-500);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--yc-gray-700);
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
}
@media (min-width: 640px) {
  .yc-cart-items-head { display: grid; }
}
.yc-col-price  { text-align: right; }
.yc-col-qty    { text-align: center; }
.yc-col-total  { text-align: right; }
.yc-cart-item__qty-fixed {
  font-size: 0.88rem;
  color: var(--yc-gray-300);
  display: block;
  text-align: center;
}

/* ---- Article ---- */
.yc-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--yc-gray-700);
  transition: opacity var(--yc-transition);
}
@media (min-width: 640px) {
  .yc-cart-item {
    grid-template-columns: 80px 1fr auto auto;
    align-items: center;
  }
}
.yc-cart-item__media {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  background: var(--yc-gray-800);
}
.yc-cart-item__media img,
.yc-cart-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yc-cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.yc-cart-item__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yc-white);
  text-decoration: none;
  line-height: 1.3;
  transition: color var(--yc-transition);
}
.yc-cart-item__name:hover { color: var(--yc-blue); }
.yc-cart-item__variant {
  font-size: 0.78rem;
  color: var(--yc-gray-500);
  margin: 0;
}
.yc-cart-item__discount {
  font-size: 0.75rem;
  color: #22c55e;
  margin: 0;
}
.yc-cart-item__compare {
  font-size: 0.8rem;
  color: var(--yc-gray-500);
  text-decoration: line-through;
  display: block;
}
.yc-cart-item__remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--yc-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yc-gray-500);
  cursor: pointer;
  transition: color var(--yc-transition);
  width: fit-content;
}
.yc-cart-item__remove:hover { color: #ef4444; }

/* Prix sur mobile (dans details) */
.yc-cart-item__price-mobile {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yc-white);
}
@media (min-width: 640px) { .yc-cart-item__price-mobile { display: none; } }

/* Prix, qty, total desktop */
.yc-cart-item__price,
.yc-cart-item__line-total {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yc-white);
  text-align: right;
  display: none;
}
.yc-cart-item__qty { display: none; }
@media (min-width: 640px) {
  .yc-cart-item__price  { display: block; }
  .yc-cart-item__qty    { display: flex; justify-content: center; }
  .yc-cart-item__line-total { display: block; }
}

/* ---- Contrôle quantité (panier) ---- */
.yc-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  overflow: hidden;
}
.yc-qty-ctrl__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 38px;
  background: transparent;
  border: none;
  color: var(--yc-white);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--yc-transition), color var(--yc-transition);
  flex-shrink: 0;
}
.yc-qty-ctrl__btn:hover { background: var(--yc-gray-800); color: var(--yc-blue); }
.yc-qty-ctrl__input {
  width: 44px;
  height: 38px;
  text-align: center;
  font-family: var(--yc-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  background: transparent;
  color: var(--yc-white);
  border: none;
  border-left:  1.5px solid var(--yc-gray-700);
  border-right: 1.5px solid var(--yc-gray-700);
  outline: none;
  -moz-appearance: textfield;
}
.yc-qty-ctrl__input::-webkit-outer-spin-button,
.yc-qty-ctrl__input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ---- Récapitulatif (aside) ---- */
.yc-cart-summary {
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--yc-header-h) + 16px);
}
.yc-cart-summary__title {
  font-family: var(--yc-font-heading);
  font-size: 1.4rem;
  color: var(--yc-white);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Code promo */
.yc-cart-discount__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yc-gray-300);
  margin-bottom: 8px;
}
.yc-cart-discount__row {
  display: flex;
  gap: 8px;
}
.yc-cart-discount__input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  background: var(--yc-gray-800);
  border: 1.5px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  font-family: var(--yc-font-body);
  font-size: 0.85rem;
  color: var(--yc-white);
  outline: none;
  transition: border-color var(--yc-transition);
}
.yc-cart-discount__input::placeholder { color: var(--yc-gray-500); }
.yc-cart-discount__input:focus { border-color: var(--yc-blue); }
.yc-cart-discount__apply {
  height: 42px;
  padding: 0 16px;
  background: var(--yc-gray-800);
  border: 1.5px solid var(--yc-gray-700);
  border-radius: var(--yc-radius-sm);
  font-family: var(--yc-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yc-white);
  cursor: pointer;
  transition: border-color var(--yc-transition), background var(--yc-transition);
  white-space: nowrap;
}
.yc-cart-discount__apply:hover {
  border-color: var(--yc-blue);
  background: rgba(0,66,255,.1);
}

/* Lignes de totaux */
.yc-cart-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--yc-gray-700);
}
.yc-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--yc-white);
}
.yc-cart-summary__row--muted { color: var(--yc-gray-500); font-size: 0.8rem; }
.yc-cart-summary__row--green { color: #22c55e; }

/* Total final */
.yc-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--yc-white);
}
.yc-cart-summary__note {
  font-size: 0.72rem;
  color: var(--yc-gray-500);
  margin: -10px 0 0;
  line-height: 1.5;
}

/* Bouton checkout */
.yc-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--yc-blue);
  color: #fff;
  border: 2px solid var(--yc-blue);
  border-radius: 10px;
  font-family: var(--yc-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--yc-transition), border-color var(--yc-transition), transform 80ms;
}
.yc-checkout-btn:hover { background: var(--yc-blue-dark); border-color: var(--yc-blue-dark); }
.yc-checkout-btn:active { transform: scale(0.985); }

/* Paiement express */
.yc-cart-express {
  text-align: center;
}
.yc-cart-express__sep {
  font-size: 0.74rem;
  color: var(--yc-gray-500);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.yc-cart-express__sep::before,
.yc-cart-express__sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--yc-gray-700);
}

/* Trust stripe */
.yc-cart-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.yc-cart-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yc-gray-500);
}
.yc-cart-trust__item svg { color: var(--yc-blue); flex-shrink: 0; }

/* ---- Panier vide ---- */
.yc-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 80px 24px;
}
.yc-cart-empty__icon {
  color: var(--yc-gray-700);
  margin-bottom: 8px;
}
.yc-cart-empty__title {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--yc-white);
  letter-spacing: -0.02em;
  margin: 0;
}
.yc-cart-empty__text {
  font-size: 0.95rem;
  color: var(--yc-gray-500);
  max-width: 400px;
  margin: 0;
}

/* ---- Overlay loading ---- */
.yc-cart-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  transition: opacity 200ms;
}
.yc-cart-loading[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.yc-cart-loading[aria-hidden="false"] { opacity: 1; }
.yc-cart-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--yc-blue);
  border-radius: 50%;
  animation: yc-spin 700ms linear infinite;
}
@keyframes yc-spin { to { transform: rotate(360deg); } }

/* ---- Responsive mobile ---- */
@media (max-width: 639px) {
  .yc-cart-header  { margin-bottom: 24px; }
  .yc-cart-summary { padding: 20px; }
  .yc-cart-item    { gap: 12px; }
  .yc-cart-item__media { width: 70px; height: 70px; }

  /* Qty control : visible sur mobile, placé en 2e colonne sous les détails */
  .yc-cart-item__qty {
    display: flex;
    justify-content: flex-start;
    grid-column: 2;
    margin-top: 4px;
  }
  /* Prix ligne total mobile : affiché dans les détails, désactiver la colonne desktop */
  .yc-cart-item__line-total {
    display: block;
    grid-column: 2;
    font-size: 0.88rem;
    text-align: left;
    margin-top: 2px;
  }
}

/* ================================================================
   FICHE TECHNIQUE — specs inline
   ================================================================ */

/* Specs inline dans l'accordéon */
.yc-specs-inline {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.yc-specs-inline__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: baseline;
}
.yc-specs-inline__row:last-child { border-bottom: none; }
.yc-specs-inline dt {
  font-size: 0.82rem;
  color: var(--yc-gray-300);
  font-weight: 500;
  margin: 0;
}
.yc-specs-inline dd {
  font-size: 0.88rem;
  color: var(--yc-white);
  font-weight: 500;
  margin: 0;
}
[data-theme="light"] .yc-specs-inline__row { border-bottom-color: #eee; }
[data-theme="light"] .yc-specs-inline dt { color: #666; }
[data-theme="light"] .yc-specs-inline dd { color: #000; }

/* ─── LEGACY (popup supprimé) ─── */
.yc-specs-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--yc-gray-500);
  color: var(--yc-gray-300);
  cursor: pointer;
  padding: 0 0 1px;
  font-family: var(--yc-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  transition: color 200ms ease, border-color 200ms ease;
}
.yc-specs-trigger:hover {
  color: var(--yc-white);
  border-bottom-color: transparent;
}
.yc-specs-trigger svg { flex-shrink: 0; }

/* Popup container */
.yc-specs-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.yc-specs-popup.is-open { pointer-events: auto; }

/* Overlay */
.yc-specs-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 300ms ease;
  cursor: pointer;
}
.yc-specs-popup.is-open .yc-specs-popup__overlay { opacity: 1; }

/* Panel — centré sur desktop, slide-up sur mobile */
.yc-specs-popup__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yc-gray-900);
  border-radius: 20px 20px 0 0;
  border: 1px solid var(--yc-gray-700);
  border-bottom: none;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.yc-specs-popup.is-open .yc-specs-popup__panel { transform: translateY(0); }

@media (min-width: 768px) {
  .yc-specs-popup__panel {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -40%) scale(0.96);
    width: min(520px, 90vw);
    border-radius: 16px;
    border: 1px solid var(--yc-gray-700);
    max-height: 80vh;
  }
  .yc-specs-popup.is-open .yc-specs-popup__panel {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* En-tête du popup */
.yc-specs-popup__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--yc-gray-700);
  flex-shrink: 0;
}
.yc-specs-popup__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yc-blue);
  margin: 0 0 4px;
}
.yc-specs-popup__title {
  font-family: var(--yc-font-heading);
  font-size: 1.4rem;
  color: var(--yc-white);
  margin: 0;
  letter-spacing: -0.01em;
}
.yc-specs-popup__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: none;
  color: var(--yc-gray-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--yc-transition), border-color var(--yc-transition);
}
.yc-specs-popup__close:hover { color: var(--yc-white); border-color: rgba(255,255,255,0.6); }

/* Corps scrollable */
.yc-specs-popup__body {
  overflow-y: auto;
  padding: 8px 24px 24px;
  overscroll-behavior: contain;
}

/* Liste des specs */
.yc-specs-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.yc-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--yc-gray-700);
  align-items: baseline;
}
.yc-specs-row:last-child { border-bottom: none; }
.yc-specs-label {
  font-size: 0.82rem;
  color: var(--yc-gray-300);
  font-weight: 500;
}
.yc-specs-value {
  font-size: 0.88rem;
  color: var(--yc-white);
  font-weight: 600;
  text-align: right;
}

/* Light mode */
[data-theme="light"] .yc-specs-popup__panel {
  background: #ffffff;
  border-color: #e5e5e5;
}
[data-theme="light"] .yc-specs-popup__close { border-color: rgba(0,0,0,0.15); color: #666; }
[data-theme="light"] .yc-specs-popup__close:hover { color: #000; border-color: #000; }
[data-theme="light"] .yc-specs-label { color: #666; }
[data-theme="light"] .yc-specs-value { color: #000; }
[data-theme="light"] .yc-specs-row { border-bottom-color: #eee; }

/* ================================================================
   QUICK BUY — bouton sous les infos de la carte
   ================================================================ */
.product-card__quick-buy { margin: 0; }
.product-card__qb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px 16px;
  margin-top: 10px;
  background: var(--yc-blue);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--yc-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background var(--yc-transition);
}
.product-card__qb-btn:hover { background: var(--yc-blue-dark); }
.product-card__qb-btn--out {
  background: var(--yc-gray-700);
  color: var(--yc-gray-300);
  cursor: default;
}
.product-card__qb-btn--out:hover { background: var(--yc-gray-700); }

/* ================================================================
   BACK-IN-STOCK — formulaire "Me prévenir"
   ================================================================ */
.yc-notify-form {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: 10px;
}
.yc-notify-form[hidden] { display: none; }
.yc-notify-form__label {
  font-size: 0.82rem;
  color: var(--yc-gray-300);
  margin: 0 0 12px;
  line-height: 1.4;
}
.yc-notify-form__row {
  display: flex;
  gap: 8px;
}
.yc-notify-form__input {
  flex: 1;
  background: var(--yc-gray-800);
  border: 1px solid var(--yc-gray-700);
  color: var(--yc-white);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: var(--yc-font-body);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--yc-transition);
  min-width: 0;
}
.yc-notify-form__input:focus { border-color: var(--yc-blue); }
.yc-notify-form__input--error { border-color: #ff4a4a !important; animation: yc-shake 300ms ease; }
@keyframes yc-shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.yc-notify-form__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 16px;
  background: var(--yc-white);
  color: var(--yc-black);
  border: none;
  cursor: pointer;
  font-family: var(--yc-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  transition: opacity var(--yc-transition);
  flex-shrink: 0;
}
.yc-notify-form__btn:hover { opacity: 0.85; }
.yc-notify-form__btn:disabled { opacity: 0.5; cursor: wait; }
.yc-notify-form__success {
  font-size: 0.85rem;
  color: #22c55e;
  margin: 0;
  padding: 4px 0;
}
.yc-notify-form__success[hidden] { display: none; }
@media (max-width: 480px) {
  .yc-notify-form__row { flex-direction: column; }
  .yc-notify-form__btn { width: 100%; justify-content: center; }
}

/* ================================================================
   CART DRAWER — panneau latéral AJAX
   Layout : header · barre livraison · items · tabs · footer
   ================================================================ */

.yc-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
}
.yc-cart-drawer.is-open {
  pointer-events: auto;
}

/* Overlay semi-transparent */
.yc-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 320ms ease;
  cursor: pointer;
}
.yc-cart-drawer.is-open .yc-cart-drawer__overlay {
  opacity: 1;
}

/* Panneau latéral */
.yc-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--yc-gray-900);
  border-left: 1px solid var(--yc-gray-700);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  will-change: transform;
}
.yc-cart-drawer.is-open .yc-cart-drawer__panel {
  transform: translateX(0);
}

/* En-tête */
.yc-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--yc-gray-700);
  flex-shrink: 0;
}
.yc-cart-drawer__title {
  font-family: var(--yc-font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yc-white);
  margin: 0;
  letter-spacing: -0.01em;
}
.yc-cart-drawer__count {
  font-family: var(--yc-font-body);
  font-size: 0.65rem;
  color: var(--yc-gray-400);
  font-weight: 400;
  vertical-align: super;
  margin-left: 1px;
}

/* Bouton × circulaire */
.yc-cart-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: none;
  color: var(--yc-gray-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition);
}
.yc-cart-drawer__close:hover {
  color: var(--yc-white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .yc-cart-drawer__close { color: #666; border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .yc-cart-drawer__close:hover { color: #000; border-color: #000; background: #f0f0f0; }

/* Barre livraison offerte */
.yc-cart-drawer__shipping-bar {
  padding: 12px 24px;
  border-bottom: 1px solid var(--yc-gray-700);
  flex-shrink: 0;
}
.yc-cart-drawer__shipping-track {
  height: 3px;
  background: var(--yc-gray-700);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 7px;
}
.yc-cart-drawer__shipping-fill {
  height: 100%;
  background: var(--yc-blue);
  border-radius: 99px;
  width: 0%;
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1), background 300ms ease;
}
.yc-cart-drawer__shipping-msg {
  font-size: 0.77rem;
  color: var(--yc-gray-300);
  margin: 0;
  line-height: 1.4;
}
.yc-cart-drawer__shipping-msg strong {
  color: var(--yc-white);
}

/* Corps scrollable */
.yc-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 20px;
}
.yc-cart-drawer__body::-webkit-scrollbar { width: 4px; }
.yc-cart-drawer__body::-webkit-scrollbar-track { background: transparent; }
.yc-cart-drawer__body::-webkit-scrollbar-thumb { background: var(--yc-gray-700); border-radius: 99px; }

/* Panier vide — [hidden] doit primer sur display:flex */
.yc-cart-drawer__empty[hidden] { display: none; }
.yc-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 16px;
  gap: 10px;
  color: var(--yc-gray-500);
}
.yc-cart-drawer__empty-title {
  font-family: var(--yc-font-heading);
  font-size: 1.25rem;
  color: var(--yc-white);
  margin: 0;
  letter-spacing: -0.01em;
}
.yc-cart-drawer__empty-sub {
  font-size: 0.88rem;
  color: var(--yc-gray-300);
  margin: 0 0 8px;
}

/* Liste des items */
.yc-cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Items ── */
.yc-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr 52px;
  gap: 12px;
  align-items: stretch;
  padding: 16px 0;
  border-bottom: 1px solid var(--yc-gray-700);
}
.yc-cart-item:first-child { padding-top: 4px; }
.yc-cart-item:last-child { border-bottom: none; }

.yc-cart-item__img-link { display: block; }
.yc-cart-item__img-link--empty { width: 72px; height: 72px; background: var(--yc-gray-800); border-radius: 6px; }
.yc-cart-item__img {
  width: 72px; height: 72px; object-fit: cover;
  background: var(--yc-gray-800); display: block;
  border-radius: 6px;
  transition: opacity var(--yc-transition);
}
.yc-cart-item__img:hover { opacity: 0.85; }

.yc-cart-item__info {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.yc-cart-item__name {
  font-size: 0.85rem; font-weight: 600; color: var(--yc-white);
  text-decoration: none; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--yc-transition);
}
.yc-cart-item__name:hover { color: var(--yc-blue); }
.yc-cart-item__variant { font-size: 0.75rem; color: var(--yc-gray-300); margin-top: 1px; }
.yc-cart-item__price { font-size: 0.88rem; font-weight: 700; color: var(--yc-white); margin-top: 6px; }

/* Colonne actions : qty en haut, Retirer en bas — s'étire sur toute la hauteur de l'item */
.yc-cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

/* Quantité */
.yc-cart-item__qty {
  display: flex; align-items: center;
  border: 1px solid var(--yc-gray-700); border-radius: 6px; overflow: hidden;
}
.yc-cart-item__qty-btn {
  background: none; border: none; color: var(--yc-gray-400); cursor: pointer;
  width: 24px; height: 24px; font-size: 0.85rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--yc-transition), color var(--yc-transition);
}
.yc-cart-item__qty-btn:hover { background: var(--yc-gray-700); color: var(--yc-white); }
.yc-cart-item__qty-val {
  font-size: 0.8rem; color: var(--yc-white);
  min-width: 20px; text-align: center; user-select: none;
}
.yc-cart-item__qty-fixed {
  font-size: 0.78rem; color: var(--yc-gray-400);
  border: 1px solid var(--yc-gray-700); border-radius: 6px;
  padding: 3px 8px;
}

/* Bouton "Retirer" — souligné par défaut, disparaît au hover */
.yc-cart-item__remove {
  background: none; border: none;
  border-bottom: 1px solid var(--yc-gray-600);
  color: var(--yc-gray-400); cursor: pointer; padding: 0;
  font-family: var(--yc-font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.02em; white-space: nowrap;
  transition: color 200ms ease, border-color 200ms ease;
}
.yc-cart-item__remove:hover { color: var(--yc-white); border-bottom-color: transparent; }
[data-theme="light"] .yc-cart-item__remove { color: #999; border-bottom-color: #bbb; }
[data-theme="light"] .yc-cart-item__remove:hover { color: #000; border-bottom-color: transparent; }

/* ── Container footer ── */
.yc-cart-drawer__footer {
  flex-shrink: 0;
  padding: 0 20px 16px;
  background: var(--yc-gray-900);
  display: flex;
  flex-direction: column;
}
.yc-cart-drawer__footer[hidden] { display: none; }

/* ── Tabs Notes / Livraison / Réduction ── */
.ycd-tabs { border-top: 1px solid var(--yc-gray-700); }
.ycd-tabs__nav {
  display: flex; border-bottom: 1px solid var(--yc-gray-700);
}
.ycd-tabs__btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 5px; padding: 11px 4px;
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--yc-gray-500); cursor: pointer;
  font-family: var(--yc-font-body); font-size: 0.78rem; font-weight: 500;
  transition: color var(--yc-transition), border-color var(--yc-transition);
  margin-bottom: -1px;
}
.ycd-tabs__btn:hover { color: var(--yc-white); }
.ycd-tabs__btn.is-active { color: var(--yc-white); border-bottom-color: var(--yc-white); }
[data-theme="light"] .ycd-tabs__btn.is-active { color: #000; border-bottom-color: #000; }

.ycd-tabs__panel { padding: 14px 0; }
.ycd-tabs__panel[hidden] { display: none; }

/* Notes */
.ycd-note-input {
  width: 100%; resize: none;
  background: var(--yc-gray-800); border: 1px solid var(--yc-gray-700);
  color: var(--yc-white); padding: 10px 12px;
  font-family: var(--yc-font-body); font-size: 0.83rem; line-height: 1.5;
  border-radius: 8px; outline: none;
  transition: border-color var(--yc-transition);
}
.ycd-note-input:focus { border-color: var(--yc-blue); }
.ycd-note-input::placeholder { color: var(--yc-gray-500); }
.ycd-note-save {
  margin-top: 8px; padding: 7px 14px;
  background: var(--yc-gray-800); border: 1px solid var(--yc-gray-700);
  color: var(--yc-white); cursor: pointer; border-radius: 6px;
  font-family: var(--yc-font-body); font-size: 0.78rem;
  transition: background var(--yc-transition), border-color var(--yc-transition);
}
.ycd-note-save:hover { background: var(--yc-gray-700); border-color: var(--yc-white); }
.ycd-note-saved { font-size: 0.75rem; color: #22c55e; margin-left: 10px; }
.ycd-note-saved[hidden] { display: none; }

/* Livraison */
.ycd-delivery-info { display: flex; flex-direction: column; gap: 10px; }
.ycd-delivery-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--yc-white);
}
.ycd-delivery-row svg { color: var(--yc-blue); flex-shrink: 0; }
.ycd-delivery-price { margin-left: auto; font-weight: 600; color: var(--yc-gray-300); }
.ycd-delivery-note { font-size: 0.73rem; color: var(--yc-gray-500); margin: 0; padding-top: 4px; border-top: 1px solid var(--yc-gray-700); }

/* Réduction */
.ycd-discount-row { display: flex; gap: 8px; }
.ycd-discount-input {
  flex: 1; background: var(--yc-gray-800); border: 1px solid var(--yc-gray-700);
  color: var(--yc-white); padding: 9px 12px; border-radius: 8px; outline: none;
  font-family: var(--yc-font-body); font-size: 0.83rem; min-width: 0;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: border-color var(--yc-transition);
}
.ycd-discount-input:focus { border-color: var(--yc-blue); }
.ycd-discount-input::placeholder { text-transform: none; letter-spacing: 0; color: var(--yc-gray-500); }
.ycd-discount-apply {
  padding: 9px 14px; background: var(--yc-white); color: var(--yc-black);
  border: none; border-radius: 8px; cursor: pointer;
  font-family: var(--yc-font-body); font-size: 0.78rem; font-weight: 700;
  flex-shrink: 0; transition: opacity var(--yc-transition);
}
.ycd-discount-apply:hover { opacity: 0.85; }
.ycd-discount-note { font-size: 0.72rem; color: var(--yc-gray-500); margin: 8px 0 0; }

/* ── Footer total + checkout ── */
.ycd-footer-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; padding: 14px 0 10px;
  border-top: 1px solid var(--yc-gray-700);
}
.ycd-tax-note {
  font-size: 0.7rem; color: var(--yc-gray-500); line-height: 1.5;
  max-width: 160px; margin: 0; flex-shrink: 1;
}
.ycd-tax-note a { color: var(--yc-gray-400); text-decoration: underline; }
.ycd-total { text-align: right; flex-shrink: 0; }
.ycd-total__label {
  display: block; font-size: 0.7rem; color: var(--yc-gray-400);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px;
}
.ycd-total__price {
  font-family: var(--yc-font-body); font-size: 1.15rem; font-weight: 700;
  color: var(--yc-white); letter-spacing: -0.01em;
}

.ycd-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px;
  background: var(--yc-white); color: var(--yc-black);
  text-decoration: none; border-radius: 50px;
  font-family: var(--yc-font-body); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity var(--yc-transition);
}
.ycd-checkout-btn:hover { opacity: 0.88; }

/* Wrapper section */
.yc-cart-drawer-wrapper { display: contents; }

/* Light mode */
[data-theme="light"] .yc-cart-drawer__panel { background: #ffffff; border-left-color: #e5e5e5; }
[data-theme="light"] .yc-cart-drawer__footer { background: #ffffff; }
[data-theme="light"] .yc-cart-item__img { background: #f5f5f0; }
[data-theme="light"] .ycd-checkout-btn { background: #000; color: #fff; }
[data-theme="light"] .ycd-discount-apply { background: #000; color: #fff; }

/* ================================================================
   SCROLL REVEAL — fade-in + slide-up au défilement
   Activé par IntersectionObserver dans yochamida.js
   ================================================================ */
.yc-will-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--yc-reveal-delay, 0ms),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--yc-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.yc-will-reveal.yc-revealed {
  opacity: 1;
  transform: none;
}

/* Respect de la préférence système "réduire les animations" */
@media (prefers-reduced-motion: reduce) {
  .yc-will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ================================================================
   RÉCEMMENT CONSULTÉS
   ================================================================ */
.yc-recently-viewed { background: var(--yc-black); }
.yc-rv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .yc-rv-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .yc-rv-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.yc-rv-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.yc-rv-card:hover .yc-rv-card__media img { transform: scale(1.04); }

.yc-rv-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--yc-gray-900);
  border-radius: 8px;
}
.yc-rv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--yc-transition);
}

.rv-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.rv-badge--out    { background: var(--yc-gray-700); color: var(--yc-gray-300); }
.rv-badge--unique { background: var(--yc-blue);     color: #fff; }

.yc-rv-card__info { display: flex; flex-direction: column; gap: 4px; }
.yc-rv-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yc-white);
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yc-rv-card__price { display: flex; align-items: baseline; gap: 6px; }
.yc-rv-card__compare {
  font-size: 0.75rem;
  color: var(--yc-gray-500);
  text-decoration: line-through;
}
.yc-rv-card__current {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yc-white);
}

/* Light mode */
[data-theme="light"] .yc-recently-viewed  { background: var(--yc-gray-100); }
[data-theme="light"] .yc-rv-card__media   { background: #f0f0f0; }
[data-theme="light"] .yc-rv-card__title   { color: var(--yc-black); }
[data-theme="light"] .yc-rv-card__current { color: var(--yc-black); }

/* ================================================================
   COLLECTION — BREADCRUMB
   ================================================================ */
.yc-coll-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 0 0;
  font-size: 0.78rem;
  color: var(--yc-gray-500);
}
.yc-coll-breadcrumb a { color: var(--yc-gray-400); text-decoration: none; }
.yc-coll-breadcrumb a:hover { color: var(--yc-white); }
[data-theme="light"] .yc-coll-breadcrumb a:hover { color: var(--yc-black); }

/* ================================================================
   COLLECTION — TOOLBAR + CHIPS
   ================================================================ */
.yc-coll-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.yc-filter-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.yc-filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 19px;
  border: 1px solid var(--yc-gray-700);
  background: transparent;
  color: var(--yc-gray-300);
  font-size: 0.84rem;
  font-weight: 500;
  font-family: var(--yc-font-body);
  cursor: pointer;
  transition: color var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition);
  white-space: nowrap;
  position: relative;
}
.yc-filter-toggle-btn:hover { color: var(--yc-white); border-color: var(--yc-gray-400); }
.yc-filter-toggle-badge {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yc-blue);
  position: absolute;
  top: 8px; right: 8px;
}
.yc-filter-toggle-badge[hidden] { display: none; }

/* ================================================================
   COLLECTION — PANEL FILTRE (DRAWER)
   ================================================================ */
.yc-filter-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.yc-filter-panel[hidden] { display: block !important; visibility: hidden; }
.yc-filter-panel--open   { pointer-events: auto; visibility: visible; }

.yc-filter-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 280ms ease;
  cursor: pointer;
}
.yc-filter-panel--open .yc-filter-panel__overlay { opacity: 1; }

.yc-filter-panel__drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--yc-gray-900);
  border-left: 1px solid var(--yc-gray-700);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1);
}
.yc-filter-panel--open .yc-filter-panel__drawer { transform: translateX(0); }

.yc-filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--yc-gray-700);
  flex-shrink: 0;
}
.yc-filter-panel__title {
  font-family: var(--yc-font-heading);
  font-size: 1.1rem;
  margin: 0;
  color: var(--yc-white);
}
.yc-filter-panel__close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--yc-gray-700);
  background: transparent;
  color: var(--yc-gray-300);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--yc-transition), border-color var(--yc-transition);
}
.yc-filter-panel__close:hover { color: var(--yc-white); border-color: var(--yc-gray-400); }

.yc-filter-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.yc-filter-group-panel {}
.yc-filter-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yc-gray-500);
  margin: 0 0 14px;
}

/* ── Rows du panel ── */
.yc-fp-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--yc-gray-800);
}
.yc-fp-row:first-child { padding-top: 8px; }

/* Dropdown custom tri */
.yc-fp-dropdown { position: relative; }
.yc-fp-dropdown__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  background: var(--yc-gray-800);
  border: 1px solid var(--yc-gray-700);
  border-radius: 10px;
  color: var(--yc-white);
  font-size: 0.88rem;
  font-family: var(--yc-font-body);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--yc-transition);
}
.yc-fp-dropdown__trigger:hover { border-color: var(--yc-gray-500); }
.yc-fp-dropdown__trigger[aria-expanded="true"] { border-color: var(--yc-gray-400); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.yc-fp-dropdown__current { flex: 1; }

.yc-fp-dropdown__list {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--yc-gray-800);
  border: 1px solid var(--yc-gray-500);
  border-top: none;
  border-radius: 0 0 10px 10px;
  z-index: 20;
  max-height: 280px;
  overflow-y: auto;
  padding: 4px 0;
  margin: 0;
  list-style: none;
}
.yc-fp-dropdown__list[hidden] { display: none; }
.yc-fp-dropdown__opt {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--yc-gray-300);
  cursor: pointer;
  transition: background var(--yc-transition), color var(--yc-transition);
}
.yc-fp-dropdown__opt:hover { background: var(--yc-gray-700); color: var(--yc-white); }
.yc-fp-dropdown__opt.selected { color: var(--yc-white); font-weight: 600; }
.yc-fp-dropdown__opt.selected::before { content: '✓ '; color: var(--yc-blue); }

/* Light mode */
[data-theme="light"] .yc-fp-dropdown__trigger { background: #f5f5f5; border-color: #e0e0e0; color: #000; }
[data-theme="light"] .yc-fp-dropdown__list    { background: #fff; border-color: #ccc; }
[data-theme="light"] .yc-fp-dropdown__opt     { color: #444; }
[data-theme="light"] .yc-fp-dropdown__opt:hover { background: #f0f0f0; color: #000; }
[data-theme="light"] .yc-fp-dropdown__opt.selected { color: #000; }

/* LEGACY select — caché */
.yc-fp-select-chevron {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yc-gray-500);
  pointer-events: none;
}

/* Stock row */
.yc-fp-row--stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yc-fp-stock-label {
  font-size: 0.95rem;
  color: var(--yc-white);
}
/* Toggle iOS style */
.yc-fp-toggle { cursor: pointer; }
.yc-stock-check { display: none; }
.yc-fp-toggle__track {
  display: block;
  width: 48px; height: 28px;
  border-radius: 14px;
  background: var(--yc-gray-700);
  position: relative;
  transition: background 200ms ease;
}
.yc-fp-toggle__thumb {
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: transform 200ms ease;
}
.yc-stock-check:checked ~ .yc-fp-toggle__track { background: var(--yc-blue); }
.yc-stock-check:checked ~ .yc-fp-toggle__track .yc-fp-toggle__thumb { transform: translateX(20px); }

/* Accordion Prix */
.yc-fp-accordion { padding: 0; }
.yc-fp-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--yc-gray-800);
  color: var(--yc-white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--yc-font-body);
  cursor: pointer;
  text-align: left;
}
.yc-fp-accordion__icon {
  color: var(--yc-gray-500);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.yc-fp-accordion__trigger[aria-expanded="false"] .yc-fp-accordion__icon { transform: rotate(-90deg); }
.yc-fp-accordion__body { padding: 16px 0 4px; }
.yc-fp-accordion__body[hidden] { display: none; }

/* Price range slider */
.yc-price-range { position: relative; padding: 8px 0 16px; }
.yc-price-range__track {
  height: 3px;
  background: var(--yc-gray-700);
  border-radius: 2px;
  position: relative;
  margin: 16px 0;
}
.yc-price-range__fill {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--yc-blue);
  border-radius: 2px;
}
.yc-price-range__input {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 16px;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
}
.yc-price-range__input::-webkit-slider-thumb {
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--yc-white);
  border: 2px solid var(--yc-blue);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.yc-price-range__input::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--yc-white);
  border: 2px solid var(--yc-blue);
  cursor: pointer;
  pointer-events: auto;
}

/* Price inputs */
.yc-price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.yc-price-sep { font-size: 0.88rem; color: var(--yc-gray-500); flex-shrink: 0; }
.yc-price-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  background: var(--yc-gray-800);
  border: 1px solid var(--yc-gray-700);
  border-radius: 8px;
  padding: 8px 10px;
  gap: 6px;
}
.yc-price-input-sym { font-size: 0.88rem; color: var(--yc-gray-500); flex-shrink: 0; }
.yc-price-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--yc-white);
  font-family: var(--yc-font-body);
  -moz-appearance: textfield;
}
.yc-price-input::-webkit-outer-spin-button,
.yc-price-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Light mode overrides */
[data-theme="light"] .yc-fp-select-wrap   { background: #f5f5f5; border-color: #e0e0e0; }
[data-theme="light"] .yc-fp-select        { color: #000; }
[data-theme="light"] .yc-fp-stock-label   { color: #000; }
[data-theme="light"] .yc-fp-toggle__track { background: #ddd; }
[data-theme="light"] .yc-fp-accordion__trigger { color: #000; border-color: #eee; }
[data-theme="light"] .yc-fp-row           { border-color: #eee; }
[data-theme="light"] .yc-price-input-wrap { background: #f5f5f5; border-color: #e0e0e0; }
[data-theme="light"] .yc-price-input      { color: #000; }
[data-theme="light"] .yc-price-range__track { background: #ddd; }

/* ── Panel footer ── */
/* (gardé tel quel) */

/* === LEGACY (remplacé) === */
.yc-price-range__labels {
  display: none;
  font-size: 0.82rem;
  color: var(--yc-gray-300);
  font-weight: 600;
}

/* Panel footer */
.yc-filter-panel__footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--yc-gray-700);
  flex-shrink: 0;
}
.yc-filter-reset {
  flex: 1;
  height: 44px;
  border-radius: 22px;
  border: 1px solid var(--yc-gray-700);
  background: transparent;
  color: var(--yc-gray-300);
  font-size: 0.88rem;
  font-family: var(--yc-font-body);
  cursor: pointer;
  transition: color var(--yc-transition), border-color var(--yc-transition);
}
.yc-filter-reset:hover { color: var(--yc-white); border-color: var(--yc-gray-400); }
.yc-filter-apply {
  flex: 2;
  height: 44px;
  border-radius: 22px;
  border: none;
  background: var(--yc-white);
  color: var(--yc-black);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--yc-font-body);
  cursor: pointer;
  transition: opacity var(--yc-transition);
}
.yc-filter-apply:hover { opacity: 0.88; }

/* Light mode panel */
[data-theme="light"] .yc-filter-panel__drawer { background: #fff; border-color: #e5e5e5; }
[data-theme="light"] .yc-filter-panel__title  { color: #000; }
[data-theme="light"] .yc-filter-toggle-btn    { color: #555; border-color: #ddd; }
[data-theme="light"] .yc-filter-toggle-btn:hover { color: #000; }
[data-theme="light"] .yc-sort-radio-label     { color: #555; }
[data-theme="light"] .yc-sort-radio-label:hover { background: #f5f5f5; color: #000; }
[data-theme="light"] .yc-stock-toggle         { color: #555; }

/* ================================================================
   COLLECTION — CARTES PRODUIT AMÉLIORÉES
   ================================================================ */
.product-card__media-wrap { position: relative; overflow: hidden; border-radius: 8px; }

/* Icône œil top-right — hover only */
.yc-qv-eye {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.product-card:hover .yc-qv-eye {
  opacity: 1;
  transform: scale(1);
}

.product-card__vendor {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yc-gray-500);
  margin: 0 0 4px;
}
.yc-quick-view-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  height: 34px;
  padding: 0 16px;
  border-radius: 17px;
  border: none;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  font-family: var(--yc-font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 2;
}
.product-card:hover .yc-quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.yc-card-atc-btn {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 1px solid var(--yc-gray-700);
  background: transparent;
  color: var(--yc-gray-300);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--yc-font-body);
  cursor: pointer;
  margin-top: 10px;
  transition: background var(--yc-transition), color var(--yc-transition), border-color var(--yc-transition);
}
.yc-card-atc-btn:hover {
  background: var(--yc-white);
  color: var(--yc-black);
  border-color: var(--yc-white);
}
.yc-card-atc-btn--disabled { opacity: 0.4; cursor: not-allowed; }
[data-theme="light"] .yc-card-atc-btn { border-color: #ddd; color: #555; }
[data-theme="light"] .yc-card-atc-btn:hover { background: #000; color: #fff; border-color: #000; }

/* ================================================================
   COLLECTION — BANNIÈRE ÉDITORIALE
   ================================================================ */
.yc-coll-banner-item { grid-column: 1 / -1; }
.yc-coll-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  text-decoration: none;
}
.yc-coll-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yc-coll-banner__overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
}
.yc-coll-banner--text { flex-direction: column; gap: 8px; padding: 40px 32px; }
.yc-coll-banner__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.yc-coll-banner__title {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin: 0;
}
.yc-coll-banner__cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transition: background var(--yc-transition);
}
.yc-coll-banner:hover .yc-coll-banner__cta { background: rgba(255,255,255,0.15); }

/* ================================================================
   COLLECTION — QUICK VIEW DIALOG
   ================================================================ */
.yc-quick-view-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
}
.yc-quick-view-overlay[hidden] { display: block !important; visibility: hidden; pointer-events: none; }
.yc-qv-open { pointer-events: auto; visibility: visible; }

.yc-quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 280ms ease;
  cursor: pointer;
}
.yc-qv-open .yc-quick-view-backdrop { opacity: 1; }

/* ── Dialog (grande, quasi plein écran) ── */
.yc-quick-view-dialog {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%) scale(0.96);
  width: min(1060px, 96vw);
  height: min(88vh, 780px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  transition: opacity 280ms ease, transform 280ms cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
}
.yc-qv-open .yc-quick-view-dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.yc-quick-view-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #555;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background var(--yc-transition), border-color var(--yc-transition);
}
.yc-quick-view-close:hover { background: #f5f5f5; border-color: #aaa; }

.yc-quick-view-body { flex: 1; overflow: hidden; }
.yc-qv-loading { display: flex; align-items: center; justify-content: center; height: 100%; }

/* ── Layout : image gauche | infos droite ── */
.yc-qv-product {
  display: grid;
  grid-template-columns: 50% 1fr;
  height: 100%;
}
@media (max-width: 640px) {
  .yc-qv-product { grid-template-columns: 1fr; grid-template-rows: 50vh 1fr; }
}

/* ── Galerie ── */
.yc-qv-gallery {
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.yc-qv-gallery__main {
  flex: 1;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
}
/* Slides : display none/block, pas de position absolute */
.yc-qv-slide {
  display: none;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.yc-qv-slide--active { display: block; }

.yc-qv-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 20px;
}
.yc-qv-dot {
  width: 8px; height: 8px;
  border-radius: 50%; border: none;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.yc-qv-dot.active { background: #000; transform: scale(1.3); }

/* ── Infos ── */
.yc-qv-info {
  padding: 32px 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  height: 100%;
  box-sizing: border-box;
  color: #111;
}
.yc-qv-vendor {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}
.yc-qv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.yc-qv-title {
  font-family: var(--yc-font-heading);
  font-size: 2rem;
  color: #000;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.yc-qv-price {
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  padding-top: 6px;
}
.yc-qv-price__compare {
  font-size: 0.85rem; font-weight: 400;
  color: #aaa; text-decoration: line-through; margin-right: 4px;
}
.yc-qv-price__current { color: #000; }

/* Description — SANS limite de hauteur */
.yc-qv-desc {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.65;
}
.yc-qv-desc ul { padding-left: 20px; margin: 8px 0; }
.yc-qv-desc li { margin-bottom: 5px; }
.yc-qv-desc p  { margin: 6px 0; }
.yc-qv-desc em { font-style: italic; color: #555; }
.yc-qv-desc strong { font-weight: 600; }

/* Options variantes */
.yc-qv-option { display: flex; flex-direction: column; gap: 8px; }
.yc-qv-option__label { font-size: 0.84rem; color: #555; margin: 0; }
.yc-qv-option__label strong { color: #000; font-weight: 600; }
.yc-qv-option__btns { display: flex; flex-wrap: wrap; gap: 8px; }
.yc-qv-opt-btn {
  height: 38px; padding: 0 16px;
  border-radius: 8px;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  color: #333;
  font-size: 0.84rem; font-weight: 500;
  font-family: var(--yc-font-body);
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}
.yc-qv-opt-btn.active { border-color: #000; color: #000; font-weight: 700; }
.yc-qv-opt-btn:hover  { border-color: #555; }

/* Stock */
.yc-qv-stock { display: flex; flex-direction: column; gap: 6px; }
.yc-qv-stock__text { font-size: 0.8rem; color: #555; margin: 0; }
.yc-qv-stock__text strong { color: #000; }
.yc-qv-stock__bar  { height: 3px; background: #e5e5e5; border-radius: 2px; }
.yc-qv-stock__fill { height: 100%; background: #000; border-radius: 2px; }

/* Qty + ATC */
.yc-qv-actions { display: flex; gap: 10px; align-items: stretch; }
.yc-qv-qty {
  display: flex; align-items: center;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
}
.yc-qv-qty__btn {
  width: 40px; height: 52px;
  border: none; background: transparent; color: #333;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms ease;
}
.yc-qv-qty__btn:hover { background: #f5f5f5; }
.yc-qv-qty__val {
  min-width: 36px; text-align: center;
  font-size: 0.95rem; font-weight: 600; color: #000;
  border-left: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5;
  padding: 0 8px; line-height: 52px;
}
.yc-qv-atc {
  flex: 1; height: 52px;
  border-radius: 10px; border: none;
  background: #111; color: #fff;
  font-size: 0.9rem; font-weight: 700;
  font-family: var(--yc-font-body);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 150ms ease;
}
.yc-qv-atc:hover:not(:disabled) { background: #333; }
.yc-qv-atc:disabled { opacity: 0.5; cursor: not-allowed; }
.yc-qv-atc__sep { color: rgba(255,255,255,0.4); font-weight: 300; }

/* Share */
.yc-qv-share {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: #888;
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.yc-qv-share__label { flex-shrink: 0; }
.yc-qv-share a { color: #555; display: flex; align-items: center; transition: color 150ms ease; }
.yc-qv-share a:hover { color: #000; }

/* Afficher tous les détails */
.yc-qv-fullpage {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; margin-top: auto;
  border-top: 1px solid #eee;
  font-size: 0.9rem; font-weight: 500;
  color: #333; text-decoration: none; gap: 8px;
  transition: color 150ms ease;
}
.yc-qv-fullpage:hover { color: #000; }

/* Light mode QV — déjà en light, pas de surcharge nécessaire */
[data-theme="light"] .yc-quick-view-dialog { background: #fff; }
[data-theme="light"] .yc-qv-gallery          { background: #f0f0f0; }
[data-theme="light"] .yc-qv-dots             { background: #f0f0f0; }
[data-theme="light"] .yc-qv-dot              { background: #bbb; }
[data-theme="light"] .yc-qv-dot.active       { background: #000; }
[data-theme="light"] .yc-qv-title            { color: #000; }
[data-theme="light"] .yc-qv-price__current   { color: #000; }
[data-theme="light"] .yc-qv-desc             { color: #444; }
[data-theme="light"] .yc-qv-opt-btn          { border-color: #ccc; color: #555; }
[data-theme="light"] .yc-qv-opt-btn.active   { border-color: #000; color: #000; }
[data-theme="light"] .yc-qv-qty             { border-color: #ddd; }
[data-theme="light"] .yc-qv-qty__val        { color: #000; }
[data-theme="light"] .yc-qv-atc             { background: #000; }
[data-theme="light"] .yc-qv-fullpage        { color: #444; border-color: #eee; }
[data-theme="light"] .yc-qv-share           { border-color: #eee; }
[data-theme="light"] .yc-qv-share a         { color: #888; }
[data-theme="light"] .yc-qv-share a:hover   { color: #000; }

/* ================================================================
   FILTRES COLLECTION AJAX
   ================================================================ */
.yc-coll-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 28px;
}
.yc-filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.yc-filter-group--right {
  margin-left: auto;
  gap: 8px;
}
.yc-filter-chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid var(--yc-gray-700);
  background: transparent;
  color: var(--yc-gray-300);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--yc-font-body);
  cursor: pointer;
  transition: color var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition);
  white-space: nowrap;
}
.yc-filter-chip:hover {
  color: var(--yc-white);
  border-color: var(--yc-gray-300);
}
.yc-filter-chip--active {
  background: var(--yc-white);
  color: var(--yc-black);
  border-color: var(--yc-white);
  font-weight: 700;
}
.yc-filter-chip--sm { height: 32px; padding: 0 12px; font-size: 0.76rem; }

/* Sort select */
.yc-sort-wrapper { position: relative; }
.yc-sort-select {
  height: 36px;
  padding: 0 32px 0 12px;
  border-radius: 18px;
  border: 1px solid var(--yc-gray-700);
  background: transparent;
  color: var(--yc-gray-300);
  font-size: 0.82rem;
  font-family: var(--yc-font-body);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.yc-sort-select option { background: #1a1a1a; color: #fff; }

/* Loader spinner */
.yc-coll-loader {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.yc-coll-loader[hidden] { display: none; }
.yc-coll-loader__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--yc-gray-700);
  border-top-color: var(--yc-blue);
  border-radius: 50%;
  animation: yc-spin 0.7s linear infinite;
}
@keyframes yc-spin { to { transform: rotate(360deg); } }

/* Transition grille pendant le chargement */
#yc-product-grid-{{ section.id }} { transition: opacity 200ms ease; }

/* Light mode */
[data-theme="light"] .yc-filter-chip { border-color: #ddd; color: #555; }
[data-theme="light"] .yc-filter-chip:hover { color: #000; border-color: #000; }
[data-theme="light"] .yc-filter-chip--active { background: #000; color: #fff; border-color: #000; }
[data-theme="light"] .yc-sort-select { border-color: #ddd; color: #555; }

@media (max-width: 640px) {
  .yc-coll-filters { gap: 8px; }
  .yc-filter-group--right { margin-left: 0; width: 100%; }
}

/* ================================================================
   LOOKBOOK / SHOP THE LOOK
   ================================================================ */
.yc-lookbook__header {
  text-align: center;
  margin-bottom: 48px;
}
.yc-lookbook__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yc-blue);
  margin-bottom: 12px;
}
.yc-lookbook__title {
  font-family: var(--yc-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--yc-white);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.yc-lookbook__sub { font-size: 0.95rem; color: var(--yc-gray-300); margin: 0; }
.yc-lookbook__layout { display: grid; gap: 40px; align-items: start; }
.yc-lookbook__layout--image-left  { grid-template-columns: 3fr 1.2fr; }
.yc-lookbook__layout--image-right { grid-template-columns: 1.2fr 3fr; }
.yc-lookbook__layout--image-right .yc-lookbook__canvas { order: 2; }
.yc-lookbook__layout--image-right .yc-lookbook__list   { order: 1; }
.yc-lookbook__layout--full { grid-template-columns: 1fr; }
.yc-lookbook__layout--full .yc-lookbook__list { display: none; }
@media (max-width: 768px) {
  .yc-lookbook__layout--image-left,
  .yc-lookbook__layout--image-right { grid-template-columns: 1fr; }
  .yc-lookbook__layout--image-right .yc-lookbook__canvas { order: 1; }
  .yc-lookbook__layout--image-right .yc-lookbook__list   { order: 2; }
}
.yc-lookbook__canvas { position: relative; border-radius: 12px; overflow: visible; }
.yc-lookbook__img { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
.yc-lb-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: transparent; border: none;
  cursor: pointer; z-index: 2; padding: 0;
}
.yc-lb-hotspot__dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300; color: #000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: transform 200ms ease, background 200ms ease;
  z-index: 1;
}
.yc-lb-hotspot__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: lb-pulse 2s ease-out infinite;
}
@keyframes lb-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.yc-lb-hotspot:hover .yc-lb-hotspot__dot,
.yc-lb-hotspot--active .yc-lb-hotspot__dot {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--yc-blue); color: #fff;
}
.yc-lb-popup {
  position: absolute; z-index: 10;
  width: 240px;
  background: var(--yc-gray-900);
  border: 1px solid var(--yc-gray-700);
  border-radius: 12px; padding: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.92) translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}
.yc-lb-popup[hidden] { display: block !important; visibility: hidden; }
.yc-lb-popup--active { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; visibility: visible; }
.yc-lb-popup__close {
  position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid var(--yc-gray-700);
  background: transparent; color: var(--yc-gray-300); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--yc-transition), border-color var(--yc-transition);
}
.yc-lb-popup__close:hover { color: var(--yc-white); border-color: var(--yc-gray-300); }
.yc-lb-popup__inner { display: flex; gap: 12px; text-decoration: none; color: inherit; }
.yc-lb-popup__img {
  position: relative; flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 8px; overflow: hidden; background: var(--yc-gray-800);
}
.yc-lb-popup__img img { width: 100%; height: 100%; object-fit: cover; }
.yc-lb-popup__badge {
  position: absolute; bottom: 3px; left: 3px;
  font-size: 0.58rem; font-weight: 700;
  padding: 2px 5px; border-radius: 3px;
  background: var(--yc-blue); color: #fff;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.yc-lb-popup__badge--unique { background: #6c3be2; }
.yc-lb-popup__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; padding-right: 20px; }
.yc-lb-popup__title { font-size: 0.82rem; font-weight: 600; color: var(--yc-white); margin: 0; line-height: 1.3; }
.yc-lb-popup__price { display: flex; gap: 6px; align-items: baseline; flex-wrap: wrap; }
.yc-lb-popup__compare { font-size: 0.72rem; color: var(--yc-gray-500); text-decoration: line-through; }
.yc-lb-popup__current { font-size: 0.9rem; font-weight: 700; color: var(--yc-white); }
.yc-lb-popup__cta { display: inline-flex; align-items: center; gap: 4px; font-size: 0.74rem; font-weight: 600; color: var(--yc-blue); margin-top: 2px; }
.yc-lookbook__list { display: flex; flex-direction: column; gap: 4px; }
.yc-lookbook__list-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yc-gray-500); margin: 0 0 12px; }
.yc-lb-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none; color: inherit;
  transition: border-color var(--yc-transition), background var(--yc-transition);
}
.yc-lb-list-item:hover { border-color: var(--yc-gray-700); background: var(--yc-gray-900); }
.yc-lb-list-item__img { width: 50px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--yc-gray-800); }
.yc-lb-list-item__img img { width: 100%; height: 100%; object-fit: cover; }
.yc-lb-list-item__info { flex: 1; min-width: 0; }
.yc-lb-list-item__title { font-size: 0.82rem; font-weight: 600; color: var(--yc-white); margin: 0 0 3px; }
.yc-lb-list-item__price { font-size: 0.78rem; color: var(--yc-gray-300); margin: 0; }
.yc-lb-list-item__price s { margin-right: 4px; color: var(--yc-gray-500); text-decoration: line-through; }
.yc-lb-list-item__arrow { flex-shrink: 0; color: var(--yc-gray-500); }
.yc-lookbook__placeholder { text-align: center; padding: 60px; border: 1px dashed var(--yc-gray-700); border-radius: 12px; color: var(--yc-gray-500); font-size: 0.9rem; }
[data-theme="light"] .yc-lookbook__title    { color: var(--yc-black); }
[data-theme="light"] .yc-lookbook__sub      { color: #555; }
[data-theme="light"] .yc-lb-popup           { background: #fff; border-color: #e5e5e5; }
[data-theme="light"] .yc-lb-popup__title    { color: #000; }
[data-theme="light"] .yc-lb-popup__current  { color: #000; }
[data-theme="light"] .yc-lb-list-item__title { color: #000; }

/* ──────────────────────────────────────────────────────────────── */
/* Respect de la préférence système "réduire les animations" */
@media (prefers-reduced-motion: reduce) {
  .yc-lb-hotspot__pulse { animation: none; }
  .yc-will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}