/* ==================================================================
   SmartPokerPro — refonte graphique (16/09/2026)
   Noir, blanc, gris carte, rouge Muerte. Big Shoulders Display en titre,
   Barlow en texte, Barlow Condensed en navigation et boutons.
   ================================================================== */

:root {
  --spp-noir: #000;
  --spp-encre: #141414;
  --spp-blanc: #fff;
  --spp-gris: #f2f2f2;
  --spp-gris-2: #e6e6e6;
  --spp-ligne: #dcdcdc;
  --spp-muet: #666;
  --spp-rouge: #bb2649;
  --spp-rouge-2: #9a1c3b;
  --spp-display: "Big Shoulders Display", "Big Shoulders Secours", "Arial Narrow", sans-serif;
  --spp-texte: Barlow, "Barlow Secours", Arial, sans-serif;
  --spp-condense: "Barlow Condensed", "Big Shoulders Secours", "Arial Narrow", sans-serif;
  --spp-largeur: 1280px;
  --spp-gouttiere: clamp(16px, 3vw, 40px);
  --spp-rayon: 4px;

  /* Kadence : mêmes variables, nouvelles valeurs. */
  --global-palette1: #141414;
  --global-palette2: #ffffff;
  --global-palette3: #141414;
  --global-palette4: #1e1e1e;
  --global-palette5: #bb2649;
  --global-palette6: #f2f2f2;
  --global-palette7: #bb2649;
  --global-palette8: #e6e6e6;
  --global-palette9: #ffffff;
  --global-palette-highlight: #bb2649;
  --global-palette-highlight-alt: #9a1c3b;
  --global-heading-font-family: var(--spp-display);
  --global-body-font-family: var(--spp-texte);
  --global-primary-nav-font-family: var(--spp-condense);
  --global-content-width: 1280px;
}

/* ------------------------------------------------------------------
   Base
   ------------------------------------------------------------------ */
.spp-refonte { font-family: var(--spp-texte); font-weight: 400; font-size: 17px; line-height: 1.6; color: var(--spp-encre); background: var(--spp-blanc); -webkit-font-smoothing: antialiased; }
.spp-refonte h1, .spp-refonte h2, .spp-refonte h3, .spp-refonte h4, .spp-refonte h5, .spp-refonte h6 { font-family: var(--spp-display); font-weight: 800; line-height: .95; letter-spacing: .005em; text-transform: uppercase; color: var(--spp-encre); margin: 0 0 .5em; }
.spp-refonte h1 { font-size: clamp(44px, 6vw, 84px); font-weight: 900; }
.spp-refonte h2 { font-size: clamp(32px, 4vw, 52px); }
.spp-refonte h3 { font-size: clamp(24px, 2.6vw, 32px); }
.spp-refonte h4 { font-size: 22px; }
.spp-refonte p { margin: 0 0 1.2em; }
.spp-refonte a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .15em; }
.spp-refonte .entry-content a:not(.button):not(.spp-btn) { color: var(--spp-rouge); }
.spp-refonte :focus-visible { outline: 2px solid var(--spp-rouge); outline-offset: 3px; }
.spp-refonte img { height: auto; }
.spp-refonte .site-container, .spp-refonte .content-container { max-width: var(--spp-largeur); }
.spp-refonte #wrapper { background: var(--spp-blanc); }
.spp-refonte main.wrap, .spp-refonte .content-bg, .spp-refonte .site-main { background: transparent; }

/* Boutons : plein noir par défaut, rouge pour l'appel principal du héros, contour pour le secondaire. */
.spp-refonte .button, .spp-refonte button.button, .spp-refonte .wp-block-button__link, .spp-refonte input[type=submit], .spp-refonte .kb-button, .spp-refonte .wc-block-components-button, .spp-refonte .spp-btn {
  font-family: var(--spp-condense); font-weight: 700; font-size: 17px; letter-spacing: .06em; text-transform: uppercase; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: 50px; padding: 0 26px;
  background: var(--spp-encre); color: var(--spp-blanc); border: 1.5px solid var(--spp-encre); border-radius: var(--spp-rayon); text-decoration: none; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.spp-refonte .button:hover, .spp-refonte button.button:hover, .spp-refonte .wp-block-button__link:hover, .spp-refonte input[type=submit]:hover, .spp-refonte .spp-btn:hover { background: var(--spp-rouge); border-color: var(--spp-rouge); color: var(--spp-blanc); }
.spp-refonte .spp-btn--rouge { background: var(--spp-rouge); border-color: var(--spp-rouge); }
.spp-refonte .spp-btn--rouge:hover { background: var(--spp-blanc); border-color: var(--spp-blanc); color: var(--spp-encre); }
.spp-refonte .spp-btn--contour { background: transparent; border-color: rgba(255,255,255,.7); color: var(--spp-blanc); }
.spp-refonte .spp-btn--contour:hover { background: var(--spp-blanc); border-color: var(--spp-blanc); color: var(--spp-encre); }
.spp-refonte .spp-btn--blanc { background: var(--spp-blanc); border-color: var(--spp-blanc); color: var(--spp-encre); }
.spp-refonte .spp-btn--noir { background: var(--spp-encre); border-color: var(--spp-encre); color: var(--spp-blanc); }
.spp-refonte .spp-lien { font-family: var(--spp-condense); font-weight: 600; font-size: 17px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; border-bottom: 2px solid var(--spp-encre); padding-bottom: 2px; white-space: nowrap; }
.spp-refonte .spp-lien:hover { color: var(--spp-rouge); border-color: var(--spp-rouge); }
.spp-refonte .spp-lien--clair { color: var(--spp-blanc); border-color: var(--spp-blanc); }
.spp-refonte .spp-lien--clair:hover { color: var(--spp-rouge); border-color: var(--spp-rouge); }
.spp-ico { flex: none; width: 24px; height: 24px; }

/* ------------------------------------------------------------------
   Bandeau + en-tête
   ------------------------------------------------------------------ */
.spp-bandeau { background: var(--spp-noir); color: var(--spp-blanc); font-size: 13px; font-weight: 500; letter-spacing: .02em; height: 36px; }
.spp-bandeau__in { max-width: var(--spp-largeur); margin: 0 auto; padding: 0 var(--spp-gouttiere); height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.spp-bandeau p { margin: 0; display: flex; align-items: center; gap: 8px; }
.spp-bandeau__g .spp-ico { width: 18px; height: 18px; }
.spp-bandeau__c { justify-content: center; gap: 10px; color: rgba(255,255,255,.55); }
.spp-bandeau__c .spp-ico { width: 13px; height: 13px; }
.spp-bandeau__c .spp-ico-coeur, .spp-bandeau__c .spp-ico-carreau { color: var(--spp-rouge); }
.spp-bandeau__d { justify-content: flex-end; gap: 22px; }
.spp-bandeau a { color: var(--spp-blanc); text-decoration: none; }
.spp-bandeau a:hover { text-decoration: underline; }

.spp-refonte #masthead { position: relative; z-index: 60; }
.spp-refonte .site-header-wrap, .spp-refonte .site-main-header-wrap, .spp-refonte .site-header-inner-wrap { background: var(--spp-blanc); }
.spp-refonte .site-main-header-wrap { border-bottom: 1px solid var(--spp-ligne); transition: box-shadow .2s; }
.spp-refonte #masthead.spp-defile .site-main-header-wrap { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.spp-refonte .site-main-header-inner-wrap { min-height: 76px; }
.spp-refonte .site-branding img.custom-logo { max-height: 42px; width: auto; }
.spp-refonte .main-navigation ul.menu > li > a { font-family: var(--spp-condense); font-weight: 600; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; color: var(--spp-encre); padding: 0 14px; position: relative; }
.spp-refonte .main-navigation ul.menu > li > a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--spp-rouge); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.spp-refonte .main-navigation ul.menu > li:hover > a::after, .spp-refonte .main-navigation ul.menu > li.current-menu-item > a::after, .spp-refonte .main-navigation ul.menu > li.current-product-ancestor > a::after, .spp-refonte .main-navigation ul.menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }
.spp-refonte .main-navigation ul.menu > li > a:hover { color: var(--spp-encre); }
.spp-refonte .main-navigation .sub-menu { background: var(--spp-blanc); border: 1px solid var(--spp-ligne); border-radius: var(--spp-rayon); box-shadow: 0 16px 40px rgba(0,0,0,.08); padding: 8px 0; min-width: 240px; }
.spp-refonte .main-navigation .sub-menu a { font-family: var(--spp-texte); font-size: 15px; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--spp-encre); padding: 10px 18px; }
.spp-refonte .main-navigation .sub-menu a:hover { color: var(--spp-rouge); background: var(--spp-gris); }
.spp-refonte .header-cart-wrap, .spp-refonte .header-account-wrap, .spp-refonte .search-toggle-open-container { color: var(--spp-encre); }
.spp-refonte .header-cart-button, .spp-refonte .header-account-button, .spp-refonte .search-toggle-open { color: var(--spp-encre) !important; padding: 8px; }
.spp-refonte .header-cart-button:hover, .spp-refonte .header-account-button:hover, .spp-refonte .search-toggle-open:hover { color: var(--spp-rouge) !important; }
.spp-refonte .header-cart-total { background: var(--spp-rouge); color: var(--spp-blanc); font-family: var(--spp-condense); font-weight: 700; font-size: 11px; min-width: 18px; height: 18px; border-radius: 9px; padding: 0 5px; line-height: 18px; }
.spp-refonte .header-cart-is-empty-true .header-cart-total { display: none; }
.spp-refonte .site-header-item .search-toggle-open .search-toggle-icon { line-height: 0; }
.spp-refonte #mobile-header .site-main-header-inner-wrap { min-height: 64px; }
.spp-refonte .menu-toggle-open { color: var(--spp-encre); border: 0; background: transparent; }
.spp-refonte .popup-drawer .drawer-inner { background: var(--spp-blanc); color: var(--spp-encre); }
.spp-refonte .mobile-navigation ul.menu > li > a, .spp-refonte .mobile-navigation ul.menu .sub-menu a { font-family: var(--spp-condense); font-weight: 600; font-size: 20px; letter-spacing: .05em; text-transform: uppercase; color: var(--spp-encre); }
.spp-refonte .mobile-navigation ul.menu .sub-menu a { font-size: 17px; font-weight: 500; text-transform: none; letter-spacing: 0; font-family: var(--spp-texte); }
.spp-refonte .drawer-nav-drop-wrap button { color: var(--spp-encre); }
.spp-refonte .search-modal .search-form input.search-field { font-family: var(--spp-display); font-size: clamp(32px, 6vw, 72px); text-transform: uppercase; }

/* ------------------------------------------------------------------
   Accueil
   ------------------------------------------------------------------ */
.spp-accueil { --pad: var(--spp-gouttiere); }
.spp-section { max-width: var(--spp-largeur); margin: 0 auto; padding: clamp(40px, 6vw, 80px) var(--spp-gouttiere) 0; }
.spp-section__tete { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: clamp(20px, 3vw, 32px); }
.spp-section__tete h2 { margin: 0; }

.spp-hero { position: relative; background: var(--spp-noir); color: var(--spp-blanc); min-height: clamp(520px, 72vh, 760px); display: grid; align-items: center; overflow: hidden; }
.spp-hero__media { position: absolute; inset: 0; }
.spp-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; display: block; }
.spp-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.75) 36%, rgba(0,0,0,.25) 62%, rgba(0,0,0,.05) 100%), linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 40%); }
.spp-hero__txt { position: relative; max-width: var(--spp-largeur); width: 100%; margin: 0 auto; padding: clamp(56px, 9vw, 110px) var(--spp-gouttiere); }
.spp-hero__kicker { font-family: var(--spp-condense); font-weight: 600; font-size: 16px; letter-spacing: .14em; text-transform: uppercase; color: var(--spp-rouge); margin: 0 0 18px; }
.spp-refonte .spp-hero__titre { font-size: clamp(56px, 8.6vw, 132px); line-height: .88; color: var(--spp-blanc); margin: 0 0 22px; max-width: 12ch; }
.spp-refonte .spp-hero__titre em { font-style: normal; color: var(--spp-rouge); }
.spp-hero__sous { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; max-width: 46ch; color: rgba(255,255,255,.86); margin: 0 0 30px; }
.spp-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.spp-refonte .spp-hero .spp-btn { min-height: 54px; padding: 0 30px; font-size: 18px; }

.spp-reassurance { background: var(--spp-gris); }
.spp-reassurance ul { list-style: none; margin: 0 auto; padding: 0 var(--spp-gouttiere); max-width: var(--spp-largeur); display: grid; grid-template-columns: repeat(4, 1fr); }
.spp-reassurance li { display: flex; align-items: center; gap: 14px; padding: 22px 20px; border-left: 1px solid var(--spp-ligne); }
.spp-reassurance li:first-child { border-left: 0; padding-left: 0; }
.spp-reassurance .spp-ico { width: 30px; height: 30px; color: var(--spp-encre); }
.spp-reassurance strong { display: block; font-family: var(--spp-condense); font-weight: 700; font-size: 17px; letter-spacing: .05em; text-transform: uppercase; line-height: 1.2; }
.spp-reassurance small { display: block; font-size: 14px; color: var(--spp-muet); }

.spp-rayons__grille { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.spp-rayons__grille a { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--spp-rayon); background: var(--spp-noir); text-decoration: none; color: var(--spp-blanc); }
.spp-rayons__grille img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .88; transition: transform .5s ease, opacity .3s; }
.spp-rayons__grille a:hover img { transform: scale(1.04); opacity: 1; }
.spp-rayons__grille a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 55%, transparent 100%); }
.spp-rayons__nom { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 18px; font-family: var(--spp-display); font-weight: 800; font-size: clamp(24px, 2.4vw, 34px); line-height: .95; text-transform: uppercase; }
.spp-rayons__nom::after { content: ""; display: block; width: 36px; height: 3px; background: var(--spp-rouge); margin-top: 10px; transition: width .25s; }
.spp-rayons__grille a:hover .spp-rayons__nom::after { width: 64px; }

.spp-bannieres { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.spp-banniere { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: var(--spp-rayon); overflow: hidden; text-decoration: none; }
.spp-banniere img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; transition: transform .6s ease; }
.spp-banniere:hover img { transform: scale(1.03); }
.spp-banniere__txt { position: absolute; inset: 0; padding: clamp(22px, 3vw, 40px); display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; gap: 10px; }
.spp-banniere--sombre .spp-banniere__txt { background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.2) 60%, transparent); color: var(--spp-blanc); }
.spp-banniere--clair .spp-banniere__txt { background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.2) 60%, transparent); color: var(--spp-blanc); }
.spp-banniere__kicker { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: var(--spp-rouge); }
.spp-banniere--sombre .spp-banniere__kicker { color: #ff8fa9; }
.spp-banniere__titre { font-family: var(--spp-display); font-weight: 800; font-size: clamp(28px, 3vw, 44px); line-height: .95; text-transform: uppercase; max-width: 16ch; }
.spp-refonte .spp-banniere .spp-btn { margin-top: 6px; }

.spp-manifeste { background: var(--spp-noir); color: var(--spp-blanc); margin-top: clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.spp-manifeste__in { max-width: var(--spp-largeur); margin: 0 auto; padding: clamp(56px, 8vw, 110px) var(--spp-gouttiere); }
.spp-manifeste__kicker { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--spp-rouge); margin-bottom: 16px; }
.spp-manifeste h2 { color: var(--spp-blanc); font-size: clamp(34px, 4.4vw, 64px); max-width: 22ch; margin-bottom: 28px; }
.spp-manifeste__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 980px; color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 26px; }
.spp-manifeste__cols p { margin: 0; }

.spp-journal__grille { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spp-journal__grille a { display: block; text-decoration: none; color: var(--spp-encre); }
.spp-journal__grille img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--spp-rayon); display: block; background: var(--spp-gris); margin-bottom: 14px; }
.spp-journal__cat { display: block; font-family: var(--spp-condense); font-weight: 600; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--spp-rouge); margin-bottom: 6px; }
.spp-journal__titre { display: block; font-family: var(--spp-display); font-weight: 800; font-size: 26px; line-height: 1; text-transform: uppercase; margin-bottom: 8px; }
.spp-journal__grille a:hover .spp-journal__titre { color: var(--spp-rouge); }
.spp-journal__grille time { font-size: 14px; color: var(--spp-muet); }

.spp-affiliation { max-width: var(--spp-largeur); margin: clamp(40px, 6vw, 80px) auto; padding: 0 var(--spp-gouttiere); }
.spp-affiliation__in { background: var(--spp-gris); border-radius: var(--spp-rayon); padding: clamp(28px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.spp-affiliation__kicker { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--spp-rouge); margin-bottom: 8px; }
.spp-affiliation h2 { font-size: clamp(26px, 3vw, 40px); max-width: 26ch; margin: 0; }

/* ------------------------------------------------------------------
   Boucle produit (boutique, rayons, accueil, similaires)
   ------------------------------------------------------------------ */
.spp-refonte ul.products.grid-cols, .spp-refonte ul.products { display: grid !important; gap: 32px 20px !important; margin: 0; padding: 0; list-style: none; }
.spp-refonte ul.products.grid-lg-col-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.spp-refonte ul.products.grid-lg-col-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.spp-refonte ul.products li.product, .spp-refonte ul.products li.entry { margin: 0 !important; padding: 0 !important; width: auto !important; box-shadow: none !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; display: flex; flex-direction: column; }
.spp-refonte ul.products li.product .product-details { padding: 12px 0 0 !important; background: transparent !important; text-align: left; flex: 1; display: flex; flex-direction: column; }
.spp-refonte ul.products li.product a.woocommerce-loop-image-link { display: block; position: relative; overflow: hidden; border-radius: var(--spp-rayon); background: var(--spp-gris); aspect-ratio: 1 / 1; }
.spp-refonte ul.products li.product a.woocommerce-loop-image-link img { width: 100%; height: 100%; object-fit: cover; display: block; mix-blend-mode: multiply; transition: transform .5s ease, opacity .3s; }
.spp-refonte ul.products li.product a.woocommerce-loop-image-link .secondary-product-image { position: absolute; inset: 0; opacity: 0; }
.spp-refonte ul.products li.product:hover a.woocommerce-loop-image-link .secondary-product-image { opacity: 1; }
.spp-refonte ul.products li.product:hover a.woocommerce-loop-image-link img { transform: scale(1.03); }
.spp-refonte ul.products li.product .woocommerce-loop-product__title, .spp-refonte ul.products li.product h2 { font-family: var(--spp-texte) !important; font-weight: 600 !important; font-size: 15px !important; line-height: 1.35; letter-spacing: 0 !important; text-transform: none !important; text-align: left !important; margin: 0 0 4px !important; color: var(--spp-encre); }
.spp-refonte ul.products li.product .woocommerce-loop-product__title a { text-decoration: none; color: inherit; }
.spp-refonte ul.products li.product:hover .woocommerce-loop-product__title a { color: var(--spp-rouge); }
.spp-refonte ul.products li.product .price { font-family: var(--spp-texte); font-weight: 500; font-size: 15px; color: var(--spp-encre); margin: 0 0 8px; display: block; }
.spp-refonte ul.products li.product .price del { color: var(--spp-muet); font-weight: 400; }
.spp-refonte ul.products li.product .price ins { text-decoration: none; color: var(--spp-rouge); }
.spp-pastilles { display: flex; gap: 6px; margin-top: auto; cursor: pointer; }
.spp-pastille { width: 14px; height: 14px; border-radius: 50%; background: var(--c, #999); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.spp-refonte ul.products li.product .product-action-wrap { position: absolute; left: 12px; right: 12px; bottom: 12px; margin: 0 !important; padding: 0 !important; opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s; pointer-events: none; }
.spp-refonte ul.products li.product { position: relative; }
.spp-refonte ul.products li.product .product-action-wrap a.button { width: 100%; min-height: 44px; font-size: 15px; background: var(--spp-blanc); color: var(--spp-encre); border-color: var(--spp-blanc); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.spp-refonte ul.products li.product .product-action-wrap a.button:hover { background: var(--spp-encre); color: var(--spp-blanc); border-color: var(--spp-encre); }
@media (hover: hover) { .spp-refonte ul.products li.product:hover .product-action-wrap, .spp-refonte ul.products li.product:focus-within .product-action-wrap { opacity: 1; transform: none; pointer-events: auto; } .spp-refonte ul.products li.product .product-action-wrap { top: auto; height: auto; } }
.spp-refonte ul.products li.product .product-action-wrap .added_to_cart { display: none; }
.spp-refonte ul.products li.product .woocommerce-product-details__short-description { display: none; }
.spp-refonte ul.products li.product .onsale, .spp-refonte span.onsale { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--spp-rouge); color: var(--spp-blanc); font-family: var(--spp-condense); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 8px; border-radius: 3px; line-height: 1.2; min-height: 0; min-width: 0; margin: 0; }
.spp-refonte .product-action-wrap { position: absolute; }

/* Grille de l'archive : filtres et tri au-dessus */
.spp-refonte .woocommerce-products-header { display: none; }
.spp-refonte .kadence-shop-top-row, .spp-refonte .woocommerce-result-count, .spp-refonte .woocommerce-ordering { font-size: 14px; color: var(--spp-muet); }
.spp-refonte .woocommerce-ordering select { font-family: var(--spp-texte); font-size: 14px; border: 1px solid var(--spp-ligne); border-radius: var(--spp-rayon); padding: 8px 32px 8px 12px; background: var(--spp-blanc); }
.spp-refonte .woocommerce-pagination ul.page-numbers { display: flex; gap: 6px; justify-content: center; margin: 48px 0 0; padding: 0; list-style: none; border: 0; }
.spp-refonte .woocommerce-pagination .page-numbers li { border: 0; }
.spp-refonte .woocommerce-pagination a.page-numbers, .spp-refonte .woocommerce-pagination span.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--spp-ligne); border-radius: var(--spp-rayon); font-family: var(--spp-condense); font-weight: 600; font-size: 16px; text-decoration: none; color: var(--spp-encre); background: var(--spp-blanc); }
.spp-refonte .woocommerce-pagination span.page-numbers.current { background: var(--spp-encre); color: var(--spp-blanc); border-color: var(--spp-encre); }
.spp-refonte .woocommerce-pagination a.page-numbers:hover { border-color: var(--spp-encre); }

/* En-tête des rayons */
.spp-hero-rayon { display: grid; grid-template-columns: 1fr 1fr; background: var(--spp-noir); color: var(--spp-blanc); min-height: 420px; }
.spp-hero-rayon__txt { padding: clamp(32px, 5vw, 72px) var(--spp-gouttiere) clamp(32px, 5vw, 72px) max(var(--spp-gouttiere), calc((100vw - var(--spp-largeur)) / 2)); display: flex; flex-direction: column; justify-content: center; }
.spp-hero-rayon h1 { color: var(--spp-blanc); font-size: clamp(48px, 6.4vw, 96px); margin: 10px 0 18px; }
.spp-hero-rayon__desc { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 0 14px; }
.spp-hero-rayon__nb { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: var(--spp-rouge); margin: 0; }
.spp-hero-rayon__img { position: relative; min-height: 320px; }
.spp-hero-rayon__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.spp-hero-rayon__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #000 0%, transparent 22%); }
.spp-ariane, .spp-ariane .rank-math-breadcrumb, .spp-ariane .rank-math-breadcrumb p, .spp-ariane nav { font-size: 13px; color: var(--spp-muet); margin: 0; }
.spp-ariane a { text-decoration: none; color: inherit; }
.spp-ariane a:hover { color: var(--spp-rouge); text-decoration: underline; }
.spp-ariane .separator { margin: 0 6px; opacity: .6; }
.spp-hero-rayon .spp-ariane, .spp-hero-rayon .spp-ariane .rank-math-breadcrumb p { color: rgba(255,255,255,.6); }
.spp-refonte.tax-product_cat .content-area, .spp-refonte.post-type-archive-product .content-area { padding-top: clamp(28px, 4vw, 48px); }

/* Blocs SEO Kadence sous les rayons : on les calme. */
.spp-refonte.tax-product_cat .kb-row-layout-wrap.kt-row-has-bg { background-color: var(--spp-gris) !important; }
.spp-refonte.tax-product_cat .kb-row-layout-wrap .kt-row-layout-overlay { display: none; }
.spp-refonte.tax-product_cat .kb-row-layout-wrap.kt-row-has-bg h2, .spp-refonte.tax-product_cat .kb-row-layout-wrap.kt-row-has-bg p, .spp-refonte.tax-product_cat .kb-row-layout-wrap.kt-row-has-bg li { color: var(--spp-encre) !important; }
.spp-refonte.tax-product_cat .kb-row-layout-wrap.kt-jarallax { background-image: none !important; }
.spp-refonte .kb-row-layout-wrap h2 { font-size: clamp(26px, 3vw, 40px); }
.spp-refonte .kt-accordion-header-wrap .kt-blocks-accordion-header { font-family: var(--spp-texte); font-weight: 600; font-size: 17px; border-radius: var(--spp-rayon); }
.spp-refonte .kb-show-more-container .kb-show-more-buttons .kb-button { min-height: 44px; }

/* ------------------------------------------------------------------
   Fiche produit
   ------------------------------------------------------------------ */
.spp-refonte.single-product .entry-hero.product-hero-section { display: none; }
.spp-refonte.single-product .content-area { padding-top: 22px; }
.spp-refonte.single-product .spp-ariane { max-width: var(--spp-largeur); margin: 0 auto 22px; }
.spp-refonte.single-product div.product { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.spp-refonte.single-product div.product > * { grid-column: 1 / -1; }
.spp-refonte.single-product div.product > .ksk-gallery, .spp-refonte.single-product div.product > .woocommerce-product-gallery { grid-column: 1; width: 100% !important; float: none !important; margin: 0 !important; }
.spp-refonte.single-product div.product > .summary { grid-column: 2; width: 100% !important; float: none !important; margin: 0 !important; position: sticky; top: 96px; }
.spp-refonte.single-product .ksk-gallery .product_image, .spp-refonte.single-product .woocommerce-product-gallery__wrapper { background: var(--spp-gris); border-radius: var(--spp-rayon); overflow: hidden; }
.spp-refonte.single-product .ksk-gallery .product_image img { width: 100%; }
.spp-refonte.single-product .ksk-gallery img, .spp-refonte.single-product .woocommerce-product-gallery__image img { mix-blend-mode: multiply; }
.spp-refonte .kadence-product-gallery-thumbnails { margin-top: 12px; }
.spp-refonte .kt-woo-gallery-thumbnail { border-radius: var(--spp-rayon); overflow: hidden; background: var(--spp-gris); border: 2px solid transparent; transition: border-color .2s; }
.spp-refonte .kt-woo-gallery-thumbnail.is-active, .spp-refonte .kt-woo-gallery-thumbnail:hover { border-color: var(--spp-encre); }
.spp-refonte .kt-gallery-fullscreen-btn { background: var(--spp-blanc); border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.spp-refonte.single-product .summary .single-product-category { margin: 0 0 10px; }
.spp-refonte.single-product .summary .single-product-category a { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: var(--spp-rouge); text-decoration: none; }
.spp-refonte.single-product .summary h1.product_title { font-size: clamp(38px, 4.4vw, 64px); line-height: .92; margin: 0 0 14px; }
.spp-refonte.single-product .summary p.price { font-family: var(--spp-texte); font-weight: 600; font-size: 26px; color: var(--spp-encre); margin: 0 0 18px; }
.spp-refonte.single-product .summary p.price del { color: var(--spp-muet); font-weight: 400; font-size: 20px; }
.spp-refonte.single-product .summary p.price ins { text-decoration: none; color: var(--spp-rouge); }
.spp-refonte.single-product .summary .woocommerce-product-details__short-description { color: #333; font-size: 16px; line-height: 1.6; padding-bottom: 20px; border-bottom: 1px solid var(--spp-ligne); margin-bottom: 22px; }
.spp-refonte.single-product .summary .woocommerce-product-details__short-description p:last-child { margin: 0; }
.spp-refonte table.variations { margin: 0 0 8px; border: 0; }
.spp-refonte table.variations th, .spp-refonte table.variations td { border: 0; padding: 0 0 16px; display: block; background: transparent; }
.spp-refonte table.variations tr { display: block; }
.spp-refonte table.variations th.label { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; padding-bottom: 8px; }
.spp-refonte table.variations th.label label { font-weight: inherit; }
.spp-refonte table.variations td.value { position: relative; }
.spp-refonte .reset_variations { font-size: 13px; color: var(--spp-muet); margin-left: 10px; }
.spp-refonte .variable-items-wrapper { gap: 10px !important; margin: 0 !important; }
.spp-refonte .variable-items-wrapper .variable-item { margin: 0 !important; box-shadow: none !important; border: 1.5px solid var(--spp-ligne) !important; border-radius: var(--spp-rayon) !important; background: var(--spp-blanc) !important; transition: border-color .15s; }
.spp-refonte .variable-items-wrapper .variable-item:hover { border-color: var(--spp-encre) !important; }
.spp-refonte .variable-items-wrapper .variable-item.selected { border-color: var(--spp-encre) !important; box-shadow: 0 0 0 1px var(--spp-encre) !important; }
.spp-refonte .variable-items-wrapper .button-variable-item { min-width: 56px !important; height: 46px !important; padding: 0 14px !important; }
.spp-refonte .variable-items-wrapper .button-variable-item .variable-item-span { font-family: var(--spp-condense); font-weight: 600; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }
.spp-refonte .variable-items-wrapper .button-variable-item.selected { background: var(--spp-encre) !important; color: var(--spp-blanc) !important; }
.spp-refonte .variable-items-wrapper .color-variable-item { width: 40px !important; height: 40px !important; border-radius: 50% !important; padding: 3px !important; }
.spp-refonte .variable-items-wrapper .color-variable-item .variable-item-span-color { border-radius: 50%; }
.spp-refonte .variable-items-wrapper .color-variable-item.selected { border-color: var(--spp-encre) !important; }
.spp-refonte .variable-items-wrapper .variable-item.disabled { opacity: .35; }
.spp-refonte .single_variation_wrap .woocommerce-variation-price { display: none; }
.spp-refonte .woocommerce-variation-add-to-cart, .spp-refonte form.cart:not(.variations_form) { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.spp-refonte .woocommerce-variation-add-to-cart .quantity, .spp-refonte form.cart .quantity { display: inline-flex; align-items: stretch; border: 1.5px solid var(--spp-ligne); border-radius: var(--spp-rayon); margin: 0 !important; height: 54px; flex: none; }
.spp-refonte .quantity .qty { border: 0 !important; width: 48px !important; text-align: center; font-family: var(--spp-texte); font-weight: 600; font-size: 16px; background: transparent; height: auto !important; -moz-appearance: textfield; }
.spp-refonte .quantity .qty::-webkit-inner-spin-button, .spp-refonte .quantity .qty::-webkit-outer-spin-button { -webkit-appearance: none; }
.spp-refonte .quantity .kadence-qty-button, .spp-refonte .quantity .quantity-button, .spp-refonte .quantity .minus, .spp-refonte .quantity .plus { width: 40px; border: 0 !important; background: transparent !important; color: var(--spp-encre) !important; font-size: 18px; cursor: pointer; }
.spp-refonte.single-product button.single_add_to_cart_button { flex: 1 1 220px; min-height: 54px; font-size: 18px; }
.spp-refonte.single-product button.single_add_to_cart_button.disabled, .spp-refonte.single-product button.single_add_to_cart_button:disabled { opacity: .35; }
.spp-reassurance-fiche { list-style: none; margin: 24px 0 0; padding: 18px 0 0; border-top: 1px solid var(--spp-ligne); display: grid; gap: 12px; }
.spp-reassurance-fiche li { display: flex; gap: 12px; align-items: flex-start; }
.spp-reassurance-fiche .spp-ico { width: 22px; height: 22px; color: var(--spp-encre); margin-top: 1px; }
.spp-reassurance-fiche strong { display: block; font-weight: 600; font-size: 15px; line-height: 1.3; }
.spp-reassurance-fiche small { display: block; font-size: 13px; color: var(--spp-muet); }
.spp-refonte.single-product .kadence-single-product-payments, .spp-refonte .single-product-payments { margin: 18px 0 0; padding: 0; }
.spp-refonte.single-product .kadence-single-product-payments .payments-title, .spp-refonte .single-product-payments h4 { font-family: var(--spp-condense); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--spp-muet); margin: 0 0 6px; }
.spp-refonte.single-product .kadence-single-product-payments ul, .spp-refonte ul.single-product-payments { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; border: 0; }
.spp-refonte.single-product .kadence-single-product-payments ul li, .spp-refonte ul.single-product-payments li { margin: 0; padding: 0; border: 1px solid var(--spp-ligne); border-radius: 3px; background: var(--spp-blanc); }
.spp-refonte .woocommerce-tabs { margin-top: clamp(40px, 6vw, 72px); }
.spp-refonte .woocommerce-tabs ul.tabs { display: flex; gap: 32px; margin: 0 0 28px; padding: 0; border-bottom: 1px solid var(--spp-ligne); overflow-x: auto; }
.spp-refonte .woocommerce-tabs ul.tabs::before, .spp-refonte .woocommerce-tabs ul.tabs::after { display: none; }
.spp-refonte .woocommerce-tabs ul.tabs li { margin: 0; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.spp-refonte .woocommerce-tabs ul.tabs li a { display: block; padding: 0 0 12px; font-family: var(--spp-condense); font-weight: 600; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; color: var(--spp-muet); border-bottom: 3px solid transparent; margin-bottom: -1px; text-decoration: none; white-space: nowrap; }
.spp-refonte .woocommerce-tabs ul.tabs li.active a { color: var(--spp-encre); border-color: var(--spp-encre); }
.spp-refonte .woocommerce-tabs .woocommerce-Tabs-panel { max-width: 760px; font-size: 16px; color: #333; }
.spp-refonte .woocommerce-tabs .woocommerce-Tabs-panel h2, .spp-refonte .woocommerce-tabs .woocommerce-Tabs-panel h3 { font-size: 26px; margin: 1.2em 0 .4em; }
.spp-refonte .woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child { display: none; }
.spp-refonte .woocommerce-tabs .woocommerce-Tabs-panel ul { padding-left: 1.2em; }
.spp-refonte section.related, .spp-refonte section.upsells { margin-top: clamp(48px, 7vw, 88px); }
.spp-refonte section.related > h2, .spp-refonte section.upsells > h2 { font-size: clamp(30px, 3.6vw, 48px); margin-bottom: 24px; }
.spp-refonte .kadence-sticky-add-to-cart { background: var(--spp-blanc); border-top: 1px solid var(--spp-ligne); box-shadow: 0 -8px 30px rgba(0,0,0,.06); }
.spp-refonte .kadence-sticky-add-to-cart .kadence-sticky-add-to-cart-title { font-family: var(--spp-display); font-weight: 800; text-transform: uppercase; font-size: 22px; }

/* ------------------------------------------------------------------
   Journal (page Blog, articles, rubriques)
   ------------------------------------------------------------------ */
.spp-refonte .kb-posts.kadence-posts-list { gap: 32px 24px; }
.spp-refonte .kb-posts article.loop-entry, .spp-refonte .content-wrap article.loop-entry { box-shadow: none !important; border: 0; background: transparent !important; border-radius: 0; }
.spp-refonte article.loop-entry .post-thumbnail { border-radius: var(--spp-rayon); overflow: hidden; background: var(--spp-gris); margin-bottom: 14px; }
.spp-refonte article.loop-entry .entry-content-wrap { padding: 0 !important; }
.spp-refonte article.loop-entry .entry-taxonomies { margin-bottom: 6px; }
.spp-refonte article.loop-entry .category-links a, .spp-refonte .entry-taxonomies .category-links a { font-family: var(--spp-condense); font-weight: 600; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--spp-rouge) !important; background: transparent !important; padding: 0 !important; border: 0 !important; text-decoration: none; }
.spp-refonte article.loop-entry .entry-taxonomies .category-link-uncategorized { display: none; }
.spp-refonte article.loop-entry h2.entry-title { font-size: 26px; line-height: 1; margin: 0 0 8px; }
.spp-refonte article.loop-entry h2.entry-title a { text-decoration: none; }
.spp-refonte article.loop-entry h2.entry-title a:hover { color: var(--spp-rouge); }
.spp-refonte article.loop-entry .entry-meta { font-size: 14px; color: var(--spp-muet); }
.spp-refonte article.loop-entry .entry-summary { font-size: 15px; color: #444; }
.spp-refonte article.loop-entry .entry-footer { margin-top: 6px; }
.spp-refonte article.loop-entry .post-more-link { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--spp-encre); }
.spp-refonte.page-id-37546 .kb-row-layout-wrap.kt-row-has-bg { background: var(--spp-blanc) !important; min-height: 0 !important; padding: clamp(32px, 5vw, 64px) 0 8px !important; }
.spp-refonte.page-id-37546 .kb-row-layout-wrap .kt-row-layout-overlay { display: none; }
.spp-refonte.page-id-37546 .kb-row-layout-wrap.kt-row-has-bg h1 { color: var(--spp-encre) !important; text-align: left !important; font-size: clamp(48px, 6.4vw, 96px) !important; }
.spp-refonte.page-id-37546 .kb-row-layout-wrap.kt-row-has-bg p { color: var(--spp-muet) !important; text-align: left !important; }

.spp-refonte.single-post .entry-hero.post-hero-section { background: transparent; padding: 0; }
.spp-refonte.single-post .entry-hero .hero-section-overlay { display: none; }
.spp-refonte.single-post .entry-header.post-title { text-align: left; max-width: 820px; margin: clamp(24px, 4vw, 48px) auto 0; padding: 0 var(--spp-gouttiere); }
.spp-refonte.single-post .entry-header .entry-taxonomies { margin-bottom: 10px; }
.spp-refonte.single-post .entry-header h1.entry-title { font-size: clamp(38px, 5vw, 68px); line-height: .95; color: var(--spp-encre); }
.spp-refonte.single-post .entry-meta { font-size: 14px; color: var(--spp-muet); }
.spp-refonte.single-post .content-wrap, .spp-refonte.single-post .content-container { max-width: 820px; }
.spp-refonte.single-post .post-thumbnail { border-radius: var(--spp-rayon); overflow: hidden; margin-bottom: 28px; }
.spp-refonte.single-post .entry-content { font-size: 18px; line-height: 1.7; color: #222; }
.spp-refonte.single-post .entry-content h2 { font-size: clamp(30px, 3.4vw, 42px); margin: 1.6em 0 .5em; }
.spp-refonte.single-post .entry-content h3 { font-size: 26px; margin: 1.4em 0 .5em; }
.spp-refonte.single-post .entry-content blockquote { border-left: 3px solid var(--spp-rouge); padding-left: 20px; font-style: normal; }
.spp-refonte.single-post .entry-content .wp-block-table table, .spp-refonte .entry-content table { font-size: 15px; }
.spp-refonte.single-post .entry-content th { background: var(--spp-gris); font-family: var(--spp-condense); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.spp-refonte.single-post .primary-sidebar { display: none; }
.spp-refonte.single-post .post-navigation { border-top: 1px solid var(--spp-ligne); margin-top: 40px; padding-top: 20px; }
.spp-refonte .post-navigation .nav-links a { text-decoration: none; }
.spp-refonte .post-navigation .post-navigation-sub small { font-family: var(--spp-condense); text-transform: uppercase; letter-spacing: .08em; color: var(--spp-muet); }
.spp-refonte .content-area .entry-hero { background: transparent; }
.spp-refonte.archive .entry-hero .entry-header, .spp-refonte.archive .entry-header.taxonomy-title, .spp-refonte.search .entry-header { text-align: left; }
.spp-refonte .entry-hero h1 { color: var(--spp-encre); }

/* Pages (contact, à propos, légal) */
.spp-refonte.page .entry-hero .entry-header { text-align: left; }
.spp-refonte.page .content-area { padding-top: 12px; }
.spp-refonte.page:not(.spp-accueil-page) .entry-content { font-size: 17px; }
.spp-refonte .kb-form .kb-field, .spp-refonte input[type=text], .spp-refonte input[type=email], .spp-refonte input[type=tel], .spp-refonte input[type=password], .spp-refonte input[type=search], .spp-refonte textarea, .spp-refonte select { border: 1.5px solid var(--spp-ligne); border-radius: var(--spp-rayon); padding: 12px 14px; font-family: var(--spp-texte); font-size: 16px; background: var(--spp-blanc); color: var(--spp-encre); box-shadow: none; }
.spp-refonte input:focus, .spp-refonte textarea:focus, .spp-refonte select:focus { border-color: var(--spp-encre); outline: none; }

/* ------------------------------------------------------------------
   Panier, commande, compte (classiques et blocs)
   ------------------------------------------------------------------ */
.spp-refonte.woocommerce-cart .content-area, .spp-refonte.woocommerce-checkout .content-area, .spp-refonte.woocommerce-account .content-area { padding-top: 12px; }
.spp-refonte.woocommerce-cart .entry-hero .entry-header, .spp-refonte.woocommerce-checkout .entry-hero .entry-header, .spp-refonte.woocommerce-account .entry-hero .entry-header { text-align: left; }
.spp-refonte table.shop_table { border: 0; border-collapse: collapse; font-size: 15px; }
.spp-refonte table.shop_table th { font-family: var(--spp-condense); font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--spp-muet); border: 0; border-bottom: 1px solid var(--spp-ligne); background: transparent; padding: 12px 10px; }
.spp-refonte table.shop_table td { border: 0; border-bottom: 1px solid var(--spp-ligne); padding: 16px 10px; vertical-align: middle; background: transparent; }
.spp-refonte table.shop_table td.product-thumbnail img { width: 72px; border-radius: var(--spp-rayon); background: var(--spp-gris); }
.spp-refonte table.shop_table td.product-name a { font-weight: 600; text-decoration: none; }
.spp-refonte table.shop_table td.product-remove a.remove { color: var(--spp-muet) !important; background: transparent !important; font-size: 22px; }
.spp-refonte table.shop_table td.product-remove a.remove:hover { color: var(--spp-rouge) !important; }
.spp-refonte .cart_totals, .spp-refonte .cart-collaterals .cart_totals { background: var(--spp-gris); border-radius: var(--spp-rayon); padding: 24px; border: 0; }
.spp-refonte .cart_totals h2 { font-size: 28px; margin-bottom: 14px; }
.spp-refonte .cart_totals table.shop_table th, .spp-refonte .cart_totals table.shop_table td { border-color: rgba(0,0,0,.08); }
.spp-refonte .cart_totals .order-total th, .spp-refonte .cart_totals .order-total td { font-size: 18px; font-weight: 600; color: var(--spp-encre); text-transform: none; letter-spacing: 0; font-family: var(--spp-texte); }
.spp-refonte .wc-proceed-to-checkout a.checkout-button { width: 100%; min-height: 56px; font-size: 18px; margin-top: 12px; }
.spp-refonte .coupon { display: flex; gap: 8px; }
.spp-refonte .coupon input.input-text { min-height: 50px; }
.spp-refonte.woocommerce-cart .cart-form-wrap, .spp-refonte .kadence-cart-form-wrap { margin-top: 12px; }
.spp-refonte.woocommerce-checkout form.checkout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: start; }
.spp-refonte.woocommerce-checkout form.checkout .col2-set { grid-column: 1; width: 100%; }
.spp-refonte.woocommerce-checkout form.checkout .col2-set .col-1, .spp-refonte.woocommerce-checkout form.checkout .col2-set .col-2 { width: 100%; float: none; }
.spp-refonte.woocommerce-checkout form.checkout #order_review_heading, .spp-refonte.woocommerce-checkout form.checkout #order_review { grid-column: 2; }
.spp-refonte.woocommerce-checkout #order_review { background: var(--spp-gris); border-radius: var(--spp-rayon); padding: 24px; position: sticky; top: 96px; }
.spp-refonte.woocommerce-checkout #order_review_heading { font-size: 28px; margin: 0; align-self: end; }
.spp-refonte.woocommerce-checkout h3 { font-size: 28px; }
.spp-refonte.woocommerce-checkout .form-row label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.spp-refonte.woocommerce-checkout .form-row .input-text, .spp-refonte.woocommerce-checkout .select2-container .select2-selection--single { min-height: 50px; }
.spp-refonte #payment { background: transparent; border-radius: 0; }
.spp-refonte #payment ul.payment_methods { border: 0; padding: 0; }
.spp-refonte #payment ul.payment_methods li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.spp-refonte #payment div.payment_box { background: var(--spp-blanc); border-radius: var(--spp-rayon); }
.spp-refonte #payment div.payment_box::before { border-bottom-color: var(--spp-blanc); }
.spp-refonte #payment .place-order button#place_order { width: 100%; min-height: 56px; font-size: 18px; }
.spp-refonte.woocommerce-account .woocommerce-MyAccount-navigation { background: transparent; }
.spp-refonte .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; border: 0; }
.spp-refonte .woocommerce-MyAccount-navigation ul li a { display: block; padding: 10px 14px; border-radius: var(--spp-rayon); text-decoration: none; font-family: var(--spp-condense); font-weight: 600; font-size: 17px; letter-spacing: .05em; text-transform: uppercase; color: var(--spp-encre); }
.spp-refonte .woocommerce-MyAccount-navigation ul li.is-active a, .spp-refonte .woocommerce-MyAccount-navigation ul li a:hover { background: var(--spp-gris); }
.spp-refonte.woocommerce-account .kadence-account-avatar-wrap { display: none; }
.spp-refonte.woocommerce-account .kadence-account-login, .spp-refonte.woocommerce-account form.login, .spp-refonte.woocommerce-account form.register { border: 1px solid var(--spp-ligne); border-radius: var(--spp-rayon); padding: 28px; max-width: 520px; }
.spp-refonte.woocommerce-account form.login button, .spp-refonte.woocommerce-account form.register button { width: 100%; }
.spp-refonte .woocommerce-message, .spp-refonte .woocommerce-info, .spp-refonte .woocommerce-error, .spp-refonte .wc-block-components-notice-banner { border: 1px solid var(--spp-ligne) !important; border-left-width: 4px !important; border-left-color: var(--spp-encre) !important; background: var(--spp-blanc) !important; color: var(--spp-encre) !important; border-radius: var(--spp-rayon); font-size: 15px; }
.spp-refonte .woocommerce-error { border-left-color: var(--spp-rouge) !important; }
.spp-refonte .woocommerce-message::before, .spp-refonte .woocommerce-info::before, .spp-refonte .woocommerce-error::before { color: var(--spp-encre); }
.spp-refonte .woocommerce-message .button { float: none; margin-left: 12px; min-height: 36px; padding: 0 14px; font-size: 14px; }
.spp-refonte .cart-empty.woocommerce-info, .spp-refonte .wc-empty-cart-message { text-align: left; }
.spp-refonte .return-to-shop { margin-top: 16px; }

/* Blocs WooCommerce (si le panier ou la commande passent en blocs un jour) */
.spp-refonte .wc-block-components-button { border-radius: var(--spp-rayon) !important; }
.spp-refonte .wc-block-components-product-name { font-weight: 600; text-decoration: none; }
.spp-refonte .wc-block-components-totals-wrapper, .spp-refonte .wc-block-cart__totals-title { font-family: var(--spp-texte); }
.spp-refonte .wc-block-cart .wc-block-components-sidebar { background: var(--spp-gris); border-radius: var(--spp-rayon); padding: 12px; }

/* Panier volant (woo-fly-cart) : polices de la marque */
.spp-refonte .woofc-area { font-family: var(--spp-texte); }
.spp-refonte .woofc-area .woofc-area-heading { font-family: var(--spp-display); font-weight: 800; text-transform: uppercase; font-size: 28px; }
.spp-refonte .woofc-area .woofc-action a, .spp-refonte .woofc-area .woofc-action .woofc-action-inner > a { font-family: var(--spp-condense) !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .06em !important; border-radius: var(--spp-rayon) !important; }
.spp-refonte .woofc-count { display: none !important; }

/* ------------------------------------------------------------------
   Pied de page
   ------------------------------------------------------------------ */
.spp-pied { position: relative; overflow: hidden; background: var(--spp-noir); color: var(--spp-blanc); margin-top: clamp(48px, 7vw, 96px); font-size: 15px; }
.spp-accueil-page .spp-pied { margin-top: 0; }
.spp-pied__filigrane { position: absolute; right: -4%; bottom: -30%; width: clamp(320px, 34vw, 520px); height: auto; opacity: .05; pointer-events: none; filter: grayscale(1) brightness(3); }
.spp-pied__in { position: relative; max-width: var(--spp-largeur); margin: 0 auto; padding: clamp(48px, 6vw, 80px) var(--spp-gouttiere) 40px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.spp-pied__logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--spp-blanc); font-family: var(--spp-display); font-weight: 800; font-size: 30px; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 16px; }
.spp-pied__skull { width: 44px; height: auto; }
.spp-pied__marque p { color: rgba(255,255,255,.72); max-width: 40ch; }
.spp-pied__paiement { display: flex; flex-wrap: wrap; gap: 6px; }
.spp-pied__paiement span { font-family: var(--spp-condense); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.25); border-radius: 3px; padding: 4px 8px; color: rgba(255,255,255,.85); }
.spp-pied__col h2 { color: var(--spp-blanc); font-size: 18px; letter-spacing: .06em; margin-bottom: 14px; font-family: var(--spp-condense); font-weight: 700; }
.spp-pied__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.spp-pied__col a { color: rgba(255,255,255,.78); text-decoration: none; }
.spp-pied__col a:hover { color: var(--spp-blanc); text-decoration: underline; }
.spp-pied__bas { position: relative; border-top: 1px solid rgba(255,255,255,.12); }
.spp-pied__bas { max-width: var(--spp-largeur); margin: 0 auto; padding: 18px var(--spp-gouttiere); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.55); }
.spp-pied__bas p { margin: 0; }
.spp-refonte .kadence-scroll-to-top { background: var(--spp-encre); color: var(--spp-blanc); border-radius: var(--spp-rayon); }

/* Bandeau cookies Complianz : mêmes polices, coins nets */
.spp-refonte .cmplz-cookiebanner { font-family: var(--spp-texte); border-radius: var(--spp-rayon); }
.spp-refonte .cmplz-cookiebanner .cmplz-btn { font-family: var(--spp-condense); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; border-radius: var(--spp-rayon); }
.spp-refonte .cmplz-cookiebanner .cmplz-btn.cmplz-accept { background: var(--spp-encre); border-color: var(--spp-encre); }

/* ------------------------------------------------------------------
   Réactif
   ------------------------------------------------------------------ */
@media (max-width: 1100px) {
  .spp-rayons__grille { grid-template-columns: repeat(3, 1fr); }
  .spp-refonte ul.products.grid-lg-col-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .spp-pied__in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .spp-bandeau__c, .spp-bandeau__d { display: none; }
  .spp-bandeau__in { grid-template-columns: 1fr; justify-items: center; }
  .spp-reassurance ul { grid-template-columns: 1fr 1fr; }
  .spp-reassurance li { border-left: 0; padding: 16px 0; border-bottom: 1px solid var(--spp-ligne); }
  .spp-reassurance li:nth-child(odd) { padding-right: 16px; }
  .spp-reassurance li:nth-last-child(-n+2) { border-bottom: 0; }
  .spp-bannieres { grid-template-columns: 1fr; }
  .spp-manifeste__cols { grid-template-columns: 1fr; }
  .spp-journal__grille { grid-template-columns: 1fr 1fr; }
  .spp-affiliation__in { flex-direction: column; align-items: flex-start; }
  .spp-hero-rayon { grid-template-columns: 1fr; }
  .spp-hero-rayon__img { min-height: 220px; order: -1; }
  .spp-hero-rayon__img::after { background: linear-gradient(0deg, #000 0%, transparent 30%); }
  .spp-refonte.single-product div.product { grid-template-columns: 1fr; }
  .spp-refonte.single-product div.product > .ksk-gallery, .spp-refonte.single-product div.product > .summary { grid-column: 1; position: static; }
  .spp-refonte.woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
  .spp-refonte.woocommerce-checkout form.checkout #order_review_heading, .spp-refonte.woocommerce-checkout form.checkout #order_review { grid-column: 1; position: static; }
}
@media (max-width: 640px) {
  .spp-refonte { font-size: 16px; }
  .spp-hero { min-height: 0; }
  .spp-hero__media img { object-position: 62% 20%; }
  .spp-hero__media::after { background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.72) 45%, rgba(0,0,0,.2) 100%); }
  .spp-hero__txt { padding-top: 46vh; }
  .spp-refonte .spp-hero__titre { font-size: clamp(48px, 15vw, 72px); }
  .spp-refonte .spp-hero .spp-btn { width: 100%; }
  .spp-rayons__grille { grid-template-columns: 1fr 1fr; gap: 10px; }
  .spp-rayons__grille li:last-child { grid-column: 1 / -1; }
  .spp-rayons__grille li:last-child a { aspect-ratio: 16 / 9; }
  .spp-refonte ul.products.grid-lg-col-4, .spp-refonte ul.products.grid-lg-col-3, .spp-refonte ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px 12px !important; }
  .spp-journal__grille { grid-template-columns: 1fr; }
  .spp-reassurance ul { grid-template-columns: 1fr; }
  .spp-reassurance li { padding: 14px 0; }
  .spp-reassurance li:nth-last-child(-n+2) { border-bottom: 1px solid var(--spp-ligne); }
  .spp-reassurance li:last-child { border-bottom: 0; }
  .spp-pied__in { grid-template-columns: 1fr; gap: 28px; }
  .spp-pied__filigrane { width: 320px; right: -20%; bottom: -8%; }
  .spp-refonte.single-product .summary h1.product_title { font-size: 40px; }
  .spp-refonte .woocommerce-tabs ul.tabs { gap: 20px; }
  .spp-refonte .kb-posts.kadence-posts-list { grid-template-columns: 1fr !important; }
}
@media (prefers-reduced-motion: reduce) {
  .spp-refonte *, .spp-refonte *::before, .spp-refonte *::after { transition: none !important; animation: none !important; }
}

/* Notation poker (greffon poker_notation) : cartes rouges et noires dans les articles. */
.spp-refonte .pccard-diams, .spp-refonte .pccard-hearts { background: var(--spp-blanc) !important; color: #c00000 !important; border-color: #c00000 !important; font-size: 20px !important; }
.spp-refonte .pccard-spades, .spp-refonte .pccard-clubs { font-size: 20px !important; }

/* ------------------------------------------------------------------
   Correctifs de la passe 3 (16/09)
   ------------------------------------------------------------------ */
.spp-refonte #colophon.spp-pied { background: var(--spp-noir); }
.spp-refonte.single-product div.product > .ksk-gallery, .spp-refonte.single-product div.product > .woocommerce-product-gallery { grid-row: 1; grid-column: 1; }
.spp-refonte.single-product div.product > .summary { grid-row: 1; grid-column: 2; }
.spp-refonte.single-product div.product > .kske-thumbnails:empty { display: none; }
.spp-refonte.single-product div.product > .kske-thumbnails { grid-column: 1; }
.spp-refonte .single-product-payments { color: var(--spp-muet); font-family: var(--spp-condense); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.spp-refonte .single-product-payments ul { margin-top: 6px; }
.spp-refonte form label, .spp-refonte .woocommerce form label, .spp-refonte .woocommerce-form-login label, .spp-refonte .woocommerce-form-register label, .spp-refonte .kb-form label, .spp-refonte .wp-block-kadence-advanced-form label { color: var(--spp-encre); font-weight: 500; }
.spp-refonte .entry-taxonomies .category-link-uncategorized { display: none; }
.spp-refonte .return-to-shop { text-align: left; }
.spp-refonte.page:not(.spp-accueil-page):not(.woocommerce-page):not(.page-id-37546) .content-container, .spp-refonte.page:not(.spp-accueil-page):not(.woocommerce-page):not(.page-id-37546) .entry-header.page-title { max-width: 880px; }
.spp-refonte.page .entry-header.page-title h1 { font-size: clamp(44px, 6vw, 84px); }
.spp-refonte.page .entry-content h2 { font-size: clamp(28px, 3.2vw, 40px); margin: 1.5em 0 .5em; }
.spp-refonte.page .entry-content h3 { font-size: 24px; margin: 1.3em 0 .4em; }
.spp-refonte .kb-form, .spp-refonte .wp-block-kadence-form { max-width: 640px; }
.spp-refonte .kb-form .kb-field, .spp-refonte .kb-form input:not([type=submit]):not([type=checkbox]), .spp-refonte .kb-form textarea { border: 1.5px solid var(--spp-ligne) !important; border-radius: var(--spp-rayon) !important; background: var(--spp-blanc) !important; color: var(--spp-encre) !important; padding: 12px 14px !important; box-shadow: none !important; }
.spp-refonte .kb-form .kb-field::placeholder { color: #888; }
.spp-refonte .kb-form .kb-forms-submit, .spp-refonte .kb-form button[type=submit] { background: var(--spp-encre) !important; color: var(--spp-blanc) !important; border-radius: var(--spp-rayon) !important; font-family: var(--spp-condense) !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .06em !important; min-height: 50px; padding: 0 26px !important; }
.spp-refonte .kb-form .kb-forms-submit:hover { background: var(--spp-rouge) !important; }
.spp-refonte .wp-block-kadence-accordion .kt-accordion-panel-inner { font-size: 16px; }
.spp-refonte .wp-block-kadence-accordion .kt-blocks-accordion-header { background: var(--spp-gris) !important; color: var(--spp-encre) !important; border: 0 !important; padding: 14px 18px !important; }
.spp-refonte .wp-block-kadence-accordion .kt-accordion-pane { margin-bottom: 8px; }
.spp-refonte .kt-accordion-panel { border: 0 !important; }

/* Passe 4 */
.spp-refonte.single-product .ksk-gallery .product_image, .spp-refonte.single-product .ksk-gallery .kadence-product-gallery-main, .spp-refonte.single-product .ksk-gallery .kadence-product-gallery-main .splide__slide { max-width: none !important; width: 100% !important; }
.spp-refonte.single-product .ksk-gallery .product_image img { width: 100%; height: auto; }
@media (max-width: 900px) {
  .spp-refonte.single-product div.product > .ksk-gallery, .spp-refonte.single-product div.product > .summary, .spp-refonte.single-product div.product > .kske-thumbnails { grid-column: 1 !important; grid-row: auto !important; position: static !important; min-width: 0; }
  .spp-refonte.single-product div.product { grid-template-columns: minmax(0, 1fr); }
}
.spp-refonte:not(.spp-accueil-page) .entry-hero .entry-hero-container-inner, .spp-refonte:not(.spp-accueil-page) .entry-hero { background: transparent !important; min-height: 0 !important; }
.spp-refonte .entry-hero .hero-section-overlay { display: none !important; }
.spp-refonte .entry-hero .entry-header { text-align: left; padding: clamp(24px, 4vw, 48px) 0 0; min-height: 0 !important; }
.spp-refonte .entry-hero .entry-header h1, .spp-refonte .entry-hero .entry-header .entry-title, .spp-refonte .entry-hero .entry-header .archive-description, .spp-refonte .entry-hero .entry-header .entry-meta { color: var(--spp-encre) !important; }
.spp-refonte .entry-hero .entry-header .archive-description { color: var(--spp-muet) !important; font-size: 17px; max-width: 60ch; }
.spp-refonte.archive .entry-hero .entry-header h1 { font-size: clamp(44px, 6vw, 84px); }
.spp-refonte .entry-hero .entry-header .kadence-breadcrumbs { color: var(--spp-muet); font-size: 13px; }
.spp-refonte .entry-hero .entry-header .kadence-breadcrumbs a { color: var(--spp-muet); }
.spp-refonte.spp-livre .entry-header.post-title, .spp-refonte.spp-livre .article-post-thumbnail { display: none; }
.spp-livre-tete { max-width: var(--spp-largeur); margin: 0 auto; padding: clamp(24px, 4vw, 48px) var(--spp-gouttiere) 8px; }
.spp-livre-tete__cat { font-family: var(--spp-condense); font-weight: 600; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 10px; }
.spp-livre-tete__cat a { color: var(--spp-rouge); text-decoration: none; }
.spp-livre-tete h1 { font-size: clamp(38px, 5vw, 68px); max-width: 24ch; margin: 0 0 8px; }
.spp-livre-tete__meta { font-size: 14px; color: var(--spp-muet); margin: 0; }
.spp-refonte.spp-livre .content-area { padding-top: 0; }
.spp-refonte.spp-livre .kb-row-layout-wrap.kt-row-has-bg.has-theme-palette5-background-color, .spp-refonte.spp-livre .kb-row-layout-wrap.kt-row-has-bg.has-theme-palette7-background-color { background-color: var(--spp-encre) !important; }
.spp-refonte .kt-blocks-progress-bar-container .kt-progress-bar { background: var(--spp-rouge); }

/* Passe 5 : panier, commande, panier volant */
.spp-refonte .woocommerce-cart-form button.button, .spp-refonte .woocommerce .coupon button.button, .spp-refonte .woocommerce button.button.alt, .spp-refonte .woocommerce button.button { background: var(--spp-encre) !important; color: var(--spp-blanc) !important; border-color: var(--spp-encre) !important; }
.spp-refonte .woocommerce-cart-form button.button:hover { background: var(--spp-rouge) !important; border-color: var(--spp-rouge) !important; }
.spp-refonte .woocommerce-cart-form button.button:disabled { opacity: .35; }
.spp-refonte .woocommerce-cart-form td.actions { display: table-cell; padding-top: 18px; }
.spp-refonte .woocommerce-cart-form td.actions .coupon { display: inline-flex; gap: 8px; float: none; vertical-align: middle; margin-right: 12px; }
.spp-refonte .woocommerce-cart-form td.actions > button.button { float: right; }
.spp-refonte .woocommerce-cart-form td.actions button.button { white-space: nowrap; min-height: 50px; }
.spp-refonte .woocommerce-cart-form .actions .coupon input.input-text { min-height: 50px; width: 200px; }
.spp-refonte table.shop_table td.product-name a { color: var(--spp-encre); }
.spp-refonte .woocommerce-checkout form.checkout #order_review, .spp-refonte .woocommerce-checkout form.checkout #order_review_heading { width: 100% !important; float: none !important; }
.spp-refonte .woocommerce-checkout #order_review table.shop_table th, .spp-refonte .woocommerce-checkout #order_review table.shop_table td { border-color: rgba(0,0,0,.08); }
.spp-refonte .select2-container--default .select2-selection--single .select2-selection__rendered, .spp-refonte .select2-container .select2-selection__rendered { color: var(--spp-encre) !important; }
.spp-refonte #payment ul.payment_methods li, .spp-refonte #payment ul.payment_methods li label { background: transparent !important; color: var(--spp-encre) !important; }
.spp-refonte #payment ul.payment_methods li .payment_method_stripe, .spp-refonte #payment .wc_payment_method > label { font-weight: 600; }
.spp-refonte .woocommerce form .form-row label, .spp-refonte .woocommerce-checkout .form-row label { color: var(--spp-encre) !important; }
.spp-refonte .woocommerce-checkout .woocommerce-privacy-policy-text, .spp-refonte .woocommerce-terms-and-conditions-wrapper { font-size: 14px; color: var(--spp-muet); }
.spp-refonte .woofc-area { background: var(--spp-blanc) !important; color: var(--spp-encre) !important; }
.spp-refonte .woofc-area .woofc-area-top { background: var(--spp-encre) !important; color: var(--spp-blanc) !important; }
.spp-refonte .woofc-area .woofc-area-top .woofc-area-heading, .spp-refonte .woofc-area .woofc-area-top .woofc-area-count { color: var(--spp-blanc) !important; }
.spp-refonte .woofc-area .woofc-area-mid, .spp-refonte .woofc-area .woofc-area-bot { background: var(--spp-blanc) !important; color: var(--spp-encre) !important; }
.spp-refonte .woofc-area .woofc-item { background: var(--spp-gris) !important; border-radius: var(--spp-rayon); }
.spp-refonte .woofc-area .woofc-item a, .spp-refonte .woofc-area .woofc-item-price, .spp-refonte .woofc-area .woofc-area-bot * { color: var(--spp-encre) !important; }
.spp-refonte .woofc-area .woofc-action a { background: var(--spp-encre) !important; color: var(--spp-blanc) !important; border: 0 !important; }
.spp-refonte .woofc-area .woofc-continue a, .spp-refonte .woofc-area .woofc-continue-url { color: var(--spp-encre) !important; }
.spp-refonte .woofc-area .woofc-close { color: var(--spp-blanc) !important; }
.spp-refonte .woofc-area .woofc-free-shipping-bar { color: var(--spp-encre) !important; }
.spp-refonte .entry-hero .entry-header.title-align-center { text-align: left !important; }

/* Passe 6 : tableau du panier, colonne de commande */
.spp-refonte table.shop_table td.product-name a { color: var(--spp-encre) !important; }
.spp-refonte table.shop_table td.product-quantity { white-space: nowrap; }
.spp-refonte table.shop_table td.product-quantity .quantity { height: 46px; }
.spp-refonte table.shop_table td.product-thumbnail { width: 90px; }
.spp-refonte table.shop_table td.product-remove { width: 40px; }
.spp-refonte.woocommerce-checkout form.checkout { grid-template-rows: auto 1fr; }
.spp-refonte.woocommerce-checkout form.checkout .col2-set { grid-row: 1 / span 2; }
.spp-refonte.woocommerce-checkout form.checkout #order_review_heading { grid-row: 1; align-self: start; margin-bottom: 14px; }
.spp-refonte.woocommerce-checkout form.checkout #order_review { grid-row: 2; align-self: start; }
.spp-refonte .woofc-area .woofc-free-shipping-bar { background: var(--spp-gris) !important; }
@media (max-width: 900px) {
  .spp-refonte.woocommerce-checkout form.checkout { grid-template-rows: none; }
  .spp-refonte.woocommerce-checkout form.checkout .col2-set, .spp-refonte.woocommerce-checkout form.checkout #order_review_heading, .spp-refonte.woocommerce-checkout form.checkout #order_review { grid-row: auto; }
  .spp-refonte .woocommerce-cart-form td.actions > button.button { float: none; margin-top: 10px; }
}
@media (max-width: 640px) {
  .spp-refonte .woocommerce-cart-form td.actions .coupon { display: flex; flex-wrap: wrap; width: 100%; margin: 0 0 10px; }
  .spp-refonte .woocommerce-cart-form td.actions .coupon input.input-text, .spp-refonte .woocommerce-cart-form td.actions .coupon button.button { width: 100% !important; flex: 1 1 100%; }
  .spp-refonte .woocommerce-cart-form td.actions > button.button { width: 100%; margin: 0; }
}
