/*
Theme Name: Hello Elementor Child — FNAC
Theme URI: https://artofdoing.net
Description: Child theme Hello Elementor pour la boutique FNAC (COD Algérie). Thème clair jaune + blanc, typographie Montserrat, animations au scroll. Pas de panier, boutons « Commander ».
Author: Art Of Doing
Template: hello-elementor
Version: 3.3.0
Text Domain: hello-elementor-child
*/

:root {
  --fnac-yellow: #F5B400;      /* jaune vif principal */
  --fnac-yellow-600: #E8A600;  /* jaune logo (hover) */
  --fnac-ink: #14140F;         /* titres / texte fort */
  --fnac-body: #55554C;        /* texte courant */
  --fnac-white: #FFFFFF;
  --fnac-cream: #FFFBF0;       /* fond de section alterné (blanc chaud) */
  --fnac-line: #EFEAD9;        /* bordures douces */
  --fnac-shadow: 0 18px 50px rgba(20,20,15,.10);
}

/* ============================ BASE ============================ */
body {
  font-family: "Montserrat", sans-serif;
  color: var(--fnac-body);
  background: var(--fnac-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  font-family: "Montserrat", sans-serif;
  color: var(--fnac-ink);
  letter-spacing: -0.02em;
}
html { scroll-behavior: smooth; }
::selection { background: var(--fnac-yellow); color: var(--fnac-ink); }
::-moz-selection { background: var(--fnac-yellow); color: var(--fnac-ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .elementor-button:focus-visible {
  outline: 2px solid var(--fnac-yellow); outline-offset: 2px;
}
@media (min-width: 768px) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: #F3F0E8; }
  ::-webkit-scrollbar-thumb { background: #E1D9C3; border-radius: 10px; border: 2px solid #F3F0E8; }
  ::-webkit-scrollbar-thumb:hover { background: var(--fnac-yellow); }
}

/* ============================ HEADER ============================ */
/* Fond blanc : le logo (noir + jaune) doit rester pleinement lisible — le jaune
   reste une couleur d'accent (ligne dorée, liens, boutons), pas un fond. */
#site-header.site-header {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 999;
  background: var(--fnac-white);
  border-bottom: none;
  transition: box-shadow .35s ease, padding .35s ease, background-color .35s ease;
  animation: fnacHeaderIn .7s cubic-bezier(.22,.61,.36,1) both;
}
/* En sticky : blanc légèrement translucide + flou, pour décoller du contenu. */
@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  #site-header.site-header.is-scrolled {
    background: rgba(255,255,255,.85);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    backdrop-filter: blur(12px) saturate(1.4);
  }
}
/* Lueur ambrée discrète qui traverse le header (chaleur, sans salir le blanc) */
#site-header.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 220% at 12% 0%, rgba(245,180,0,.10), rgba(245,180,0,0) 60%);
  animation: fnacHeaderGlow 10s ease-in-out infinite alternate;
}
@keyframes fnacHeaderGlow {
  0%   { transform: translateX(-14%); opacity: .6; }
  100% { transform: translateX(48%);  opacity: 1; }
}
/* Ligne dorée animée en bas du header */
#site-header.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(245,180,0,0), var(--fnac-yellow), var(--fnac-yellow-600), var(--fnac-yellow), rgba(245,180,0,0));
  background-size: 220% 100%;
  animation: fnacLineFlow 7s linear infinite;
}
@keyframes fnacHeaderDrift { from { background-position-x: 0; } to { background-position-x: 340px; } }
@keyframes fnacLineFlow { from { background-position: 0% 0; } to { background-position: 220% 0; } }
@media (prefers-reduced-motion: reduce) {
  #site-header.site-header,
  #site-header.site-header::before,
  #site-header.site-header::after { animation: none; }
}

#site-header.site-header .header-inner { position: relative; z-index: 2; padding-top: 14px; padding-bottom: 14px; transition: padding .35s ease; }
#site-header.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(20,20,15,.12); }
#site-header.site-header.is-scrolled .header-inner { padding-top: 8px; padding-bottom: 8px; }
/* Logo : wordmark large (~2.6:1) — on cale sur la hauteur, jamais de déformation.
   Il se rétracte quand le header passe en sticky. */
#site-header .site-logo img.custom-logo {
  height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: height .35s ease;
}
#site-header.is-scrolled .site-logo img.custom-logo { height: 36px; }
#site-header .custom-logo-link { display: inline-block; line-height: 0; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
#site-header .custom-logo-link:hover { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  #site-header .site-logo img.custom-logo,
  #site-header .custom-logo-link { transition: none; }
  #site-header .custom-logo-link:hover { transform: none; }
}
#site-header .site-description { color: rgba(20,20,15,.5); font-size: 12px; margin: 2px 0 0; }

#site-header .site-navigation ul.menu { gap: 6px; align-items: center; }
#site-header .site-navigation ul.menu > li { margin: 0 10px; animation: fnacNavIn .55s cubic-bezier(.22,.61,.36,1) both; }
#site-header .site-navigation ul.menu > li:nth-child(1){animation-delay:.25s}
#site-header .site-navigation ul.menu > li:nth-child(2){animation-delay:.35s}
#site-header .site-navigation ul.menu > li:nth-child(3){animation-delay:.45s}
#site-header .site-navigation ul.menu > li:nth-child(4){animation-delay:.55s}
#site-header .site-navigation ul.menu > li > a {
  color: var(--fnac-ink); font-weight: 600; font-size: 13.5px; text-transform: uppercase;
  letter-spacing: 1px; padding: 8px 2px; position: relative; transition: color .25s ease;
}
#site-header .site-navigation ul.menu > li > a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px;
  background: var(--fnac-yellow); border-radius: 2px; transform: translateX(-50%);
  transition: width .3s cubic-bezier(.22,.61,.36,1);
}
#site-header .site-navigation ul.menu > li > a:hover { color: var(--fnac-yellow-600); }
#site-header .site-navigation ul.menu > li > a:hover::after,
#site-header .site-navigation ul.menu > li.current-menu-item > a::after { width: 100%; }
#site-header .site-navigation ul.menu > li.current-menu-item > a { color: var(--fnac-yellow-600); }

/* Switcher FR/AR — le plugin aod-cod-form pose son CSS en !important mais expose
   des variables : on lui donne la charte FNAC (sinon il retombe sur son vert par défaut). */
:root {
  --aod-lang-bg: rgba(20,20,15,.05);
  --aod-lang-color: rgba(20,20,15,.65);
  --aod-lang-hover-bg: rgba(20,20,15,.09);
  --aod-lang-hover-color: var(--fnac-ink);
  --aod-lang-active-bg: var(--fnac-yellow);
  --aod-lang-active-color: var(--fnac-ink);
}
.aod-lang { align-items: center; border: 1px solid rgba(20,20,15,.10); }

/* ============================ MENU MOBILE ============================
   Hello dessine le burger avec ::before (+ son box-shadow = trait du milieu) et
   ::after, tous deux en `currentColor`. Le <span> porteur doit rester TRANSPARENT :
   lui poser un background le transforme en gros bloc plein. On ne fixe donc que
   `color`, et Hello s'occupe des 3 traits + de l'animation en croix. */
#site-header .site-navigation-toggle { color: var(--fnac-ink); }

/* Bouton burger : vraie cible tactile (44px, recommandation WCAG), pastille
   discrète au repos, jaune de la marque une fois le menu ouvert. */
#site-header .site-navigation-toggle-holder .site-navigation-toggle {
  width: 44px; height: 44px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(20,20,15,.04);
  border: 1px solid rgba(20,20,15,.10);
  border-radius: 12px;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
#site-header .site-navigation-toggle-holder .site-navigation-toggle:active { transform: scale(.94); }
#site-header .site-navigation-toggle-holder.elementor-active .site-navigation-toggle {
  background: var(--fnac-yellow);
  border-color: var(--fnac-yellow);
  color: var(--fnac-ink);
}

/* Panneau déroulant : carte blanche flottante plutôt qu'un bandeau collé. */
.site-navigation-dropdown { background: transparent !important; }
.site-navigation-dropdown ul.menu {
  background: rgba(255,255,255,.98) !important;
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--fnac-yellow);
  box-shadow: 0 18px 40px rgba(20,20,15,.14);
}
.site-navigation-dropdown ul.menu > li > a {
  color: var(--fnac-ink) !important;
  font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 17px 22px !important;
  border-bottom: 1px solid var(--fnac-line);
  transition: background .2s ease, color .2s ease;
}
.site-navigation-dropdown ul.menu > li:last-child > a { border-bottom: 0; }
.site-navigation-dropdown ul.menu > li > a:hover { color: var(--fnac-yellow-600) !important; background: #FFFBF0; }
/* Page courante : liseré jaune + fond crème (au lieu du gris terne par défaut).
   `inset-inline-start` -> le liseré passe à droite en RTL, sans règle dédiée. */
.site-navigation-dropdown ul.menu > li.current-menu-item > a {
  color: var(--fnac-yellow-600) !important;
  background: #FFF9E8 !important;
  box-shadow: inset 3px 0 0 var(--fnac-yellow);
}
body.rtl .site-navigation-dropdown ul.menu > li.current-menu-item > a { box-shadow: inset -3px 0 0 var(--fnac-yellow); }

/* Switcher FR/AR dans le panneau : centré, aéré, séparé des liens. */
.site-navigation-dropdown ul.menu > li.menu-item-aod-lang { padding: 14px 22px; display: flex; justify-content: center; }
.site-navigation-dropdown .aod-lang { transform: scale(1.1); }

@keyframes fnacHeaderIn { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes fnacNavIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================ BOUTONS ============================ */
.elementor-button, .fnac-btn {
  font-family: "Montserrat", sans-serif; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  position: relative; overflow: hidden;
}
.elementor-button:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(232,166,0,.35); }
.elementor-button::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.elementor-button:hover::before { left: 130%; }

/* ============================ SCROLL REVEAL (fadeInUp) ============================ */
.fnac-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  transition-delay: var(--fnac-delay, 0ms); will-change: opacity, transform;
}
.fnac-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fnac-reveal { opacity: 1 !important; transform: none !important; } }

/* ---- SCÈNES : chaque section apparaît d'une façon différente au scroll ---- */
/* on clippe les sections qui glissent horizontalement (pas de scroll horizontal) */
.elementor-element-serv0001, .elementor-element-steps001 { overflow: hidden; }

.elementor-element-stats001  .fnac-reveal:not(.is-visible) { transform: scale(.82); }                 /* zoom / pop */
.elementor-element-serv0001  .fnac-reveal:not(.is-visible) { transform: translateX(-64px); }          /* glisse depuis la gauche */
.elementor-element-steps001  .fnac-reveal:not(.is-visible) { transform: translateX(64px); }           /* glisse depuis la droite */
.elementor-element-reass001  .fnac-reveal:not(.is-visible) { transform: translateY(56px) scale(.94); }/* monte + zoom */
.elementor-element-cta00001  .fnac-reveal:not(.is-visible) { transform: scale(.86); }                 /* zoom */
.elementor-element-ctbody01  .fnac-reveal:not(.is-visible) { transform: translateY(52px) scale(.96); }/* contact : monte + zoom */

/* RTL : on inverse le sens des glissements horizontaux */
body.rtl .elementor-element-serv0001 .fnac-reveal:not(.is-visible) { transform: translateX(64px); }
body.rtl .elementor-element-steps001 .fnac-reveal:not(.is-visible) { transform: translateX(-64px); }

/* ---- TRANSITIONS ENTRE PAGES : une animation DIFFÉRENTE par section ---- */
.fnac-page { position: relative; }
.elementor-element-cthero01 { overflow: hidden; }
.fnac-page::after {
  content: ""; position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background: linear-gradient(120deg, #F5B400 0%, #FFCE5A 55%, #FFE9A8 100%);
  transform: scaleY(1); transform-origin: top;
  transition: transform .85s cubic-bezier(.76, 0, .24, 1),
              clip-path .85s cubic-bezier(.76, 0, .24, 1),
              opacity .6s ease;
}
.fnac-page.fnac-page-in::after { transform: scaleY(0); }

/* 1) Compteurs — rideau DORÉ depuis le HAUT (défaut ci-dessus) */

/* 2) Univers — balayage SOMBRE depuis la GAUCHE */
.elementor-element-serv0001.fnac-page::after { background: linear-gradient(120deg,#14140F,#2A2A22); transform-origin: left; transform: scaleX(1); }
.elementor-element-serv0001.fnac-page.fnac-page-in::after { transform: scaleX(0); }

/* 3) Étapes — balayage CLAIR depuis la DROITE */
.elementor-element-steps001.fnac-page::after { background: linear-gradient(120deg,#FFFFFF,#FFF3D2); transform-origin: right; transform: scaleX(1); }
.elementor-element-steps001.fnac-page.fnac-page-in::after { transform: scaleX(0); }

/* 4) Pourquoi — rideau DORÉ qui MONTE (depuis le bas) */
.elementor-element-reass001.fnac-page::after { transform-origin: bottom; transform: scaleY(1); }
.elementor-element-reass001.fnac-page.fnac-page-in::after { transform: scaleY(0); }

/* 5) CTA — révélation en CERCLE (iris) sombre */
.elementor-element-cta00001.fnac-page::after { background: linear-gradient(120deg,#14140F,#2A2A22); transform: none; clip-path: circle(150% at 50% 50%); }
.elementor-element-cta00001.fnac-page.fnac-page-in::after { transform: none; clip-path: circle(0% at 50% 50%); }

/* Contact — héro : fondu + zoom / corps : fondu clair */
.elementor-element-cthero01.fnac-page::after { transform: scale(1); opacity: 1; }
.elementor-element-cthero01.fnac-page.fnac-page-in::after { transform: scale(1.15); opacity: 0; }
.elementor-element-ctbody01.fnac-page::after { background: linear-gradient(120deg,#FFFFFF,#FFF3D2); transform: none; opacity: 1; }
.elementor-element-ctbody01.fnac-page.fnac-page-in::after { transform: none; opacity: 0; }

@media (prefers-reduced-motion: reduce) { .fnac-page::after { display: none; } }

/* ---- PLEIN ÉCRAN : chaque section = une page (full-page) sur grand écran ---- */
@media (min-width: 1025px) and (min-height: 640px) {
  html { scroll-snap-type: y proximity; scroll-padding-top: 0; }
  .elementor-element-hero001,
  .elementor-element-stats001,
  .elementor-element-serv0001,
  .elementor-element-steps001,
  .elementor-element-reass001,
  .elementor-element-cta00001 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .elementor-element-hero001  > .elementor-container,
  .elementor-element-stats001 > .elementor-container,
  .elementor-element-serv0001 > .elementor-container,
  .elementor-element-steps001 > .elementor-container,
  .elementor-element-reass001 > .elementor-container,
  .elementor-element-cta00001 > .elementor-container { width: 100%; }
}

/* Indicateur de scroll (souris) */
.fnac-scroll-ind { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; transition: opacity .4s ease, transform .4s ease; }
.fnac-scroll-ind.is-hidden { opacity: 0; transform: translateX(-50%) translateY(10px); pointer-events: none; }
.fnac-scroll-ind__mouse { display: block; width: 26px; height: 42px; border: 2px solid rgba(20,20,15,.35); border-radius: 100px; position: relative; }
.fnac-scroll-ind__wheel { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: var(--fnac-yellow-600); border-radius: 100px; animation: scrollWheel 1.5s cubic-bezier(.15,.41,.69,.94) infinite; }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(15px); } }

/* Héro : léger zoom lent au chargement */
.elementor-element-hero001 > .elementor-container { animation: heroZoomOut 8s ease-out forwards; }
@keyframes heroZoomOut { 0% { transform: scale(1.04); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .elementor-element-hero001 > .elementor-container { animation: none; }
  .fnac-scroll-ind { display: none; }
}

/* Héro (1re section) : FOND ANIMÉ — le motif défile lentement + halo qui respire */
.elementor-element-hero001 {
  position: relative; overflow: hidden;
  animation: fnacBgDrift 50s linear infinite;
}
@keyframes fnacBgDrift {
  from { background-position: 0 0; }
  to   { background-position: 480px 240px; }
}
.elementor-element-hero001::before {
  content: ""; position: absolute; top: -25%; right: -10%; width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(245,180,0,.22) 0%, rgba(245,180,0,0) 62%);
  pointer-events: none; z-index: 0;
  animation: fnacGlow 9s ease-in-out infinite alternate;
}
@keyframes fnacGlow {
  0%   { transform: translate(0, 0) scale(1); opacity: .85; }
  100% { transform: translate(-5%, 6%) scale(1.15); opacity: 1; }
}
body.rtl .elementor-element-hero001::before { right: auto; left: -10%; }
@media (prefers-reduced-motion: reduce) {
  .elementor-element-hero001 { animation: none; }
  .elementor-element-hero001::before { animation: none; }
}

/* ============================ COMPTEURS (bandeau stats) ============================ */
/* 2e section : vraie image de fond (iPhones), fortement assombrie et UNIFORME
   pour une lisibilité garantie du texte partout, + animation « Ken Burns ». */
.elementor-element-stats001 {
  position: relative; overflow: hidden;
  background: #14140F !important;
}
/* Image + voile sombre dans le MÊME pseudo (::before) : ainsi ::after reste libre
   pour le voile de transition entre sections (.fnac-page::after) et l'assombrissement
   ne « disparaît » plus quand la section entre à l'écran. */
.elementor-element-stats001::before {
  content: ""; position: absolute; inset: -3%; z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,15,12,.74) 0%, rgba(15,15,12,.82) 100%),
    radial-gradient(70% 130% at 85% 8%, rgba(245,180,0,.22), rgba(245,180,0,0) 60%),
    url("assets/stats-iphones.jpg") center/cover no-repeat;
  animation: fnacKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes fnacKenBurns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.16) translate(-2.5%, -1.5%); }
}
.elementor-element-stats001 > .elementor-container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .elementor-element-stats001::before { animation: none; } }
.elementor-element-stats001 .elementor-counter { text-align: center; position: relative; z-index: 1; }
/* Nombres : blanc pur, gras, double ombre portée pour ressortir sur toute zone. */
.elementor-element-stats001 .elementor-counter-number-wrapper,
.elementor-element-stats001 .elementor-counter-number-wrapper * {
  font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 56px; line-height: 1;
  color: #FFFFFF !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.7), 0 6px 26px rgba(0,0,0,.55);
}
.elementor-element-stats001 .elementor-counter-title {
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .3px;
  color: #FFD86B !important; margin-top: 10px; opacity: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,.75);
}
@media (max-width: 767px) {
  .elementor-element-stats001 .elementor-counter-number-wrapper { font-size: 42px; }
  .elementor-element-stats001 .elementor-counter { margin-bottom: 22px; }
}

/* ============================ ÉTAPES (SIMPLE & SANS ENGAGEMENT) ============================ */
/* Fond image « réparation de portable » assombri + animation Ken Burns, texte en clair. */
.elementor-element-steps001 { position: relative; background: #14140F !important; }
.elementor-element-steps001::before {
  content: ""; position: absolute; inset: -3%; z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,15,12,.74) 0%, rgba(15,15,12,.84) 100%),
    radial-gradient(60% 120% at 14% 8%, rgba(245,180,0,.20), rgba(245,180,0,0) 60%),
    url("assets/steps-repair.jpg") center/cover no-repeat;
  animation: fnacKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.elementor-element-steps001 > .elementor-container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .elementor-element-steps001::before { animation: none; } }
/* Texte en clair (les couleurs foncées viennent des réglages Elementor → on force). */
.elementor-element-steps001 .elementor-heading-title { color: #FFFFFF !important; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.elementor-element-stepseye .elementor-heading-title { color: #FFD86B !important; }
.elementor-element-steps001 .elementor-icon-box-title,
.elementor-element-steps001 .elementor-icon-box-title a { color: #FFFFFF !important; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.elementor-element-steps001 .elementor-icon-box-description { color: #E6E3DA !important; text-shadow: 0 1px 4px rgba(0,0,0,.55); }

/* ============================ CTA FINAL (Prêt à commander…) ============================ */
/* Fond image moderne (appareil premium sur pierre) assombri + Ken Burns, texte clair,
   bouton jaune pour ressortir. Image+voile dans ::before → ::after libre (transition iris). */
.elementor-element-cta00001 { position: relative; background: #14140F !important; }
.elementor-element-cta00001::before {
  content: ""; position: absolute; inset: -3%; z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,15,12,.78) 0%, rgba(15,15,12,.86) 100%),
    radial-gradient(60% 130% at 85% 12%, rgba(245,180,0,.24), rgba(245,180,0,0) 60%),
    url("assets/cta-modern.jpg") center/cover no-repeat;
  animation: fnacKenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}
.elementor-element-cta00001 > .elementor-container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .elementor-element-cta00001::before { animation: none; } }
/* Texte en clair (les couleurs foncées viennent d'Elementor → on force). */
.elementor-element-cta00001 .elementor-heading-title { color: #FFFFFF !important; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.elementor-element-cta00001 .elementor-widget-text-editor,
.elementor-element-cta00001 .elementor-widget-text-editor * { color: #EAE7DE !important; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
/* Bouton jaune qui ressort sur le fond sombre. */
.elementor-element-cta00001 .elementor-button {
  background-color: var(--fnac-yellow) !important; color: #14140F !important;
  font-weight: 700; box-shadow: 0 14px 30px rgba(245,180,0,.35);
}
.elementor-element-cta00001 .elementor-button:hover { background-color: #FFFFFF !important; color: #14140F !important; }

/* ============================ VISUEL HÉRO (photo réelle) ============================ */
/* Plus grand + cadre moderne : halo dégradé animé derrière, anneau flottant, flottement. */
.fnac-hero-visual { position: relative; z-index: 1; }
/* Halo (blob) dégradé jaune animé derrière l'image */
.fnac-hero-visual::before {
  content: ""; position: absolute; z-index: -1; inset: -9% -11% -13% -9%;
  background:
    radial-gradient(58% 58% at 32% 30%, rgba(245,180,0,.42), rgba(245,180,0,0) 70%),
    radial-gradient(52% 52% at 82% 82%, rgba(245,180,0,.28), rgba(245,180,0,0) 72%);
  filter: blur(4px);
  border-radius: 42% 58% 55% 45% / 52% 44% 56% 48%;
  animation: fnacBlob 13s ease-in-out infinite alternate;
}
@keyframes fnacBlob {
  0%   { border-radius: 42% 58% 55% 45% / 52% 44% 56% 48%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 58% 42% 45% 55% / 44% 56% 48% 52%; transform: rotate(9deg) scale(1.07); }
}
/* Anneau décoratif flottant (accent) */
.fnac-hero-visual::after {
  content: ""; position: absolute; top: -14px; right: -12px; width: 78px; height: 78px;
  border: 7px solid rgba(245,180,0,.55); border-radius: 50%; z-index: 2;
  animation: fnacHeroFloat 5s ease-in-out infinite reverse;
}
body.rtl .fnac-hero-visual::after { right: auto; left: -12px; }
/* L'image : plus grande, arrondie, ombre douce, flottement + micro-rotation */
.fnac-hero-visual img {
  position: relative; z-index: 1;
  display: block; width: 100%; max-width: 760px; height: auto; margin-inline: auto;
  border-radius: 28px; box-shadow: 0 44px 84px rgba(20,20,15,.24);
  animation: fnacHeroFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes fnacHeroFloat {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50%      { transform: translateY(-22px) rotate(.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .fnac-hero-visual::before, .fnac-hero-visual::after, .fnac-hero-visual img { animation: none; }
}

/* ============================ CARTES « NOS UNIVERS » (photos réelles) ============================ */
/* Chaque univers = une carte photo propre : image en haut (cadrée), titre + texte dessous. */
.elementor-widget-image-box.fnac-univ-card {
  background: #fff; border: 1px solid var(--fnac-line); border-radius: 20px;
  overflow: hidden; height: 100%;
  box-shadow: 0 10px 30px rgba(20,20,15,.06);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.elementor-widget-image-box.fnac-univ-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(20,20,15,.16);
  border-color: rgba(245,180,0,.5);
}
/* On neutralise le layout flex d'Elementor (qui centrait l'image à ~50%) :
   empilement vertical simple, image + texte pleine largeur. */
.fnac-univ-card .elementor-image-box-wrapper {
  display: block !important; text-align: left;
}
body.rtl .fnac-univ-card .elementor-image-box-wrapper { text-align: right; }
/* Image : pleine largeur, ratio constant, zoom doux au survol */
.fnac-univ-card .elementor-image-box-img {
  display: block !important; width: 100% !important; margin: 0 !important; overflow: hidden;
}
.fnac-univ-card .elementor-image-box-img img {
  display: block; width: 100% !important; height: 210px; object-fit: cover; object-position: center;
  border-radius: 0; transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.fnac-univ-card:hover .elementor-image-box-img img { transform: scale(1.06); }
/* Contenu texte */
.fnac-univ-card .elementor-image-box-content { padding: 22px 24px 26px; }
.fnac-univ-card .elementor-image-box-title { font-weight: 800; font-size: 20px; margin: 0 0 8px; }
.fnac-univ-card .elementor-image-box-description { font-size: 14.5px; line-height: 1.7; margin: 0; }
@media (max-width: 767px) {
  .fnac-univ-card .elementor-image-box-img img { height: 190px; }
  .fnac-univ-card .elementor-image-box-content { padding: 18px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .fnac-hero-visual img { animation: none; }
}

/* ============================ ICON-BOX (survols) ============================ */
.elementor-widget-icon-box { transition: transform .3s ease; }
.elementor-widget-icon-box:hover { transform: translateY(-6px); }
.elementor-widget-icon-box .elementor-icon { transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.elementor-widget-icon-box:hover .elementor-icon { transform: scale(1.12) rotate(-6deg); }

/* ============================ BOUTIQUE ============================ */
/* Bandeau héro : vraie photo high-tech assombrie + Ken Burns, titre en blanc.
   Carte arrondie (pas de pleine largeur → aucun débordement horizontal). */
.woocommerce-products-header {
  position: relative; overflow: hidden; isolation: isolate;
  max-width: 1200px; margin: 22px auto 28px; border-radius: 26px;
  padding: 76px 24px 64px; text-align: center;
  box-shadow: 0 24px 54px rgba(20,20,15,.18);
}
.woocommerce-products-header::before {
  content: ""; position: absolute; inset: -3%; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,15,12,.72) 0%, rgba(15,15,12,.82) 100%),
    radial-gradient(60% 120% at 85% 10%, rgba(245,180,0,.28), rgba(245,180,0,0) 60%),
    url("assets/shop-hero.jpg") center/cover no-repeat;
  animation: fnacKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .woocommerce-products-header::before { animation: none; } }
.woocommerce-products-header__title.page-title {
  font-weight: 800; font-size: 46px; color: #FFFFFF !important; position: relative; display: inline-block; margin: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.woocommerce-products-header__title.page-title::after {
  content: ""; display: block; width: 64px; height: 4px; border-radius: 4px; background: var(--fnac-yellow); margin: 14px auto 0;
}
/* Sous-titre boutique (ajouté via functions.php) */
.fnac-shop-subtitle {
  text-align: center; color: #EAE7DE; font-size: 16.5px; line-height: 1.65;
  max-width: 640px; margin: 16px auto 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.fnac-shop-subtitle strong { color: #FFD86B; }
@media (max-width: 767px) {
  .woocommerce-products-header { padding: 54px 18px 46px; border-radius: 18px; margin: 14px auto 22px; }
}
/* Barre outils (nombre de résultats + tri) centrée et aérée */
.woocommerce .woocommerce-result-count { color: var(--fnac-body); font-size: 14px; float: none; text-align: center; margin: 6px 0 0; }
.woocommerce .woocommerce-ordering { float: none; text-align: center; margin: 12px 0 6px; }
.woocommerce select.orderby, .woocommerce .woocommerce-ordering select {
  font-family: "Montserrat", sans-serif; border: 1px solid var(--fnac-line); border-radius: 100px;
  padding: 10px 18px; background: #fff; color: var(--fnac-ink); cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease;
}
.woocommerce .woocommerce-ordering select:hover { border-color: var(--fnac-yellow); }
.woocommerce .woocommerce-ordering select:focus { outline: none; border-color: var(--fnac-yellow); box-shadow: 0 0 0 3px rgba(245,180,0,.18); }

/* Grille produits : cartes de largeur régulière, VRAIMENT centrées (flexbox fiable
   quel que soit le nombre de produits — la grille auto-fit décalait vers la droite). */
.woocommerce ul.products {
  display: flex !important; flex-wrap: wrap;
  justify-content: center; align-items: stretch; gap: 26px;
  max-width: 1200px; margin: 26px auto 0; padding: 0; list-style: none;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  flex: 0 1 258px; max-width: 258px;
  width: auto !important; margin: 0 !important; float: none !important;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--fnac-line); border-radius: 20px; padding: 14px; overflow: hidden;
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease;
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0 22px 46px rgba(20,20,15,.14); transform: translateY(-6px); border-color: rgba(245,180,0,.55);
}
/* Zone image : carré uniforme sur fond clair (produits bien alignés) */
.woocommerce ul.products li.product a img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; height: auto; margin: 0 0 12px;
  border-radius: 14px; background: #F6F4EE;
  transition: transform .55s cubic-bezier(.22,.61,.36,1) !important;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-weight: 700; color: var(--fnac-ink); font-size: 16.5px; padding: 4px 4px 2px; line-height: 1.35;
}
.woocommerce ul.products li.product .price { font-weight: 800; font-size: 20px; color: var(--fnac-ink); margin: 6px 4px 14px; }
.woocommerce ul.products li.product .price del { color: #A9A498; font-weight: 400; margin-inline-end: 6px; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
/* Bouton « Commander » pleine largeur, collé en bas de la carte */
.woocommerce ul.products li.product .fnac-order-btn {
  display: block; width: 100%; text-align: center; margin-top: auto;
}

/* Bouton « Commander » + boutons Woo */
.fnac-order-btn, .woocommerce a.button.fnac-order-btn,
.woocommerce a.button, .woocommerce button.button, .woocommerce .button {
  background: var(--fnac-yellow) !important; color: var(--fnac-ink) !important;
  font-family: "Montserrat", sans-serif; font-weight: 700; border-radius: 100px !important;
  padding: 12px 26px !important; border: none !important;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease !important;
}
.fnac-order-btn:hover, .woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--fnac-ink) !important; color: #fff !important; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(20,20,15,.25);
}

/* Badge promo */
.woocommerce span.onsale {
  background: var(--fnac-yellow); color: var(--fnac-ink); font-weight: 700; border-radius: 100px;
  min-height: 0; min-width: 0; padding: 6px 14px; line-height: 1; top: 14px; left: 14px;
  box-shadow: 0 6px 16px rgba(245,180,0,.35);
}
body.rtl .woocommerce span.onsale { left: auto; right: 14px; }

/* Pagination pastilles */
.woocommerce nav.woocommerce-pagination ul { border: none; gap: 8px; display: flex; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: none; margin: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--fnac-line); border-radius: 50%; width: 44px; height: 44px; line-height: 44px; padding: 0; font-weight: 700;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--fnac-yellow); color: var(--fnac-ink); border-color: var(--fnac-yellow);
}
.woocommerce div.product .product_title { font-weight: 800; }
.woocommerce div.product p.price { font-weight: 800; font-size: 30px; color: var(--fnac-ink); }

/* ============================ PAGE PRODUIT (fond + cadres) ============================ */
/* Fond ANIMÉ, CLAIR et moderne (« aurora ») : dégradés jaunes qui dérivent
   lentement + motif tech en filigrane. Le formulaire COD reste sur carte blanche. */
body.single-product,
body.woocommerce-shop,
body.post-type-archive-product { background: #FFFDF7 !important; }
body.single-product::before,
body.woocommerce-shop::before,
body.post-type-archive-product::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(38% 46% at 15% 18%, rgba(245,180,0,.28), rgba(245,180,0,0) 60%),
    radial-gradient(34% 42% at 86% 12%, rgba(255,206,74,.24), rgba(255,206,74,0) 60%),
    radial-gradient(42% 48% at 78% 82%, rgba(245,180,0,.22), rgba(245,180,0,0) 62%),
    radial-gradient(38% 44% at 22% 84%, rgba(255,222,130,.22), rgba(255,222,130,0) 62%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF6E2 100%);
  background-size: 180% 180%;
  animation: fnacAurora 20s ease-in-out infinite alternate;
  will-change: background-position;
}
body.single-product::after,
body.woocommerce-shop::after,
body.post-type-archive-product::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: url("assets/bg-mix.svg") repeat; background-size: 250px;
  opacity: .4;
  animation: fnacPatternDrift 45s linear infinite;
}
@keyframes fnacAurora {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 50% 100%; }
}
@keyframes fnacPatternDrift { from { background-position: 0 0; } to { background-position: 250px 250px; } }
@media (prefers-reduced-motion: reduce) {
  body.single-product::before, body.single-product::after,
  body.woocommerce-shop::before, body.woocommerce-shop::after,
  body.post-type-archive-product::before, body.post-type-archive-product::after { animation: none; }
}
/* Image produit présentée comme une carte (cadre blanc, coins arrondis, ombre). */
.single-product .woocommerce div.product .woocommerce-product-gallery {
  background: #fff; border: 1px solid var(--fnac-line); border-radius: 22px; padding: 16px;
  box-shadow: 0 18px 44px rgba(20,20,15,.08);
}
/* Robustesse : afficher l'image à sa taille même si le JS Woo (flexslider) tarde
   ou échoue (site lent). Un seul visuel produit → aucun risque de mise en page. */
.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery .flex-viewport { opacity: 1 !important; height: auto !important; }
.single-product .woocommerce-product-gallery__wrapper { transform: none !important; }
.single-product .woocommerce-product-gallery__image { width: 100% !important; float: none !important; }
.single-product .woocommerce-product-gallery__image img { width: 100%; height: auto; border-radius: 14px; display: block; }
/* Titre + prix + tabs bien lisibles sur le fond doux. */
.single-product .woocommerce div.product .product_title { color: var(--fnac-ink); }
.single-product .woocommerce-tabs .wc-tabs,
.single-product .woocommerce-Tabs-panel { position: relative; }
/* Onglets Description/Avis + « Produits similaires » sur une feuille blanche discrète. */
.single-product .woocommerce div.product .woocommerce-tabs {
  background: #fff; border: 1px solid var(--fnac-line); border-radius: 20px;
  padding: 22px 26px; margin-top: 32px; box-shadow: 0 12px 34px rgba(20,20,15,.05);
}
.single-product .related.products {
  background: #fff; border: 1px solid var(--fnac-line); border-radius: 20px;
  padding: 26px; margin-top: 32px; box-shadow: 0 12px 34px rgba(20,20,15,.05);
}
@media (max-width: 767px) {
  .single-product .woocommerce div.product .woocommerce-tabs,
  .single-product .related.products { padding: 18px; border-radius: 16px; }
}

/* ============================ FORMULAIRE COD (page produit) ============================ */
/* Carte CRÈME (plus de blanc plat) + bandeau titre jaune, typo du site, accents marque.
   On rethème via les variables CSS exposées par le plugin — aucun fork du plugin. */
.single-product .aod-cod {
  --sh-accent: #F5B400;
  --sh-accent-dark: #E8A600;
  --sh-line: #E4DECC;
  --sh-line-strong: #C9C2AC;
  --sh-bg-sub: #F4EFE1;
  --sh-radius: 12px;
  --sh-radius-sm: 10px;

  background: linear-gradient(180deg, #F8F4E7 0%, #EDE5D0 100%) !important;
  border: 1px solid #DFD8C2 !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 54px rgba(20,20,15,.14);
  padding: 0 0 24px !important;
  overflow: hidden;
  font-family: "Montserrat", sans-serif !important;
}
/* Bandeau titre jaune sur toute la largeur de la carte */
.single-product .aod-cod .aod-cod__title {
  margin: 0 0 20px !important;
  padding: 18px 24px;
  background: linear-gradient(135deg, #FFD054 0%, #F5B400 55%, #EDA300 100%);
  color: #14140F !important;
  font-weight: 800 !important;
  font-size: 1.06em !important;
  letter-spacing: -.01em;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.10);
}
/* Le contenu sous le bandeau retrouve ses marges intérieures */
.single-product .aod-cod > .aod-cod__form { padding: 0 24px; }
.single-product .aod-cod > .aod-cod__pack,
.single-product .aod-cod > .aod-cod__msg,
.single-product .aod-cod > .aod-cod__config-msg { margin-left: 24px; margin-right: 24px; }

/* Champs blancs sur carte crème → ils ressortent nettement (pattern formulaire pro) */
.single-product .aod-cod .aod-cod__form input,
.single-product .aod-cod .aod-cod__form select,
.single-product .aod-cod .aod-cod__form textarea {
  border-color: #DCD5C1 !important;
  box-shadow: 0 1px 2px rgba(20,20,15,.05);
}
/* Garde-fous contraste : la coche doit être sombre sur la pastille jaune,
   et le prix de l'offre lisible (le jaune sur blanc ne passerait pas). */
.single-product .aod-cod .aod-cod__offer-card.is-selected .aod-cod__offer-check::after {
  border-color: #14140F !important;
}
.single-product .aod-cod .aod-cod__offer-now,
.single-product .aod-cod .aod-cod__offer-title { color: #14140F !important; }

/* Bouton de commande : plus de présence */
.single-product .aod-cod .aod-cod__submit {
  box-shadow: 0 14px 30px rgba(245,180,0,.35);
  font-weight: 800 !important;
  letter-spacing: .2px;
}
/* Réassurance « paiement à la livraison » mise en valeur */
.single-product .aod-cod .aod-cod__reassure {
  background: #FFFFFF; border: 1px solid #EAE4D2; border-radius: 12px;
  padding: 12px 14px; margin-top: 16px;
}

/* ============================ FORMULAIRE CONTACT (CF7) ============================ */
.fnac-form label { font-weight: 600; color: var(--fnac-ink); display: block; margin-bottom: 6px; }
.fnac-form p { margin: 0 0 16px; }
.fnac-form input[type=text], .fnac-form input[type=tel], .fnac-form input[type=email], .fnac-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--fnac-line); border-radius: 12px; background: #FBF9F3;
  font-family: "Montserrat", sans-serif; font-size: 16px; color: var(--fnac-ink);
}
.fnac-form textarea { min-height: 140px; }
.fnac-form input:focus, .fnac-form textarea:focus { outline: none; border-color: var(--fnac-yellow); background: #fff; box-shadow: 0 0 0 3px rgba(245,180,0,.15); }
.fnac-form .wpcf7-submit {
  background: var(--fnac-yellow); color: var(--fnac-ink); border: none; border-radius: 100px;
  padding: 14px 34px; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease;
}
.fnac-form .wpcf7-submit:hover { background: var(--fnac-ink); color: #fff; transform: translateY(-3px); }
body.rtl .fnac-form label, body.rtl .elementor-icon-box-content { text-align: right; }

/* ============================ FOOTER ============================ */
.fnac-footer { background: var(--fnac-ink); color: #C9C7BE; border-top: 4px solid var(--fnac-yellow); font-family: "Montserrat", sans-serif; }
.fnac-footer__inner { max-width: 1160px; margin: 0 auto; padding: 64px 24px 40px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
/* Logo footer : variante claire (réglage « Logo pour fonds sombres » du Personnalisateur). */
.fnac-footer__logo {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.fnac-footer__brand a:hover .fnac-footer__logo,
.fnac-footer__logo:hover { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .fnac-footer__logo { transition: none; } .fnac-footer__logo:hover { transform: none; } }
.fnac-footer__name { display: inline-block; margin-bottom: 14px; font-weight: 900; font-size: 26px; color: #fff; }
.fnac-footer__tagline { font-size: 14px; line-height: 1.7; color: #96938A; margin: 0; max-width: 320px; }
.fnac-footer__title { font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.fnac-footer__links, .fnac-footer__reassure { list-style: none; margin: 0; padding: 0; }
.fnac-footer__links li { margin-bottom: 12px; }
.fnac-footer__links a { color: #C9C7BE; text-decoration: none; font-size: 15px; transition: color .25s ease, padding-left .25s ease; }
.fnac-footer__links a:hover { color: var(--fnac-yellow); padding-left: 6px; }
.fnac-footer__reassure li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
/* Icônes en SVG inline (cf. fnac_icon_svg) : `currentColor` -> jaune de la marque. */
.fnac-footer__reassure .fnac-footer__ico { color: var(--fnac-yellow); width: 18px; height: 18px; flex: 0 0 18px; }
.fnac-footer__reassure i { color: var(--fnac-yellow); width: 18px; text-align: center; }
.fnac-footer__btn { display: inline-block; margin-top: 8px; background: var(--fnac-yellow); color: var(--fnac-ink); text-decoration: none; font-weight: 700; font-size: 14.5px; padding: 12px 26px; border-radius: 100px; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; }
.fnac-footer__btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(245,180,0,.3); background: #fff; }
.fnac-footer__bar { border-top: 1px solid rgba(255,255,255,.08); max-width: 1160px; margin: 0 auto; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #7A776F; }
.fnac-footer__pay { color: var(--fnac-yellow); font-weight: 600; }
@media (max-width: 880px) { .fnac-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 22px 32px; } }
@media (max-width: 520px) { .fnac-footer__inner { grid-template-columns: 1fr; text-align: center; } .fnac-footer__tagline { margin-inline: auto; } .fnac-footer__logo { margin-inline: auto; } .fnac-footer__reassure li { justify-content: center; } .fnac-footer__bar { flex-direction: column; text-align: center; } }
body.rtl .fnac-footer__links a:hover { padding-left: 0; padding-right: 6px; }

/* Masque le footer par défaut du thème Hello (on n'en garde qu'un : .fnac-footer) */
#site-footer.site-footer { display: none !important; }

/* ============================ ANTI-PANIER ============================ */
.woocommerce-cart-form, .cart-collaterals, a.added_to_cart, .added_to_cart,
li.woocommerce-mini-cart-item, .site-header-cart, .widget_shopping_cart { display: none !important; }

/* ============================ FONDS DISTINCTS PAR SECTION ============================ */
/* Chaque section a un fond (dégradé + motif) différent — lisibilité conservée */
.elementor-element-hero001 {
  background-image: url("assets/bg-mix.svg"), linear-gradient(160deg,#FFFFFF 0%,#FFF6E0 100%) !important;
  background-repeat: repeat, no-repeat !important;
  background-size: 240px, cover !important;
  background-position: top left, center !important;
}
.elementor-element-serv0001 {
  background-image: url("assets/bg-phones.svg"), linear-gradient(160deg,#FBFAF6 0%,#EFE8D3 100%) !important;
  background-repeat: repeat, no-repeat !important;
  background-size: 240px, cover !important;
  background-position: top left, center !important;
}
/* steps001 : fond image « réparation » traité plus haut (§ ÉTAPES) — pas de fond clair ici. */
.elementor-element-reass001 {
  background-image: url("assets/bg-mix.svg"), linear-gradient(205deg,#FFFFFF 0%,#FBEFC8 100%) !important;
  background-repeat: repeat, no-repeat !important;
  background-size: 240px, cover !important;
  background-position: top left, center !important;
}
/* cta00001 : fond image moderne traité plus haut (§ CTA FINAL) — pas de fond jaune ici. */

/* ============================ MOBILE ============================ */
@media (max-width: 767px) {
  #site-header .site-description { display: none; }
  /* Header compact : sur mobile chaque pixel vertical compte avant le héro.
     ⚠ Hello pose `padding-block: 1rem` sur #site-header LUI-MÊME (pas sur
     .header-inner) : c'est là qu'il faut agir, sinon la hauteur ne bouge pas. */
  #site-header.site-header { padding-block-start: 6px; padding-block-end: 6px; }
  #site-header.site-header.is-scrolled { padding-block-start: 3px; padding-block-end: 3px; }
  #site-header.site-header .header-inner { padding-top: 4px; padding-bottom: 4px; }
  #site-header.site-header.is-scrolled .header-inner { padding-top: 2px; padding-bottom: 2px; }
  /* Le logo et le burger suffisent à donner sa hauteur au header. */
  #site-header .site-branding { gap: 0; }
  /* Logo large : on borne aussi la largeur pour laisser respirer le burger. */
  #site-header .site-logo img.custom-logo { height: 34px; max-width: 180px; }
  #site-header.is-scrolled .site-logo img.custom-logo { height: 30px; }
  .woocommerce-products-header__title.page-title { font-size: 32px; }

  /* Sections plus compactes ; le héro dégage la barre fixe */
  .elementor-element-stats001, .elementor-element-serv0001, .elementor-element-steps001,
  .elementor-element-reass001, .elementor-element-cta00001 {
    padding-top: 54px !important; padding-bottom: 54px !important;
  }
  .elementor-element-hero001 { padding-top: 96px !important; padding-bottom: 48px !important; }

  /* Héro : visuel centré sous le texte ; on masque l'anneau (évite le débordement) */
  .fnac-hero-visual { text-align: center; display: block; }
  .fnac-hero-visual img { max-width: 340px; margin: 18px auto 0; }
  .fnac-hero-visual::after { display: none; }
  .fnac-hero-visual::before { inset: -6% -6% -9% -6%; }

  /* Boutons pleine largeur = meilleure prise au doigt */
  .elementor-element-herobtn1 .elementor-button,
  .elementor-element-herobtn2 .elementor-button,
  .elementor-element-ctab .elementor-button {
    display: block; width: 100%; text-align: center;
  }
  .elementor-element-herobtn2 .elementor-button { margin-top: 12px; }

  /* Compteurs en grille 2×2 (au lieu de 4 empilés) */
  .elementor-element-statsrow > .elementor-container { flex-wrap: wrap; }
  .elementor-element-statsrow > .elementor-container > .elementor-column { width: 50%; }
  .elementor-element-stats001 .elementor-counter-number-wrapper { font-size: 38px; }
  .elementor-element-stats001 .elementor-counter-title { font-size: 13px; }
  .elementor-element-stats001 .elementor-counter { margin-bottom: 24px; }

  /* Cartes « univers » : un peu plus d'air entre elles */
  .elementor-element-servrow .elementor-column + .elementor-column { margin-top: 16px; }

  /* Titres de section : évite les débordements */
  .elementor-widget-heading .elementor-heading-title { word-break: break-word; }

  /* Motifs de fond un peu plus petits sur mobile (sections à motif clair uniquement) */
  .elementor-element-hero001, .elementor-element-serv0001,
  .elementor-element-reass001 { background-size: 170px, cover !important; }

  /* Transition de page un peu plus rapide sur mobile */
  .fnac-page::after { transition-duration: .6s; }
}
