/**
 * PROPARO - Theme CSS
 * PrestaShop 8 Custom Theme
 * Agence Influa - 2026
 *
 * Imports _tokens.css for design tokens
 */

/* _tokens.css et Google Fonts charges via head.tpl */

/* ================================================
   ANCHOR SCROLL OFFSET
   Header fixe de 80px : on decale la cible des ancres
   pour que le bloc ne passe pas sous le header.
   ================================================ */
html { scroll-padding-top: calc(var(--header-height) + 16px); scroll-behavior: smooth; }

/* ================================================
   PS8 OVERRIDE - neutralise les styles par defaut
   ================================================ */

/* Supprime les contraintes Bootstrap heritees de PS8 */
#wrapper { padding: 0; }
#content-wrapper { padding: 0; width: 100%; max-width: none; float: none; }
#main { margin: 0; }
.page-content.card { box-shadow: none; border: none; background: none; padding: 0; }
.page-footer { padding: 0; }
section#main { width: 100%; }
.notifications-container { padding: 0; }

/* Neutralise jQuery UI */
.ui-widget { font-family: var(--font-body); }

/* Supprime le module reassurance PS8 (on a le notre) */
#blockreassurance_after_product,
.blockreassurance { display: none !important; }

/* Container utilitaire Proparo */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding-left: var(--container-pad-mobile);
    padding-right: var(--container-pad-mobile);
  }
}

/* ================================================
   RESET & BASE
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--color-ink-mid);
  background: var(--color-canvas);
}

a { color: var(--color-brand); text-decoration: none; transition: color var(--duration-fast) var(--ease-default); }
a:hover { color: var(--color-brand-dark); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-4xl); font-weight: var(--weight-bold); }
h2 { font-size: var(--text-3xl); font-weight: var(--weight-bold); }
h3 { font-size: var(--text-2xl); font-weight: var(--weight-semibold); }
h4 { font-size: var(--text-xl); font-weight: var(--weight-semibold); }

p { margin-bottom: var(--space-4); }

/* ================================================
   LAYOUT
   ================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

#wrapper {
  background: var(--color-canvas);
  min-height: 60vh;
}

/* Padding par defaut pour les pages internes */
#content-wrapper { padding: var(--space-10) 0; }

/* Homepage et pages full-design : pas de padding */
body.page-index #content-wrapper,
body.page-category #content-wrapper,
body.page-cms #content-wrapper,
body.page-product #content-wrapper,
body.page-pagenotfound #content-wrapper,
body.page-contact #content-wrapper { padding: 0; }

/* section#main PS8 - pas de contrainte */
section#main {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: visible;
}

/* Footer interne page.tpl (vide sur homepage) */
.page-footer {
  padding: 0;
  margin: 0;
}

/* Header de page PS8 (page-header) - style pour pages internes */
.page-header {
  padding: var(--space-8) 0 var(--space-6);
}

.page-header h1 {
  font-size: var(--text-3xl);
}

/* Breadcrumb - masque sur la homepage */
body.page-index .breadcrumb,
body.page-index aside#notifications { display: none; }

/* Breadcrumb container */
body.page-index #wrapper > .container:first-of-type { display: none; }

/* Override PS8 Bootstrap grid */
.row { display: flex; flex-wrap: wrap; gap: var(--grid-gap); }

/* ================================================
   HEADER
   ================================================ */

#header {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: var(--header-bg);
  backdrop-filter: var(--header-backdrop);
  -webkit-backdrop-filter: var(--header-backdrop);
  transition: box-shadow var(--duration-base) var(--ease-default),
              border-color var(--duration-base) var(--ease-default);
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-top {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.header-logo img,
.header-logo svg {
  height: 52px;
  width: auto;
}
.header-logo .proparo-logo { width: 220px; height: 66px; }

/* Navigation - proparo-nav (override ps_mainmenu) */
.header-nav-main {
  display: flex;
  align-items: center;
}

.header-nav-main .proparo-nav {
  display: flex;
  gap: var(--space-7);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-main .proparo-nav-item {
  position: relative;
}

.header-nav-main .proparo-nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink-mid);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-2) 0;
  display: block;
  transition: color var(--duration-fast) var(--ease-default);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.header-nav-main .proparo-nav-link:hover,
.header-nav-main .proparo-nav-item.current > .proparo-nav-link,
.header-nav-main .proparo-nav-link.active {
  color: var(--color-brand);
  border-bottom-color: var(--color-brand);
}

/* Produits Pro : separateur + style distinctif */
.header-nav-main .proparo-nav-item.nav-pro {
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--color-border);
}
.header-nav-main .proparo-nav-item.nav-pro > .proparo-nav-link {
  color: var(--color-pro, #1A3A5C);
  font-weight: var(--weight-semibold);
}
.header-nav-main .proparo-nav-item.nav-pro > .proparo-nav-link:hover,
.header-nav-main .proparo-nav-item.nav-pro.current > .proparo-nav-link {
  color: var(--color-brand);
}

/* Sous-menu dropdown */
.header-nav-main .proparo-subnav {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  min-width: 200px;
  list-style: none;
  display: none;
  box-shadow: var(--shadow-md);
  z-index: calc(var(--z-header) + 1);
}
/* Pont invisible pour garder le hover entre le lien et le sous-menu */
.header-nav-main .proparo-nav-item.has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  display: none;
}
.header-nav-main .proparo-nav-item.has-children:hover::after {
  display: block;
}
.header-nav-main .proparo-nav-item.has-children:hover > .proparo-subnav {
  display: block;
}

.header-nav-main .proparo-subnav .proparo-nav-link {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
  border-bottom: none;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.header-nav-main .proparo-subnav .proparo-nav-link:hover {
  color: var(--color-brand);
  background: var(--color-canvas-warm);
  border-bottom: none;
}

/* Fallback pour ancien markup ps_mainmenu (si theme cache pas encore vide) */
#_desktop_top_menu .top-menu {
  display: flex;
  gap: var(--space-7);
  list-style: none;
  margin: 0;
  padding: 0;
}

#_desktop_top_menu .top-menu > li > a,
#_desktop_top_menu .top-menu > li > a.dropdown-item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink-mid);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--duration-fast) var(--ease-default);
  border-bottom: 2px solid transparent;
  background: transparent;
  display: block;
}

#_desktop_top_menu .top-menu > li > a:hover,
#_desktop_top_menu .top-menu > li.current > a {
  color: var(--color-brand);
  border-bottom-color: var(--color-brand);
}

/* Masque les elements BS du module mainmenu */
#_desktop_top_menu .float-xs-right,
#_desktop_top_menu .collapse-icons,
#_desktop_top_menu .clearfix { display: none; }

#_desktop_top_menu { display: flex; align-items: center; }
.menu.js-top-menu { display: flex; align-items: center; }
.menu.js-top-menu.hidden-sm-down { display: flex !important; }

/* Search widget hors nav */
#search_widget { display: none; }
.header-nav-main #search_widget { display: none; }

/* Header icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header-action-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-default);
  color: var(--color-ink-mid);
  position: relative;
}

.header-action-btn:hover {
  border-color: var(--color-ink);
  color: var(--color-ink);
}

.header-action-btn svg {
  width: var(--icon-size-md);
  height: var(--icon-size-md);
  stroke: currentColor;
  stroke-width: var(--icon-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Cart badge : masque si panier vide (:empty = pas de texte a afficher) */
.cart-products-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: white;
  font-size: 10px;
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-products-count:empty { display: none; }

/* ================================================
   PROMO BAR
   ================================================ */

.promo-bar {
  background: var(--color-ink);
  color: white;
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.promo-bar a { color: white; text-decoration: underline; }

/* ================================================
   BUTTONS
   ================================================ */

.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-default);
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.btn-primary,
.btn-brand,
.brand-cta {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-color);
  border-radius: var(--btn-primary-radius);
  height: var(--btn-primary-height);
  padding: var(--btn-primary-pad);
  font-size: var(--btn-primary-font-size);
  font-weight: var(--btn-primary-weight);
}

.btn-primary:hover,
.btn-brand:hover,
.brand-cta:hover {
  background: var(--btn-primary-bg-hover);
  box-shadow: var(--color-brand-shadow);
  transform: translateY(-1px);
  color: white;
}

.btn-primary:active,
.btn-brand:active,
.brand-cta:active {
  transform: scale(0.98);
}

/* Specifique brand-cta : padding et gap pour l'icone fleche */
.brand-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body, 'DM Sans'), sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-top: 8px;
}
.brand-cta svg { transition: transform .2s; }
.brand-cta:hover svg { transform: translateX(3px); }

.btn-secondary,
.btn-outline {
  /* height/padding/font hérités de .btn — on ne surcharge que l'apparence */
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border-mid);
  border-radius: var(--radius-pill);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: var(--color-canvas-warm);
  border-color: var(--color-ink);
  color: var(--color-ink);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-brand);
  border-radius: var(--radius-pill);
  height: var(--btn-secondary-height);
  padding: var(--btn-secondary-pad);
  font-size: var(--btn-secondary-font-size);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease;
}

.btn-outline-brand:hover {
  background: var(--color-brand);
  color: white;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */

.product-miniature {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--duration-slow) var(--ease-default), transform var(--duration-slow) var(--ease-default);
  position: relative;
  cursor: pointer;
}

.product-miniature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-miniature .thumbnail-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-canvas-warm);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 1px solid var(--color-border);
}

.product-miniature .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-4);
  transition: transform var(--duration-base) var(--ease-default);
}

.product-miniature:hover .thumbnail-container img {
  transform: scale(1.04);
}

/* Product badges */
.product-flags {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-flag {
  display: inline-block;
  font-size: var(--badge-font-size);
  font-weight: var(--badge-weight);
  padding: var(--badge-pad);
  border-radius: var(--badge-radius);
  letter-spacing: var(--badge-tracking);
  text-transform: uppercase;
  color: white;
  background: var(--color-brand);
}

.product-flag.new { background: var(--color-ink); }
.product-flag.on-sale { background: var(--color-alert); }
.product-flag.discount { background: var(--color-alert); }

/* Product info */
.product-miniature .product-description {
  padding: var(--space-4);
}

.product-miniature .product-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-ink);
  margin-bottom: var(--space-1);
  line-height: var(--leading-snug);
}

.product-miniature .product-title a {
  color: inherit;
  text-decoration: none;
}

.product-miniature .product-price-and-shipping {
  margin-top: var(--space-2);
}

.product-miniature .price {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-brand);
}

.product-miniature .regular-price {
  font-size: var(--text-sm);
  color: var(--color-ink-mute);
  text-decoration: line-through;
  margin-left: var(--space-2);
}

/* Add to cart on hover */
.product-miniature .add-to-cart-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-brand);
  color: white;
  border: none;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transform: translateY(100%);
  opacity: 0;
  transition: all var(--duration-base) var(--ease-default);
}

.product-miniature:hover .add-to-cart-btn {
  transform: translateY(0);
  opacity: 1;
}

/* Products grid */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 1024px) {
  .products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products { grid-template-columns: 1fr; }
  .product-miniature .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ================================================
   FORMS
   ================================================ */

.form-group {
  margin-bottom: var(--space-6);
  position: relative;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  height: var(--input-height);
  padding: var(--input-pad);
  font-family: var(--font-body);
  font-size: var(--input-font-size);
  color: var(--input-color);
  background: var(--input-bg);
  border: var(--input-border);
  border-radius: var(--input-radius);
  transition: all var(--duration-fast) var(--ease-default);
  outline: none;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
  border: var(--input-border-focus);
  box-shadow: var(--input-shadow-focus);
}

textarea { height: auto; min-height: 120px; resize: vertical; }

label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink-mid);
  margin-bottom: var(--space-1);
  display: block;
}

/* ================================================
   FOOTER
   ================================================ */

/* ===== FOOTER ===== */
#footer {
  background: #141412;
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}

/* Container 4 colonnes */
#footer .footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) 64px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Colonnes génériques */
.ft-col-title {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px;
}

.ft-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ft-links a {
  color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.4;
  transition: color .2s;
}
.ft-links a:hover { color: white; }

/* Col 1 — Marque */
.ft-logo { display: inline-block; margin-bottom: 16px; }
.ft-logo .proparo-logo {
  /* version sans baseline "soins des dents et des implants", alignee a gauche et un peu plus grande */
  -webkit-mask-image: url('/img/proparo-logo-mark.svg');
  mask-image: url('/img/proparo-logo-mark.svg');
  -webkit-mask-position: left center;
  mask-position: left center;
  width: 210px;
  height: 66px;
}
.ft-logo-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: #D40012; letter-spacing: -.02em;
}
.ft-tagline {
  font-size: 13px; color: rgba(255,255,255,.45);
  line-height: 1.7; margin-bottom: 20px; max-width: 280px;
}

/* Contact */
.ft-contact {
  font-style: normal; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px;
}
.ft-contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.ft-contact-link:hover { color: white; }

/* Social icons */
.ft-social { display: flex; gap: 10px; }
.ft-social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s, background .2s;
}
.ft-social-btn:hover {
  border-color: #D40012; color: white; background: rgba(212,0,18,.15);
}

/* Col 4 — Newsletter */
.ft-newsletter-desc {
  font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 16px;
}
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
/* Label au-dessus du champ prenom */
.newsletter-form .newsletter-label {
  flex: 1 1 100%;
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: -2px;
}
.newsletter-form .newsletter-label-em { font-weight: 400; opacity: .6; text-transform: none; letter-spacing: 0; margin-left: 4px; }

/* Style unifie des 2 inputs (prenom + email) */
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  color: #fff;
  height: 44px;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 13px;
  font-family: 'DM Sans', system-ui, sans-serif;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,.35);
}
.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
  border-color: rgba(212,0,18,.5);
}
/* Le prenom prend toute la largeur, l'email + bouton sont sur la meme ligne */
.newsletter-form input[name="firstname"] { flex: 1 1 100%; }
.newsletter-form input[type="email"]:focus {
  outline: none; border-color: #D40012;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.newsletter-btn {
  flex-shrink: 0; padding: 0 20px; height: 44px;
  background: #D40012; color: #fff;
  border: none; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer; transition: all .25s ease;
  white-space: nowrap;
}
.newsletter-btn:hover { background: #b8000f; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,0,18,.25); }
.newsletter-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.newsletter-btn .newsletter-btn-spinner { display: none; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; margin-left: 8px; animation: nlspin .8s linear infinite; }
.newsletter-btn.is-loading .newsletter-btn-spinner { display: inline-block; }
.newsletter-btn.is-loading .newsletter-btn-text { opacity: .7; }
@keyframes nlspin { to { transform: rotate(360deg); } }
.newsletter-msg:empty { display: none; }

/* Message succes/erreur newsletter (retourne par ps_emailsubscription apres soumission) */
.newsletter-msg {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
}
.newsletter-msg.is-ok {
  background: rgba(45,138,78,.12);
  color: #7ED8A4;
  border: 1px solid rgba(126,216,164,.3);
}
.newsletter-msg.is-error {
  background: rgba(212,0,18,.12);
  color: #FF6B7A;
  border: 1px solid rgba(212,0,18,.3);
}

/* Footer bottom bar */
.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--container-pad);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-legal {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap;
}
.footer-bottom-legal a {
  color: rgba(255,255,255,.3); transition: color .2s;
}
.footer-bottom-legal a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-pay { display: flex; gap: 6px; align-items: center; }
.ft-pay-badge {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3);
  padding: 4px 8px; border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px; letter-spacing: .05em;
}

/* Responsive footer */
@media (max-width: 1100px) {
  #footer .footer-container { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .ft-col-newsletter { grid-column: 1 / -1; }
  .ft-newsletter-desc { max-width: 480px; }
  .newsletter-form { max-width: 420px; }
}
@media (max-width: 768px) {
  #footer .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-col-brand { grid-column: 1 / -1; }
  .ft-col-newsletter { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  #footer .footer-container { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ================================================
   HOMEPAGE SECTIONS
   ================================================ */

.section {
  padding: var(--space-20) 0;
}

.section-alt {
  background: var(--color-canvas-warm);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-brand);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-ink);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.section-title em {
  color: var(--color-brand);
  font-style: italic;
}

.section-desc {
  font-size: var(--text-md);
  color: var(--color-ink-mute);
  max-width: 560px;
  margin: 0 auto;
}

/* HERO */
.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}
/* hero-main est transparent au grid : ses enfants deviennent items directs de .hero */
.hero-main { display: contents; }

/* Hero multi-panels : conteneur relatif pour superposer les panels */
.hero-multi {
  position: relative;
  display: block;
  min-height: 85vh;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
}

.hero-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(12px);
  z-index: 1;
}

.hero-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

.hero-panel.leaving {
  opacity: 0;
  transform: translateY(-12px);
  z-index: 1;
}

/* h2 dans les panels suivants stylee comme le h1 */
.hero-h1 {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}
.hero-h1 em { font-style: italic; color: var(--color-brand); }

/* Navigation hero globale */
.hero-nav {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 10;
}

.hero-nav-btn {
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background var(--duration-fast) ease;
}
.hero-nav-btn:hover { background: rgba(0,0,0,.15); }

.hero-nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-nav-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.2);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
}
.hero-nav-dots .dot.active {
  background: var(--color-brand);
  transform: scale(1.35);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-brand);
  margin-bottom: var(--space-4);
}

.hero h1 {
  font-size: var(--text-display);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-brand);
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--color-ink-mute);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-8);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-ink-mute);
}

.hero-visual {
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

/* HERO SLIDER */
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-canvas-warm);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

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

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide-caption {
  z-index: 2;
}

.hero-slide-caption {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-slide-badge {
  background: var(--color-brand);
  color: white;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: white;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  line-height: 1.2;
}

.hero-slider-nav {
  position: absolute;
  bottom: var(--space-4);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  z-index: 10;
}

.hero-slider-btn {
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background var(--duration-fast) ease;
}

.hero-slider-btn:hover { background: white; }

.hero-slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.hero-slider-dots .dot.active {
  background: white;
  transform: scale(1.3);
}

/* REASSURANCE */
.reassurance {
  background: var(--color-ink);
  padding: var(--space-6) 0;
}

.reassurance-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.reassurance-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-brand);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  flex-shrink: 0;
}

/* CATEGORIES */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
}

.cat-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-default);
  text-decoration: none;
  display: block;
}

.cat-card:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Cat card with image */
.cat-card-img .cat-card-cover {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-canvas-warm);
}

.cat-card-img .cat-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-base) var(--ease-default);
  display: block;
}

.cat-card-img:hover .cat-card-cover img {
  transform: scale(1.06);
}

.cat-card-img .cat-card-body {
  padding: var(--space-4) var(--space-5);
}

/* Cat card legacy (icon) */
.cat-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  background: var(--color-brand-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-brand);
  stroke-width: var(--icon-stroke-width);
  fill: none;
}

.cat-card-name {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  margin-bottom: var(--space-1);
}

.cat-card-count {
  font-size: var(--text-xs);
  color: var(--color-ink-mute);
}

/* ================================================
   BREADCRUMB
   ================================================ */

.breadcrumb {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-ink-hint);
  padding: 0;
  margin: 0 0 12px;
  list-style: none;
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C4C4BE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.breadcrumb a { color: var(--color-ink-hint); transition: color .15s; }
.breadcrumb a:hover { color: var(--color-brand); }
.breadcrumb li:last-child span { color: var(--color-ink-mid); font-weight: 500; }

/* ================================================
   SCROLL REVEAL
   ================================================ */

@media (prefers-reduced-motion: no-preference) {
  .rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-slow) var(--ease-default),
                transform var(--duration-slow) var(--ease-default);
  }
  .rv.on { opacity: 1; transform: translateY(0); }
  .rv-d1 { transition-delay: 0ms; }
  .rv-d2 { transition-delay: 80ms; }
  .rv-d3 { transition-delay: 160ms; }
  .rv-d4 { transition-delay: 240ms; }
}

/* ================================================
   PRO BANNER (B2B)
   ================================================ */

.pro-banner {
  background: var(--color-pro);
  color: white;
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
}

.pro-banner a { color: white; }

/* ================================================
   SECTION BRAND (dark)
   ================================================ */

.section-brand {
  padding: var(--space-20) 0;
}

@media (max-width: 1024px) {
  .section-brand .container { grid-template-columns: 1fr !important; }
  .hero-content, .hero-visual { order: initial; }
}

/* ================================================
   PS8 OVERRIDE - Remove bootstrap defaults
   ================================================ */

#wrapper .container { max-width: var(--container-max); padding: 0 var(--container-pad); }
.page-home #wrapper { padding: 0; }
.page-home #content-wrapper { padding: 0; }
.page-home #wrapper > .container { padding: 0; max-width: 100%; }

/* Hide PS default breadcrumb on homepage */
.page-home .breadcrumb { display: none; }

/* Hide empty divs from PS modules */
.header-banner:empty, .header-nav:empty { display: none; }

/* Override PS default notification styles */
#notifications .container { max-width: var(--container-max); }

/* ================================================
   PAGES INTERIEURES - CATEGORIE
   ================================================ */

/* Neutraliser les cards PS8 */
.block-category.card,
.products-selection .card,
#js-product-list-header .card-block { background: none; border: none; box-shadow: none; padding: 0; }

/* Header categorie */
.block-category {
  padding: var(--space-12) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.block-category h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-tighter);
  color: var(--color-ink);
  margin: 0 0 var(--space-3);
}
/* block-category-inner : texte a gauche, image a droite */
.block-category-inner {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: var(--space-6);
}
#category-description { font-size: var(--text-md); color: var(--color-ink-mute); line-height: 1.6; flex: 1; }
.block-category .category-cover {
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.block-category .category-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Barre tri / filtres */
.products-selection {
  max-width: var(--container-max);
  margin: 0 auto var(--space-6);
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-4);
}
.products-selection .showing { font-size: var(--text-sm); color: var(--color-ink-mute); }
.sort-by-row { display: flex; align-items: center; gap: var(--space-3); }
.products-sort-order {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 32px 8px 12px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--color-ink);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.products-sort-order:focus { outline: 2px solid var(--color-brand); border-color: var(--color-brand); }

/* Grille produits sur page categorie */
#js-product-list .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: 0;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
/* Reset colonnes Bootstrap dans la grille */
#js-product-list .products .js-product,
#js-product-list .products .product { padding: 0; width: 100%; max-width: 100%; flex: none; float: none; }
.page-category #content-wrapper,
.page-search #content-wrapper { max-width: none; margin: 0; padding: 0; }

/* Miniature produit - carte categorie */
.product-miniature .thumbnail-container {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--duration-base) ease, transform var(--duration-base) ease;
  display: flex;
  flex-direction: column;
}
.product-miniature:hover .thumbnail-container {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.product-miniature .thumbnail-top { position: relative; background: #FFFFFF; }
.product-miniature .thumbnail-top .product-thumbnail { display: block; aspect-ratio: 1; overflow: hidden; }
.product-miniature .thumbnail-top img { width: 100%; height: 100%; object-fit: contain; padding: var(--space-4); }
.product-miniature .highlighted-informations { position: absolute; bottom: var(--space-3); left: 0; right: 0; display: flex; justify-content: center; opacity: 0; transition: opacity var(--duration-fast) ease; pointer-events: none; }
.product-miniature:hover .highlighted-informations { opacity: 1; pointer-events: auto; }
.product-miniature .quick-view {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: var(--text-xs);
  color: var(--color-ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background var(--duration-fast) ease;
}
.product-miniature .quick-view:hover { background: var(--color-brand); color: white; border-color: var(--color-brand); }
.product-miniature .quick-view .material-icons { font-size: 14px; }
.product-miniature .product-description {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.product-miniature .product-title { font-family: var(--font-display); font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--color-ink); margin: 0; line-height: var(--leading-snug); }
.product-miniature .product-title a { color: inherit; text-decoration: none; }
.product-miniature .product-title a:hover { color: var(--color-brand); }
.product-miniature .price { font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--color-brand); }
.product-miniature .regular-price { font-size: var(--text-sm); color: var(--color-ink-subtle); text-decoration: line-through; }
.product-miniature .product-flags { position: absolute; top: var(--space-3); left: var(--space-3); z-index: 2; display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; margin: 0; }
.product-miniature .product-flag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border-radius: var(--radius-pill); background: var(--color-brand); color: white; }
.product-miniature .product-flag.new { background: var(--color-brand); }
.product-miniature .product-flag.discount { background: #dc3545; }
.product-miniature .product-flag.out_of_stock { background: var(--color-ink-mute); }

/* ============================================================
   Pagination Proparo (.proparo-pagination)
   ============================================================ */
.proparo-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 24px;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
}
.proparo-pagination .pagination-summary {
  font-size: 13px;
  color: #8A8A84;
  font-family: var(--font-b, sans-serif);
}
.proparo-pagination .page-list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.proparo-pagination .page-item a,
.proparo-pagination .page-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2E2E2C;
  text-decoration: none;
  border: 1px solid #E5E2DC;
  background: #fff;
  transition: background .2s, color .2s, border-color .2s;
}
.proparo-pagination .page-item a:hover {
  background: #FFF0F1;
  color: #D40012;
  border-color: #D40012;
}
.proparo-pagination .page-item.current span,
.proparo-pagination .page-item.current a {
  background: #D40012;
  color: #fff;
  border-color: #D40012;
  cursor: default;
}
.proparo-pagination .page-item.disabled a,
.proparo-pagination .page-item.disabled span {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}
.proparo-pagination .page-spacer span {
  border: none;
  background: transparent;
  color: #8A8A84;
}
.proparo-pagination .page-prev a,
.proparo-pagination .page-next a {
  padding: 0;
  width: 38px;
}
.proparo-pagination .page-prev svg,
.proparo-pagination .page-next svg {
  flex-shrink: 0;
}

/* Sous-categories */
#subcategories { max-width: var(--container-max); margin: 0 auto var(--space-8); padding: 0 var(--container-pad); background: none; border: none; box-shadow: none; }
#subcategories h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--color-ink); margin-bottom: var(--space-4); }
.subcategories-list { display: flex; gap: var(--space-4); flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.subcategories-list li { flex: 0 0 auto; }
.subcategory-name { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--color-brand); text-decoration: none; }
.subcategory-name:hover { text-decoration: underline; }

/* ================================================
   PAGE PRODUIT — DESACTIVE
   Tout le style fiche produit est dans proparo-fiche-produit.css
   ================================================ */

/* ================================================
   PANIER
   ================================================ */

.page-cart #wrapper,
.page-checkout #wrapper { background: var(--color-canvas-warm); }

/* Panier + Tunnel : styles dans proparo-secondary.css */

/* ================================================
   FOCUS & ACCESSIBILITY
   ================================================ */

*:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

/* ================================================
   MOBILE BURGER MENU
   ================================================ */

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
  order: -1;
}
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
  transition: transform .3s, opacity .2s;
}
.burger-btn.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open .burger-line:nth-child(2) { opacity: 0; }
.burger-btn.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav-overlay.is-visible { opacity: 1; }

@media (max-width: 1024px) {
  .burger-btn { display: flex; }
  .header-nav-main {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 80px 24px 32px;
    box-shadow: 4px 0 24px rgba(0,0,0,.12);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .header-nav-main.is-open {
    display: block;
    transform: translateX(0);
  }
  .header-nav-main .proparo-nav {
    flex-direction: column;
    gap: 0;
  }
  .header-nav-main .proparo-nav-item {
    border-bottom: 1px solid var(--color-border, #E8E8E2);
  }
  .header-nav-main .proparo-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
  }
  .header-nav-main .proparo-nav-item.nav-pro {
    margin-top: 16px;
    border: none;
  }
  .header-nav-main .proparo-nav-item.nav-pro .proparo-nav-link {
    background: var(--color-brand, #D40012);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    padding: 14px 20px;
  }
  .header-logo { flex: 1; }
  .header-logo img { height: 40px; }
  .header-top { padding-left: 16px; padding-right: 16px; height: 64px; }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: 60vh; padding: var(--space-12) var(--container-pad-mobile); }
  .hero-multi { min-height: 60vh; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  #footer .footer-container { grid-template-columns: repeat(2, 1fr); }
  #js-product-list .products { grid-template-columns: repeat(2, 1fr); }
  .product-accessories .products { grid-template-columns: repeat(2, 1fr); }
  /* cart responsive in proparo-secondary.css */
  #main .product-container { gap: var(--space-8); }
}

@media (max-width: 768px) {
  :root { --container-pad: var(--container-pad-mobile); }
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  .section { padding: var(--space-12) 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  #main .product-container { grid-template-columns: 1fr; }
  .block-category { flex-direction: column; }
  .block-category .category-cover { display: none; }
  .hero-panel { padding: var(--space-8) var(--container-pad-mobile); }
  .hero-panel { grid-template-columns: 1fr; }
  .hero-visual { max-width: 320px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  #footer .footer-container { grid-template-columns: 1fr; }
  #js-product-list .products { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}

/* ================================================
   CATEGORY HERO HEADER - Proparo
   ================================================ */

.category-hero {
  background: linear-gradient(135deg, #faf9f7 0%, #f4f0eb 100%);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}
.category-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-10) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  min-height: 200px;
}
.category-hero-content { flex: 1; }
.category-hero-content .breadcrumb { background: none; padding: 0; margin-bottom: var(--space-4); }
.category-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-ink);
  margin: 0 0 var(--space-3);
  letter-spacing: var(--tracking-tighter);
}
.category-hero-desc {
  font-size: var(--text-md);
  color: var(--color-ink-mute);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: var(--space-3);
}
.category-hero-desc p { margin: 0; }
.category-hero-meta { display: flex; align-items: center; gap: var(--space-3); }
.category-hero-count {
  display: inline-flex;
  align-items: center;
  background: var(--color-brand);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.category-hero-visual {
  width: 240px;
  height: 240px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.category-hero-visual img { width: 100%; height: 100%; object-fit: contain; padding: var(--space-4); }

/* ================================================
   LAYOUT CATEGORIE - Sidebar + contenu
   ================================================ */

/* Layout sidebar PS8 desactive — la sidebar est geree dans .catalogue-layout */
.proparo-sidebar {
  width: 260px;
  flex-shrink: 0;
  padding: var(--space-6) var(--space-5);
  position: sticky;
  top: calc(var(--header-height) + 68px);
  max-height: calc(100vh - var(--header-height) - 80px);
  overflow-y: auto;
  border-right: 1px solid var(--color-border);
  background: var(--color-canvas);
  scrollbar-width: thin;
}
.proparo-content-main {
  flex: 1;
  min-width: 0;
  padding: 0;
}

/* Sidebar : titre section filtres */
.proparo-sidebar .facets-title,
.proparo-sidebar h2,
.proparo-sidebar h3 {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-ink-mute);
  margin: var(--space-5) 0 var(--space-3);
}
.proparo-sidebar .facets-title:first-child { margin-top: 0; }

/* ============================================================
   Sidebar - Navigation categories (ps_categorytree override Proparo)
   ============================================================ */
.proparo-sidebar-categories {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}
.proparo-sidebar-categories-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-ink-mute);
  margin: 0 0 var(--space-3) 0;
}
.proparo-sidebar-cat-parent {
  display: block;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
  padding: 8px 0;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--color-ink);
}
.proparo-sidebar-cat-parent:hover { color: var(--color-brand); border-bottom-color: var(--color-brand); }

.proparo-sidebar-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.proparo-sidebar-cat-list[data-depth="1"] {
  padding-left: 14px;
  margin-top: 4px;
  border-left: 1px solid var(--color-border);
}
.proparo-sidebar-cat-item { margin: 0; }
.proparo-sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-mute);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light, rgba(0,0,0,.06));
  transition: color .2s, padding-left .2s;
}
.proparo-sidebar-cat-item:last-child .proparo-sidebar-cat-link { border-bottom: none; }
.proparo-sidebar-cat-link:hover { color: var(--color-brand); padding-left: 4px; }
.proparo-sidebar-cat-link.active,
.proparo-sidebar-cat-item.current > .proparo-sidebar-cat-link { color: var(--color-brand); font-weight: 700; }
.proparo-sidebar-cat-chev { opacity: .4; flex-shrink: 0; transition: opacity .2s, transform .2s; }
.proparo-sidebar-cat-link:hover .proparo-sidebar-cat-chev { opacity: 1; transform: translateX(2px); }

/* Filtre checkbox / facet items */
.proparo-sidebar .facet { margin-bottom: var(--space-4); }
.proparo-sidebar .facet .facet-title { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--color-ink); margin-bottom: var(--space-2); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.proparo-sidebar .facet-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-ink-mute);
  padding: 4px 0;
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}
.proparo-sidebar .facet-label:hover { color: var(--color-brand); }
.proparo-sidebar .facet-label input[type="checkbox"],
.proparo-sidebar .facet-label input[type="radio"] { accent-color: var(--color-brand); width: 14px; height: 14px; flex-shrink: 0; }
.proparo-sidebar .facet-label.active { color: var(--color-brand); font-weight: var(--weight-semibold); }
.proparo-sidebar .magnitude { font-size: var(--text-xs); color: var(--color-ink-subtle); margin-left: auto; }

/* Filtres actifs */
.proparo-sidebar .active-filter-title { font-size: var(--text-xs); font-weight: var(--weight-semibold); color: var(--color-ink-mute); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--space-2); }
.proparo-sidebar .filter-block { font-size: var(--text-sm); color: var(--color-brand); background: rgba(212,0,18,.06); border-radius: var(--radius-pill); padding: 4px 12px; display: inline-flex; align-items: center; gap: 6px; margin: 0 4px 4px 0; }
.proparo-sidebar .filter-block .close { font-size: 12px; cursor: pointer; }

/* ================================================
   BARRE TRI + COMPTEUR (products-top)
   ================================================ */

.proparo-products-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--container-pad);
  border-bottom: 1px solid var(--color-border);
  background: white;
  position: sticky;
  top: var(--header-height);
  z-index: 10;
}
.proparo-products-count {
  font-size: var(--text-sm);
  color: var(--color-ink-mute);
  font-weight: var(--weight-semibold);
}
.proparo-products-actions { display: flex; align-items: center; gap: var(--space-3); }

/* Sort select natif */
.proparo-sort-order { display: flex; align-items: center; gap: var(--space-2); }
.proparo-sort-label {
  font-size: var(--text-sm);
  color: var(--color-ink-mute);
  white-space: nowrap;
}
.proparo-sort-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 7px 32px 7px 12px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--color-ink);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  min-width: 180px;
  transition: border-color var(--duration-fast) ease;
}
.proparo-sort-select:focus { outline: none; border-color: var(--color-brand); box-shadow: 0 0 0 3px rgba(212,0,18,.08); }

/* Bouton filtre mobile */
.proparo-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 7px 14px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--color-ink);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}
.proparo-filter-btn:hover { border-color: var(--color-brand); color: var(--color-brand); }

/* ================================================
   BOUTON RETOUR EN HAUT
   ================================================ */

#proparo-back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  background: var(--color-brand);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212,0,18,.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  z-index: 500;
}
#proparo-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#proparo-back-to-top:hover { background: var(--color-brand-dark); transform: translateY(-2px); }

/* ================================================
   PRODUITS ASSOCIES / ACCESSOIRES / DEJA VUS
   ================================================ */

.product-accessories,
#viewed-products-block-bottom,
#crossselling {
  max-width: var(--container-max);
  margin: var(--space-12) auto 0;
  padding: var(--space-8) var(--container-pad);
  border-top: 1px solid var(--color-border);
}
.product-accessories h2,
#viewed-products-block-bottom h2,
#crossselling h2,
.product-accessories .products-section-title,
.section-related-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-ink);
  margin-bottom: var(--space-6);
}
.product-accessories .products,
#viewed-products-block-bottom .products,
#crossselling .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.product-accessories .products .js-product,
.product-accessories .products .product {
  padding: 0;
  width: 100%;
  float: none;
}

/* ================================================
   NEUTRALISE BOOTSTRAP CLASSES ORPHELINES
   ================================================ */

.hidden-sm-down { /* Visible par defaut */ }
.hidden-md-up { display: none; }
.text-xs-right { text-align: right; }
.col-xs-12, .col-sm-6, .col-xl-4,
.col-xs-8, .col-xs-4, .col-sm-3, .col-sm-7, .col-md-5, .col-md-9, .col-lg-5, .col-lg-7 {
  padding: 0;
}
.row { display: contents; }
.btn-unstyle { background: none; border: none; cursor: pointer; padding: 0; }
.select-title { display: none; } /* Cache le dropdown Bootstrap du sort */
.dropdown-menu { display: none; } /* Cache le menu deroulant Bootstrap */

/* ================================================
   RESPONSIVE - Categorie sidebar
   ================================================ */

@media (max-width: 1024px) {
  .proparo-sidebar { width: 220px; }
  .product-accessories .products,
  #viewed-products-block-bottom .products,
  #crossselling .products { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .category-hero-inner { flex-direction: column; min-height: auto; padding: var(--space-8) var(--container-pad); }
  .category-hero-visual { display: none; }
  .category-hero-title { font-size: var(--text-3xl); }
  .proparo-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    width: 100%;
    max-height: none;
    border-right: none;
    padding: var(--space-8) var(--space-6);
    overflow-y: auto;
    background: white;
  }
  .proparo-sidebar.is-open { display: block; }
  .proparo-filter-btn { display: inline-flex; }
  .product-accessories .products,
  #viewed-products-block-bottom .products,
  #crossselling .products { grid-template-columns: repeat(2, 1fr); }
  .proparo-products-bar { position: static; }
}

@media (max-width: 480px) {
  .product-accessories .products,
  #viewed-products-block-bottom .products { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   PRODUCT CARD - Corrections pixel-perfect v2
   ================================================ */

.product-miniature .product-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  margin: 0 0 var(--space-1);
  line-height: var(--leading-snug);
}
.product-miniature .product-description {
  padding: var(--space-4) var(--space-4) var(--space-5);
}
.product-miniature .price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-brand);
  letter-spacing: var(--tracking-tight);
}

/* Quick view btn style */
.product-miniature .quick-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border-mid);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;
  text-decoration: none;
}
.product-miniature .quick-view:hover {
  background: var(--color-brand);
  color: white;
  border-color: var(--color-brand);
}

/* ================================================
   SIDEBAR - Design correct
   ================================================ */

.proparo-sidebar {
  background: var(--color-canvas);
  border-right: 1px solid var(--color-border);
}
.proparo-sidebar .facet-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-ink);
  margin: 0 0 var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}
.proparo-sidebar .facet { margin-bottom: var(--space-5); }
.proparo-sidebar .custom-checkbox .ps-shown-by-js { display: none; }

/* ================================================
   SORT SELECT - Style pixel-perfect
   ================================================ */

.proparo-sort-label {
  font-size: var(--text-sm);
  color: var(--color-ink-hint);
  white-space: nowrap;
  font-weight: var(--weight-medium);
}
.proparo-sort-select {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink);
  background: var(--color-canvas-warm);
  border: 1.5px solid var(--color-border-mid);
  border-radius: var(--radius-pill);
  padding: 7px 32px 7px 14px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8A84' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--duration-fast) ease;
}
.proparo-sort-select:focus { border-color: var(--color-brand); }
.proparo-sort-order {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ================================================
   STICKY ADD-TO-CART BAR - Fiche produit
   ================================================ */

#proparo-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-default);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .08);
}
#proparo-sticky-atc.visible { transform: translateY(0); }
#proparo-sticky-atc .sticky-atc-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
#proparo-sticky-atc .satc-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-canvas-warm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  flex-shrink: 0;
}
#proparo-sticky-atc .satc-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
#proparo-sticky-atc .satc-name {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#proparo-sticky-atc .satc-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-brand);
  letter-spacing: var(--tracking-tight);
  flex-shrink: 0;
}
#proparo-sticky-atc .satc-btn {
  background: var(--color-brand);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--color-brand-shadow);
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
#proparo-sticky-atc .satc-btn:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
}

/* ================================================
   PRODUCT PAGE - DESACTIVE
   Tout le style fiche produit est gere par proparo-fiche-produit.css
   ================================================ */

/* Section PRODUCT PAGE legacy supprimee — tout est dans proparo-fiche-produit.css */

/* ================================================
   CATEGORY HERO - Pixel-perfect v2
   ================================================ */

.category-hero {
  background: var(--color-canvas-warm);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.category-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: white;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.category-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-10) var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: 260px;
  position: relative;
  z-index: 1;
}
.category-hero-content { flex: none; }
.category-hero-content .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: var(--space-4);
}
.category-hero-eyebrow {
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: var(--color-brand);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-hero-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 1px;
  flex-shrink: 0;
}
.category-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--weight-extrabold);
  color: var(--color-ink);
  line-height: 1.08;
  letter-spacing: var(--tracking-tighter);
  margin: 0 0 var(--space-4);
}
.category-hero-title em { font-style: italic; color: var(--color-brand); }
.category-hero-desc {
  font-size: var(--text-lg);
  color: var(--color-ink-mute);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-5);
}
.category-hero-desc p { margin: 0; }
.category-hero-meta { display: flex; align-items: center; gap: var(--space-3); }
.category-hero-count {
  display: inline-flex;
  align-items: center;
  background: var(--color-brand);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.category-hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-4);
  flex-direction: column;
  padding-left: var(--space-8);
}
.category-hero-visual img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
}

/* ================================================
   FORMS - Inputs pixel-perfect
   ================================================ */

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
select,
textarea {
  height: var(--input-height);
  border: var(--input-border);
  border-radius: var(--input-radius);
  padding: 0 var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--color-ink);
  background: var(--color-canvas);
  outline: none;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  width: 100%;
}
textarea { height: auto; min-height: 120px; padding: var(--space-3) var(--space-4); resize: vertical; }
.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: var(--color-brand);
  box-shadow: var(--input-shadow-focus);
}
.form-control::placeholder { color: var(--color-ink-hint); }
label { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--color-ink); margin-bottom: var(--space-1); display: block; }

/* Buttons */
.btn,
.btn-primary,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-primary-height);
  padding: var(--btn-primary-pad);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--btn-primary-font-size);
  font-weight: var(--btn-primary-weight);
  cursor: pointer;
  border: none;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}
.btn-primary,
button[type="submit"] {
  background: var(--color-brand);
  color: white;
  box-shadow: var(--color-brand-shadow);
}
.btn-primary:hover,
button[type="submit"]:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
}
.btn-secondary {
  /* height/padding/font-size/font-weight hérités de .btn (ligne 2598) — variables undefined évitées */
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border-mid);
  border-radius: var(--radius-pill);
}
.btn-secondary:hover {
  border-color: var(--color-ink);
  background: var(--color-canvas-warm);
  color: var(--color-ink);
  transform: translateY(-1px);
}

/* ================================================
   PAGINATION - Style design
   ================================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-12);
  list-style: none;
  padding: 0;
}
.pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border-mid);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-ink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
  text-decoration: none;
}
.pagination .page-item .page-link:hover,
.pagination .page-item.active .page-link {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-light);
}

/* ================================================
   RESPONSIVE - Ajouts v2
   ================================================ */

@media (max-width: 1024px) {
  .category-hero-inner { grid-template-columns: 1fr; min-height: auto; gap: var(--space-8); }
  .category-hero::before { display: none; }
  .category-hero-visual { display: none; }
  #main .product-container { grid-template-columns: 1fr; gap: var(--space-8); }
  #proparo-sticky-atc .satc-name { display: none; }
}

@media (max-width: 768px) {
  .category-hero-title { font-size: var(--text-3xl); }
  .category-hero-desc { font-size: var(--text-md); }
  #proparo-sticky-atc .satc-img { display: none; }
}

/* ===================================================================
   PROPARO DESIGN SYSTEM - PIXEL-PERFECT IMPLEMENTATION
   Sources : proparo-homepage.html / proparo-fiche-produit.html /
             proparo-categorie-dentifrices.html
   =================================================================== */

/* ===== POPUP B2C/B2B ===== */

.popup-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(20,20,18,.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: proparoFadeIn .3s var(--brand-ease, cubic-bezier(.4,0,.2,1));
}
.popup-overlay.hidden { display: none; }

@keyframes proparoFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes proparoSlideUp { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes proparoFadeSlide { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: none; } }
@keyframes proparoFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes proparoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes proparoSpin { to { transform: rotate(360deg); } }

.popup-card {
  background: #FFFFFF; border-radius: 32px;
  padding: 48px 44px 44px;
  max-width: 520px; width: 100%;
  box-shadow: 0 16px 56px rgba(0,0,0,.11), 0 4px 16px rgba(0,0,0,.06);
  animation: proparoSlideUp .35s cubic-bezier(.4,0,.2,1);
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #F8F7F4; color: #6B6B66;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; line-height: 1;
  transition: background .15s; cursor: pointer; border: none;
}
.popup-close:hover { background: #F0EFE8; }
.popup-logo { margin-bottom: 4px; }
.popup-tagline { font-size: 12px; color: #9A9A94; margin-bottom: 20px; letter-spacing: .04em; }
.popup-title { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; font-weight: 700; color: #141412; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 10px; }
.popup-sub { font-size: 15px; color: #6B6B66; margin-bottom: 20px; line-height: 1.6; }
.popup-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.popup-choice {
  background: #FFFFFF; border: 1.5px solid #D0CFCA;
  border-radius: 22px; padding: 20px 16px 18px;
  text-align: left; cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
.popup-choice:hover {
  border-color: #D40012; background: #FFF0F1;
  transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
}
.popup-choice-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: #F8F7F4; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; transition: background .2s;
}
.popup-choice:hover .popup-choice-icon { background: rgba(212,0,18,.1); }
.popup-choice-title { font-size: 14px; font-weight: 700; color: #141412; margin-bottom: 3px; }
.popup-choice-desc { font-size: 12px; color: #6B6B66; line-height: 1.4; }

/* ===== PROMO BAR ===== */

.promo-bar {
  background: var(--color-ink); padding: 10px 0; text-align: center;
  font-size: 12px; font-weight: 600; color: #fff; letter-spacing: .03em;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative;
}
.promo-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.promo-bar-close {
  position: absolute; right: 20px;
  background: transparent; border: none; color: rgba(255,255,255,.7);
  font-size: 16px; cursor: pointer; line-height: 1;
}

/* ===== BADGES PRODUITS ===== */

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 9px;
  border-radius: 999px; white-space: nowrap;
}
.badge-best  { background: #D40012; color: #fff; }
.badge-new   { background: #141412; color: #fff; }
.badge-pro   { background: #1A3A5C; color: #fff; }
.badge-promo { background: #E87A2A; color: #fff; }
.badge-low   { background: #FFF6EE; color: #E87A2A; }
.badge-kit   { background: #5B2D8E; color: #fff; }

/* ===== HOMEPAGE - REASSURANCE ===== */

.reassurance {
  background: #141412;
  padding: 22px 0;
  margin: 40px 0;
  border-radius: 16px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
.reassurance-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.reass-item {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.reass-item:last-child { border-right: none; }
.reass-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.reass-title { font-size: 13px; font-weight: 600; color: #fff; }
.reass-sub { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 1px; }

/* Social follow buttons */
.social-btns-row { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.social-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-pill, 999px);
  background: var(--color-ink, #141412); color: #fff;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  border: none;
}
.social-follow-btn:hover {
  background: var(--color-brand, #D40012); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,0,18,.25);
}
.social-follow-btn svg { flex-shrink: 0; }

/* ===== HOMEPAGE - SECTIONS ===== */

.section { padding: 100px 0; }
.section-alt { background: #F8F7F4; }

.section-header { margin-bottom: 56px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; color: #D40012;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: #D40012; border-radius: 1px; flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 3vw, 44px); font-weight: 700;
  color: #141412; letter-spacing: -.025em; line-height: 1.15;
}
.section-title em { font-style: italic; color: #D40012; }
.section-desc { font-size: 16px; color: #6B6B66; line-height: 1.7; max-width: 520px; margin-top: 12px; }
.section-cta-row { display: flex; justify-content: center; margin-top: 48px; }

/* ===== HOMEPAGE - TABS ===== */

.tabs {
  display: inline-flex; background: #F0EFE8;
  border-radius: 999px; padding: 4px;
  gap: 0; margin-bottom: 48px;
}
.tab-btn {
  font-size: 13px; font-weight: 600;
  padding: 10px 22px; border-radius: 999px;
  color: #6B6B66; transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative; cursor: pointer; border: none; background: none;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.tab-btn.active { background: #FFFFFF; color: #141412; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.tab-btn.active.pro-tab { background: #D40012; color: #fff; }

/* ===== HOMEPAGE - PRODUCTS TABS (public / pro) ===== */

.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-header-row .section-desc { margin: 0; }

.products-tabs {
  display: inline-flex; background: #F0EFE8;
  border-radius: 999px; padding: 4px; gap: 4px; flex-shrink: 0;
}
.ptab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #6B6B66; background: none; border: none; cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.ptab.active { background: #D40012; color: #fff; box-shadow: 0 2px 8px rgba(212,0,18,.25); }
.ptab:not(.active):hover { background: rgba(0,0,0,.04); color: #141412; }

.ptab-pane { display: none; }
.ptab-pane.active { display: block; }

/* Pro gate - etat verrouille panneau professionnel */
.pro-gate {
  text-align: center; padding: 64px 24px;
  background: #F8F7F4; border-radius: 22px;
  border: 1.5px dashed #E8E8E2; margin-top: 32px;
}
.pro-gate-icon {
  width: 56px; height: 56px; background: #FFF0F1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: #D40012;
}
.pro-gate-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: #141412; margin-bottom: 10px;
}
.pro-gate-desc {
  font-size: 15px; color: #6B6B66;
  max-width: 440px; margin: 0 auto 28px; line-height: 1.65;
}
.pro-gate-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== HOMEPAGE - CATEGORIES GRID ===== */

.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-grid  { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-card {
  background: #FFFFFF; border: 1px solid #E8E8E2;
  border-radius: 22px; padding: 24px 16px 20px;
  text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: #D40012; transform: scaleX(0);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover { border-color: rgba(212,0,18,.3); background: #FFF0F1; transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card-cover {
  width: 56px; height: 56px; border-radius: 14px;
  background: #F8F7F4; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cat-card:hover .cat-card-cover { background: rgba(212,0,18,.1); }
.cat-card-body { }
.cat-card-name { font-size: 13px; font-weight: 700; color: #141412; margin-bottom: 4px; }
.cat-card-count { font-size: 11px; color: #9A9A94; }

/* ===== HOMEPAGE - CATEGORIES V2 (par besoin + image) ===== */

.besoin-pills {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 44px;
}
.besoin-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: #5A5A58;
  background: #F0EFE8; border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s; white-space: nowrap;
}
.besoin-pill:hover { background: #E8E7E0; color: #141412; }
.besoin-pill.active {
  background: #141412; color: #fff;
  border-color: transparent;
}

.cats-grid-v2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 24px;
}
.cat-v2 {
  display: flex; flex-direction: column;
  background: #fff; border: 1.5px solid #E8E8E2;
  border-radius: 20px; overflow: hidden; text-decoration: none;
  transition: box-shadow .28s, transform .28s, border-color .22s, opacity .35s, filter .35s;
}
.cat-v2:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-4px); border-color: rgba(212,0,18,.25);
}
.cat-v2.cat-dim {
  opacity: .28; filter: grayscale(55%); transform: scale(.97);
  pointer-events: none;
}
.cat-v2.cat-hl {
  border-color: #D40012;
  box-shadow: 0 8px 32px rgba(212,0,18,.15), 0 2px 8px rgba(212,0,18,.08);
}

.cat-v2-img {
  aspect-ratio: 3/2; position: relative; overflow: hidden;
  background: #F8F7F4; flex-shrink: 0;
}
.cat-v2-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cat-v2:hover .cat-v2-img img { transform: scale(1.06); }

.cat-v2-body {
  padding: 20px; display: flex; flex-direction: column; flex: 1;
}
.cat-v2-name {
  font-size: 17px; font-weight: 700; color: #141412;
  margin-bottom: 8px; line-height: 1.3;
}
.cat-v2-benefit {
  font-size: 13px; color: #5A5A58; line-height: 1.55;
  flex: 1; margin-bottom: 16px;
}
.cat-v2-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid #F0EFE8;
}
.cat-v2-count { font-size: 12px; color: #6B6B66; }
.cat-v2-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: #D40012;
  transition: gap .2s;
}
.cat-v2:hover .cat-v2-cta { gap: 8px; }

/* --- Pro card full-width --- */
.cat-pro-card {
  background: #0F2744;
  border-radius: 24px; overflow: hidden;
  margin-top: 20px;
}
.cat-pro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding: 52px 56px;
}
.cat-pro-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.cat-pro-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 14px;
}
.cat-pro-title em { font-style: italic; color: rgba(255,255,255,.6); }
.cat-pro-desc { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px; }
.cat-pro-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 24px; height: 48px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.35); color: #fff;
  font-size: 14px; font-weight: 600; background: rgba(255,255,255,.06);
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.13); color: #fff; }
.cat-pro-features { display: flex; flex-direction: column; gap: 24px; }
.cat-pro-feat { display: flex; align-items: flex-start; gap: 16px; }
.cat-pro-feat-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
}
.cat-pro-feat-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.cat-pro-feat-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* responsive */
@media (max-width: 1024px) {
  .cats-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .cat-pro-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}
@media (max-width: 600px) {
  .cats-grid-v2 { grid-template-columns: 1fr; gap: 16px; }
  .cat-v2-img { aspect-ratio: 16/9; }
  .cat-pro-inner { padding: 32px 24px; }
  .cat-pro-title { font-size: 24px; }
}

/* ===== HOMEPAGE - NOTRE HISTOIRE ===== */
.story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-visual {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  background: #F0EFE8; flex-shrink: 0;
}
.story-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%; display: block;
}
.story-visual-quote {
  position: absolute; bottom: 24px; left: 20px; right: 20px;
  background: rgba(248,247,244,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(232,229,222,.6);
}
.story-visual-quote-text {
  font-size: 13px; font-style: italic; color: #2E2E2C;
  line-height: 1.65;
}
.story-visual-quote-author {
  font-size: 11px; font-weight: 700; color: #6B6B66;
  margin-top: 8px; text-transform: uppercase; letter-spacing: .07em;
}
.story-body {
  font-size: 16px; color: #5A5A58; line-height: 1.8; margin-bottom: 20px;
}
.story-highlight {
  background: #F8F7F4;
  border: 1px solid #E8E5DE;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #2E2E2C;
  line-height: 1.7;
}
.story-highlight strong { color: #D40012; font-weight: 700; }
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { aspect-ratio: 16/9; }
}

/* ===== QUI SOMMES-NOUS - CHIFFRES ===== */
.numbers-section{padding:80px 0;background:#F8F7F4;}
.numbers-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:#E8E8E2;border-radius:24px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,.06);}
.number-item{background:#fff;padding:40px 32px;display:flex;flex-direction:column;align-items:center;text-align:center;transition:background .2s;}
.number-item:hover{background:#F8F7F4;}
.number-val{font-family:'Playfair Display',Georgia,serif;font-size:52px;font-weight:800;color:#D40012;letter-spacing:-.05em;line-height:1;}
.number-lbl{font-size:14px;font-weight:600;color:#141412;margin-top:10px;}
.number-sub{font-size:12px;color:#9A9A94;margin-top:4px;line-height:1.4;}
@media(max-width:768px){.numbers-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:480px){.numbers-grid{grid-template-columns:1fr;}}

/* ===== QUI SOMMES-NOUS - VALEURS ===== */
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.value-card{background:#F8F7F4;border-radius:16px;padding:32px 28px;border:1px solid transparent;transition:border-color .2s,box-shadow .2s,transform .2s;}
.value-card:hover{border-color:#D40012;box-shadow:0 8px 32px rgba(0,0,0,.08);transform:translateY(-4px);background:#fff;}
.value-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;background:#FFF0F1;}
.value-title{font-family:'Playfair Display',Georgia,serif;font-size:20px;font-weight:700;color:#141412;letter-spacing:-.01em;margin-bottom:10px;}
.value-body{font-size:14px;color:#6B6B66;line-height:1.75;}
.value-body strong{color:#141412;}
@media(max-width:768px){.values-grid{grid-template-columns:1fr;}}

/* ===== QUI SOMMES-NOUS - FONDATEUR ===== */
.founder-section{background:#141412;padding:88px 0;position:relative;overflow:hidden;}
.founder-section::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:52px 52px;}
.founder-glow{position:absolute;right:-100px;top:50%;transform:translateY(-50%);width:560px;height:560px;border-radius:50%;background:radial-gradient(circle,rgba(212,0,18,.12) 0%,transparent 65%);pointer-events:none;}
.founder-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;position:relative;z-index:1;}
.founder-portrait{border-radius:24px;aspect-ratio:4/5;overflow:hidden;border:1px solid rgba(255,255,255,.1);}
.founder-content{}
.founder-eyebrow{font-size:11px;font-weight:700;color:#D40012;letter-spacing:.12em;text-transform:uppercase;margin-bottom:16px;display:flex;align-items:center;gap:10px;}
.founder-eyebrow::before{content:'';width:20px;height:2px;background:#D40012;border-radius:1px;}
.founder-h2{font-family:'Playfair Display',Georgia,serif;font-size:clamp(32px,3.5vw,48px);font-weight:800;color:#fff;line-height:1.1;letter-spacing:-.03em;margin-bottom:8px;}
.founder-h2 em{font-style:italic;color:#D40012;}
.founder-role{font-size:14px;color:rgba(255,255,255,.4);margin-bottom:28px;letter-spacing:.02em;}
.founder-body{font-size:16px;color:rgba(255,255,255,.55);line-height:1.8;margin-bottom:28px;}
.founder-quote{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:22px 24px;margin-bottom:32px;}
.founder-quote-text{font-family:'Playfair Display',Georgia,serif;font-size:15px;font-style:italic;color:rgba(255,255,255,.75);line-height:1.65;}
.founder-quote-author{font-size:11px;color:rgba(255,255,255,.35);margin-top:10px;text-transform:uppercase;letter-spacing:.06em;}
.founder-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.founder-fact{text-align:center;padding:16px 0;background:rgba(255,255,255,.04);border-radius:12px;border:1px solid rgba(255,255,255,.06);}
.founder-fact-val{font-family:'Playfair Display',Georgia,serif;font-size:28px;font-weight:800;color:#D40012;letter-spacing:-.03em;line-height:1;}
.founder-fact-lbl{font-size:11px;color:rgba(255,255,255,.35);margin-top:6px;line-height:1.3;}
@media(max-width:1024px){.founder-inner{grid-template-columns:1fr;gap:40px;}.founder-portrait{aspect-ratio:16/9;max-width:480px;}}

/* ===== HOMEPAGE - SOCIAL ===== */
.social-section { background: #F8F7F4; padding: 80px 0; text-align: center; }
.social-eyebrow { justify-content: center; }
.social-title { text-align: center; margin-bottom: 10px; }
.social-desc { text-align: center; font-size: 15px; color: #6B6B66; margin-bottom: 40px; }
.social-ctas {
  display: flex; justify-content: center; align-items: stretch;
  gap: 16px; flex-wrap: wrap;
}
.social-cta {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 28px; border-radius: 18px;
  font-size: 15px; font-weight: 600; color: white;
  text-decoration: none; min-width: 260px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.social-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.18); color: white; }
.social-cta--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-cta--fb { background: #1877F2; }
.social-cta-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-cta-text { display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.social-cta-network { font-size: 16px; font-weight: 700; line-height: 1.2; }
.social-cta-handle { font-size: 12px; font-weight: 400; opacity: .8; margin-top: 2px; }
.social-cta-arrow { flex-shrink: 0; opacity: .7; }
@media (max-width: 640px) {
  .social-cta { min-width: 100%; justify-content: center; }
}

/* ===== HOMEPAGE - BLOG ===== */
.section-blog .blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

/* --- Home blog section --- */
.home-blog { padding: 80px 0; background: var(--color-canvas-warm); }
.home-blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.home-blog-all { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--color-brand); transition: gap .2s; }
.home-blog-all:hover { gap: 12px; }
.home-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 768px) { .home-blog-grid { grid-template-columns: 1fr; } }

/* --- Blog card --- */
.blog-card {
  background: #fff; border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

/* Image */
.blog-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: #E8E7E0;
}
.blog-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s ease; display: block;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }

/* Tag badge */
.blog-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: #D40012; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; line-height: 1.4;
}
.blog-tag--science   { background: #1A6FA8; }
.blog-tag--pro       { background: #2A7A4B; }

/* Body */
.blog-body {
  padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1;
}
.blog-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: #6B6B66; font-weight: 500; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .05em;
}
.blog-meta-dot {
  width: 3px; height: 3px; border-radius: 50%; background: #C8C8C0; flex-shrink: 0;
}
.blog-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: #1A1A18; line-height: 1.35; margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 13.5px; color: #6A6A68; line-height: 1.65; flex: 1; margin-bottom: 18px;
}
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #D40012;
  text-decoration: none; transition: gap .2s ease; margin-top: auto;
}
.blog-read:hover { gap: 10px; }
.blog-card a { text-decoration: none; color: inherit; }
.blog-card-link {
  display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit;
}

@media (max-width: 1024px) {
  .section-blog .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section-blog .blog-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== HOMEPAGE - REVIEWS ===== */

/* --- Proof summary (score + bars) --- */
.proof-top {
  display: flex; align-items: center; gap: 40px;
  background: #fff; border: 1px solid #E8E8E2; border-radius: 20px;
  padding: 32px 40px; margin-bottom: 48px;
}
.proof-score {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex-shrink: 0; padding-right: 40px; border-right: 1px solid #E8E8E2;
}
.proof-score-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px; font-weight: 800; color: #141412;
  letter-spacing: -.04em; line-height: 1;
}
.proof-score-stars { color: #F5A623; font-size: 22px; letter-spacing: 3px; margin: 10px 0 6px; }
.proof-score-n { font-size: 12px; color: #6B6B66; margin-bottom: 14px; }
.proof-score-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: #141412; color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 14px; border-radius: 10px; text-align: center; line-height: 1.5;
}
.proof-score-badge span { font-weight: 400; font-size: 9px; opacity: .7; letter-spacing: .06em; }
.proof-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.proof-bar-row { display: flex; align-items: center; gap: 12px; }
.proof-bar-lbl { font-size: 13px; color: #5A5A58; width: 38px; text-align: right; flex-shrink: 0; }
.proof-bar-track {
  flex: 1; height: 9px; background: #F0EFE8; border-radius: 6px; overflow: hidden;
}
.proof-bar-fill { height: 100%; background: #F5A623; border-radius: 6px; }
.proof-bar-n { font-size: 12px; color: #6B6B66; width: 44px; flex-shrink: 0; }

/* --- Slider wrapper --- */
.reviews-slider-wrap {
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.reviews-slider { flex: 1; overflow: hidden; }
.reviews-track {
  display: flex; gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.reviews-nav-btn {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid #E8E8E2; border-radius: 50%;
  cursor: pointer; color: #141412;
  transition: border-color .2s, background .2s, opacity .2s;
}
.reviews-nav-btn:hover { border-color: #D40012; color: #D40012; }
.reviews-nav-btn:disabled { opacity: .35; cursor: default; pointer-events: none; }
.reviews-slider-footer { text-align: center; margin-top: 40px; }

/* --- Review card --- */
.review-card {
  flex: 0 0 calc(25% - 15px);
  background: #FFFFFF; border: 1px solid #E8E8E2;
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05); transform: translateY(-3px); }
.review-stars { color: #F5A623; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  flex: 1; font-size: 15px; color: #2E2E2C; line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.review-text::before { content: '\201C'; }
.review-footer { margin-top: auto; }
.review-author { font-size: 15px; font-weight: 700; color: #141412; }
.review-meta { font-size: 12px; color: #6B6B66; margin-top: 3px; }

/* legacy selectors kept for compat */
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-text::after  { content: '\201D'; }

/* ===== HOMEPAGE - BRAND SECTION ===== */

.brand-section {
  background: #141412; padding: 100px 0;
  position: relative; overflow: hidden;
}
.brand-section::before {
  content: '';
  position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,0,18,.18) 0%, transparent 65%);
  pointer-events: none;
}
.brand-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.brand-left  { }
.brand-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brand-eyebrow {
  font-size: 11px; font-weight: 700; color: #D40012;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.brand-eyebrow::before { content: ''; width: 20px; height: 2px; background: #D40012; border-radius: 1px; }
.brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 3.5vw, 52px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 24px;
}
.brand-title em { font-style: italic; color: #D40012; }
.brand-body { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 40px; }
.brand-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.brand-stat { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
.brand-stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: 40px; font-weight: 800; color: #D40012; letter-spacing: -.04em; line-height: 1; }
.brand-stat-label { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 6px; line-height: 1.4; }
.brand-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px; padding: 20px;
  transition: background .2s, border-color .2s;
}
.brand-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); }
/* brand-card:first-child full-width supprime — les 2 brand-cards sont en 1fr 1fr */

/* ===== HOMEPAGE - SOCIAL SECTION (voir bloc HOMEPAGE - SOCIAL plus bas) ===== */

/* ===== CATEGORIE - HERO ===== */

.cat-hero { padding: 40px 0 56px; position: relative; overflow: hidden; }
.cat-hero::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%; background: #F8F7F4;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.cat-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.cat-hero-left  { }
.cat-hero-right { display: flex; flex-direction: column; gap: 16px; padding-left: 32px; }
.cat-eyebrow {
  font-size: 11px; font-weight: 700; color: #D40012;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.cat-eyebrow::before { content: ''; width: 20px; height: 2px; background: #D40012; border-radius: 1px; }
.cat-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 800;
  color: #141412; line-height: 1.08; letter-spacing: -.03em; margin-bottom: 18px;
}
.cat-h1 em { font-style: italic; color: #D40012; }
.cat-intro { font-size: 17px; color: #6B6B66; line-height: 1.75; max-width: 480px; margin-bottom: 28px; }
.cat-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.cat-stat  { }
.cat-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; font-weight: 800; color: #141412;
  letter-spacing: -.03em; line-height: 1;
}
.cat-stat-lbl { font-size: 12px; color: #9A9A94; margin-top: 3px; }
.cat-hero-feature {
  background: #FFFFFF; border: 1px solid #E8E8E2;
  border-radius: 22px; padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
}
.cat-hero-feature:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05); transform: translateY(-3px); }
.feat-icon { width: 40px; height: 40px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-icon.red   { background: #FFF0F1; }
.feat-icon.green { background: #EEF9F2; }
.feat-icon.blue  { background: #EEF3FF; }
.feat-title { font-size: 14px; font-weight: 700; color: #141412; margin-bottom: 3px; }
.feat-text  { font-size: 12px; color: #6B6B66; line-height: 1.5; }

/* ===== CATEGORIE - FILTER BAR ===== */

.filter-bar {
  background: #FFFFFF; border-top: 1px solid #E8E8E2; border-bottom: 1px solid #E8E8E2;
  padding: 14px 0; position: sticky; top: 68px; z-index: 100;
  transition: box-shadow .3s;
}
.filter-bar.stuck { box-shadow: 0 2px 10px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04); }
.filter-bar-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.filter-label { font-size: 12px; font-weight: 600; color: #6B6B66; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.filters-group { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.filter-chip {
  font-size: 13px; font-weight: 500; color: #6B6B66;
  padding: 7px 16px; border-radius: 999px;
  border: 1.5px solid #D0CFCA; background: #FFFFFF;
  transition: all .2s; white-space: nowrap; cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.filter-chip:hover  { border-color: #D40012; color: #D40012; background: #FFF0F1; }
.filter-chip.active { border-color: #D40012; color: #D40012; background: #FFF0F1; font-weight: 600; }
.filter-sep  { width: 1px; height: 24px; background: #E8E8E2; flex-shrink: 0; }
.sort-group  { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.sort-label  { font-size: 12px; color: #9A9A94; white-space: nowrap; }
.sort-select, .sort-select.js-sort-select {
  font-size: 13px; font-weight: 500; color: #141412;
  background-color: #F8F7F4; border: 1.5px solid #E8E8E2;
  border-radius: 999px; padding: 8px 34px 8px 16px; outline: none;
  cursor: pointer; font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8A84' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color .2s, box-shadow .2s;
  max-width: 220px;
}
.sort-select:hover { border-color: #D0CFCA; }
.sort-select:focus { border-color: #D40012; box-shadow: 0 0 0 3px rgba(212,0,18,.08); }
.results-count { font-size: 12px; color: #9A9A94; white-space: nowrap; margin-left: 12px; }

/* ===== PS8 FACETED SEARCH OVERRIDE ===== */
.proparo-sidebar .block-categories { margin-bottom: 24px; }
.proparo-sidebar .block-categories .category-top-menu { list-style: none; padding: 0; margin: 0; }
.proparo-sidebar .block-categories .category-top-menu a { font-size: 12px; font-weight: 700; color: #D40012; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }
.proparo-sidebar #search_filters_wrapper { display: block !important; }
.proparo-sidebar #search_filter_controls { display: none !important; }
.proparo-sidebar #search_filters > .text-uppercase { font-size: 11px; font-weight: 700; color: #6B6B66; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #E8E8E2; }
.proparo-sidebar .facet { margin-bottom: 24px; padding-bottom: 0; border: none; }
.proparo-sidebar .facet-title { font-size: 12px !important; font-weight: 700 !important; color: #141412 !important; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px !important; padding-bottom: 8px; border-bottom: 1px solid #E8E8E2; }
.proparo-sidebar .facet .title.hidden-md-up { display: none !important; }
.proparo-sidebar .facet ul { list-style: none; padding: 0; margin: 0; display: flex !important; flex-direction: column; gap: 4px; height: auto !important; }
.proparo-sidebar .facet ul.collapse { display: flex !important; height: auto !important; }
.proparo-sidebar .facet-label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #2E2E2C; padding: 5px 0; cursor: pointer; transition: color .2s; text-decoration: none; }
.proparo-sidebar .facet-label:hover { color: #D40012; }
.proparo-sidebar .facet-label .custom-checkbox { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.proparo-sidebar .facet-label input[type="checkbox"],
.proparo-sidebar .facet-label input[type="radio"] { width: 16px; height: 16px; accent-color: #D40012; cursor: pointer; flex-shrink: 0; }
.proparo-sidebar .facet-label .ps-shown-by-js { display: none; }
.proparo-sidebar .facet-label .search-link { text-decoration: none; color: inherit; font-size: 13px; }
.proparo-sidebar .facet-label .search-link:hover { color: #D40012; }
.proparo-sidebar .magnitude { font-size: 11px; color: #9A9A94; margin-left: 2px; }
.proparo-sidebar .faceted-slider { padding: 10px 5px 0; }
.proparo-sidebar .ui-slider { height: 4px; background: #E8E8E2; border: none; border-radius: 2px; }
.proparo-sidebar .ui-slider .ui-slider-range { background: #D40012; border-radius: 2px; }
.proparo-sidebar .ui-slider .ui-slider-handle { width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 2px solid #D40012; top: -6px; cursor: pointer; }
.proparo-sidebar .ui-slider .ui-slider-handle:focus { outline: none; box-shadow: 0 0 0 3px rgba(212,0,18,.15); }
.proparo-sidebar .material-icons { display: none !important; }
.proparo-sidebar .hidden-sm-down { display: block !important; }
.proparo-sidebar .hidden-md-up { display: none !important; }

/* ===== CATEGORIE - SIDEBAR ===== */

.sidebar { position: sticky; top: 128px; padding: 24px 28px 24px 16px; }
.sidebar-block { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #F0EFE8; }
.sidebar-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-title {
  font-size: 11px; font-weight: 700; color: #6B6B66;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px; padding-bottom: 0;
  border-bottom: none;
}
.sidebar-options { display: flex; flex-direction: column; gap: 2px; }
.sidebar-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; font-size: 13px; color: #2E2E2C;
  text-decoration: none; transition: all .2s;
  border-radius: 8px;
}
.sidebar-link:hover { color: #D40012; background: #FFF0F1; }
.sidebar-link.active { color: #D40012; font-weight: 600; background: #FFF0F1; }
.sidebar-link-count { font-size: 11px; color: #9A9A94; }

/* Sous-liens (Paro-implantologie, Biomateriaux dans la branche Pro) */
.sidebar-link.sidebar-sublink {
  padding-left: 28px;
  font-size: 12.5px;
  color: #5A5A57;
  font-weight: 400;
}
.sidebar-link.sidebar-sublink:hover { color: #D40012; background: #FFF0F1; }
.sidebar-link.sidebar-sublink.active { color: #D40012; font-weight: 600; background: #FFF0F1; }
.sidebar-opt { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 0; }
.sidebar-opt-check {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid #D0CFCA; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.sidebar-opt:hover .sidebar-opt-check { border-color: #D40012; }
.sidebar-opt.checked .sidebar-opt-check { background: #D40012; border-color: #D40012; }
.sidebar-opt-label { font-size: 13px; color: #2E2E2C; }
.sidebar-opt-count { font-size: 11px; color: #9A9A94; margin-left: auto; }
.price-range { margin-top: 8px; }
.price-range-vals { display: flex; justify-content: space-between; font-size: 12px; color: #6B6B66; margin-bottom: 8px; }
.price-slider { width: 100%; accent-color: #D40012; }
.sidebar-cta { background: #F8F7F4; border-radius: 16px; padding: 22px 18px; margin-top: 12px; margin-bottom: 20px; text-align: center; }
.sidebar-cta-text { font-size: 13px; color: #6B6B66; margin-bottom: 12px; line-height: 1.5; }
.sidebar-cta-btn {
  display: block; background: #141412; color: #fff;
  font-size: 13px; font-weight: 600; padding: 12px 20px;
  border-radius: 999px; transition: all .25s ease;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none; text-align: center;
}
.sidebar-cta-btn:hover { background: #D40012; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,0,18,.25); }

/* ===== PRODUCT CARDS (categorie 3 colonnes) ===== */

.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.pcard {
  background: #F8F7F4; border-radius: 22px; border: 1px solid #E8E8E2;
  overflow: hidden; position: relative;
  transition: box-shadow .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  display: flex; flex-direction: column; height: 100%;
}
.pcard-body { flex: 1; }
.pcard:hover { box-shadow: 0 16px 56px rgba(0,0,0,.11), 0 4px 16px rgba(0,0,0,.06); transform: translateY(-5px); }
.pcard:hover .pcard-img { transform: scale(1.05); }
.pcard:hover .pcard-add { transform: translateY(0); opacity: 1; }
.pcard-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.pcard-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: #FFFFFF; border: 1px solid #E8E8E2;
  display: flex; align-items: center; justify-content: center;
  color: #9A9A94; box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: background .15s, border-color .15s, color .15s;
  cursor: pointer;
}
.pcard-fav:hover { background: #FFF0F1; border-color: #D40012; color: #D40012; }
.pcard-fav.is-active { background: #D40012; border-color: #D40012; color: #fff; }
.pcard-fav.is-active:hover { background: #B5000F; border-color: #B5000F; color: #fff; }
.pcard-fav.is-active .pcard-fav-icon { fill: currentColor; stroke: currentColor; }
.pcard-img-wrap {
  background: #FFFFFF; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  padding: 12px;
}
.pcard-img-wrap > a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.pcard-img-wrap picture { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.pcard-img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.pcard-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #D40012; color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 11px; text-align: center;
  transform: translateY(100%); opacity: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: -.01em; font-family: 'DM Sans', system-ui, sans-serif;
}
.pcard-body { padding: 16px; background: #F8F7F4; }
.pcard-brand { font-size: 10px; font-weight: 700; color: #D40012; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.pcard-name  { font-size: 14px; font-weight: 500; color: #141412; line-height: 1.4; margin-bottom: 7px; }
.pcard-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 9px; }
.pcard-s     { color: #F5A623; font-size: 11px; }
.pcard-n     { font-size: 11px; color: #9A9A94; }
.pcard-price { display: flex; align-items: baseline; gap: 7px; }
.pcard-pm    { font-size: 18px; font-weight: 800; color: #D40012; letter-spacing: -.02em; }
.pcard-price-old { font-size: 12px; color: #9A9A94; text-decoration: line-through; }
.pcard-price-ttc { font-size: 10px; color: #9A9A94; }

/* ===== FICHE PRODUIT (v1 hardcoded) -- NEUTRALISE -- voir proparo-product.css ===== */

/* ================================================
   CONFETTI + ANIMATIONS CONFIRMATION
   ================================================ */
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: .9; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.confetti-wrap { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 300; overflow: hidden; }

/* Check circle animation */
@keyframes checkCircleScale { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes checkMarkPop { from { transform: scale(.2); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.check-circle-wrap { width: 100px; height: 100px; margin: 0 auto 28px; position: relative; }
.check-circle-ring { position: absolute; inset: 0; border: 3px solid var(--color-success); border-radius: 50%; animation: checkCircleScale .6s var(--ease-default) forwards; }
.check-circle-bg { position: absolute; inset: 0; background: var(--color-success-bg); border-radius: 50%; }
.check-mark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--color-success); font-size: 48px; animation: checkMarkPop .5s var(--ease-spring) .3s both; }

/* ================================================
   POPUP B2C/B2B
   ================================================ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(20,20,18,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .3s var(--ease-default);
}
.popup-overlay.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-card {
  background: var(--color-canvas);
  border-radius: var(--radius-xl);
  padding: 48px 44px 44px;
  max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: slideUp .35s var(--ease-default);
  text-align: center;
  position: relative;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-canvas-warm); color: var(--color-ink-mute);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; line-height: 1;
  cursor: pointer; transition: background .15s; border: none;
}
.popup-close:hover { background: var(--color-canvas-deep); }
.popup-logo { margin-bottom: 6px; }
.popup-logo .proparo-logo { width: 140px; height: 34px; }
.popup-tagline { font-size: 11px; color: var(--color-ink-hint); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; }
.popup-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--color-ink); letter-spacing: -.025em; margin-bottom: 12px; }
.popup-sub { font-size: 14px; color: var(--color-ink-mute); line-height: 1.65; margin-bottom: 20px; }
.popup-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.popup-choice {
  background: var(--color-canvas);
  border: 1.5px solid var(--color-border-mid);
  border-radius: var(--radius-lg);
  padding: 22px 16px 20px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.popup-choice:hover { border-color: var(--color-brand); background: var(--color-brand-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.popup-choice-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.popup-choice-icon.blue { background: var(--color-pro-light); }
.popup-choice-icon.red { background: var(--color-brand-light); }
.popup-choice-title { font-size: 15px; font-weight: 700; color: var(--color-ink); }
.popup-choice-desc { font-size: 12px; color: var(--color-ink-mute); line-height: 1.45; }

/* ================================================
   PROMO BAR
   ================================================ */
.promo-bar {
  background: var(--color-ink);
  color: #fff;
  text-align: center;
  padding: 10px 48px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.promo-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.promo-bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 20px; cursor: pointer; padding: 4px; line-height: 1;
  transition: color .15s;
}
.promo-bar-close:hover { color: #fff; }

/* ================================================
   BADGES PRODUITS
   ================================================ */
.badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.badge-best  { background: var(--color-brand); color: #fff; }
.badge-new   { background: var(--color-ink); color: #fff; }
.badge-pro   { background: var(--color-pro); color: #fff; }
.badge-promo { background: var(--color-alert); color: #fff; }
.badge-low   { background: var(--color-stars); color: var(--color-ink); }
.badge-kit   { background: #1A3A5C; color: #fff; }

/* ================================================
   HERO BADGES FLOTTANTS (homepage)
   ================================================ */
.hero-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-badge-left { left: -16px; bottom: 18%; animation-delay: -2s; }
.hero-badge-top  { right: -16px; top: 22%; animation-delay: -4s; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-badge-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon.green { background: var(--color-success-bg); color: var(--color-success); }
.hero-badge-icon.red   { background: var(--color-brand-light); color: var(--color-brand); }
.hero-badge-title { font-size: 13px; font-weight: 700; color: var(--color-ink); }
.hero-badge-sub   { font-size: 11px; color: var(--color-ink-hint); margin-top: 1px; }

/* ===== HERO PANEL - VISUAL WRAP & IMAGE FRAME ===== */
.hero-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-img-frame {
  position: relative;
  width: 76%;
}
.hero-img-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--sh-lg);
  display: block;
}
.hero-panel .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO PROOF CRO (sans avatars) ===== */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: var(--space-2);
}
.hero-proof-score-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-proof-score {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-proof-stars {
  color: #F5A623;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.hero-proof-label {
  font-size: 11px;
  color: var(--color-ink-mute);
  margin-top: 3px;
}
.hero-proof-sep {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}
.hero-proof-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-ink-mute);
}

/* ================================================
   HOMEPAGE - REASSURANCE BAR
   ================================================ */
.reassurance {
  background: var(--color-ink);
  padding: 20px 0;
}
.reassurance-grid, .reassurance-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.reass-item, .reassurance-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,.1);
  padding-right: 20px;
}
.reass-item:last-child, .reassurance-item:last-child { border-right: none; padding-right: 0; }
.reass-icon { color: var(--color-brand); flex-shrink: 0; }
.reass-title, .reassurance-item span { font-size: 13px; font-weight: 600; color: #fff; }
.reass-sub { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 1px; }

/* ================================================
   HOMEPAGE - CATEGORIES GRID
   ================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
  margin-top: var(--space-10);
}
.cat-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow .3s var(--ease-default), transform .3s var(--ease-default);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cat-card-img .cat-card-cover { aspect-ratio: 3/4; overflow: hidden; background: var(--color-canvas-warm); }
.cat-card-img .cat-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-default); }
.cat-card:hover .cat-card-cover img { transform: scale(1.05); }
.cat-card-body { padding: 16px; background: var(--color-canvas); }
.cat-card-name { font-size: 14px; font-weight: 700; color: var(--color-ink); margin-bottom: 4px; }
.cat-card-count { font-size: 12px; color: var(--color-ink-hint); }

/* ================================================
   HOMEPAGE - REVIEWS
   ================================================ */
.review-card {
  flex: 0 0 calc(25% - 15px);
  background: var(--color-canvas);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: 24px;
  display: flex; flex-direction: column;
  transition: box-shadow .3s var(--ease-default), transform .3s var(--ease-default);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--color-stars); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { flex: 1; font-size: 15px; color: var(--color-ink-secondary, #2E2E2C); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-footer { margin-top: auto; }
.review-author { font-size: 15px; font-weight: 700; color: var(--color-ink); }
.review-meta { font-size: 12px; color: var(--color-ink-mute); margin-top: 3px; }
@media (max-width: 1024px) {
  .review-card { flex: 0 0 calc(33.333% - 14px); }
  .proof-top { gap: 28px; padding: 24px 28px; }
}
@media (max-width: 768px) {
  .review-card { flex: 0 0 calc(50% - 10px); }
  .proof-top { flex-direction: column; align-items: stretch; gap: 24px; }
  .proof-score { border-right: none; padding-right: 0; border-bottom: 1px solid #E8E8E2; padding-bottom: 24px; flex-direction: row; align-items: center; gap: 20px; text-align: left; }
  .proof-score-num { font-size: 48px; }
}
@media (max-width: 480px) {
  .review-card { flex: 0 0 calc(85% - 10px); }
  .reviews-nav-btn { width: 36px; height: 36px; }
}

/* ================================================
   HOMEPAGE - BRAND SECTION
   ================================================ */
.brand-section { overflow: hidden; }
.brand-left .section-eyebrow { color: rgba(255,255,255,.5); }
.brand-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin-bottom: 40px; }
.brand-stat-num { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 800; color: var(--color-brand); }
.brand-stat-label { font-size: var(--text-xs); color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
@media (max-width: 1024px) {
  .brand-inner { grid-template-columns: 1fr; gap: 48px; }
  .brand-right { order: -1; }
}
@media (max-width: 600px) {
  .brand-right { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-stats { gap: 16px 20px; }
  .brand-stat-num { font-size: var(--text-2xl); }
}

/* ================================================
   HOMEPAGE - SOCIAL (voir bloc HOMEPAGE - SOCIAL ligne ~3105)
   ================================================ */

/* ================================================
   TABS (homepage gammes)
   ================================================ */
.tabs { display: flex; gap: 6px; background: var(--color-canvas-warm); border-radius: var(--radius-pill); padding: 4px; width: fit-content; margin-bottom: var(--space-8); }
.tab-btn { padding: 8px 20px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--color-ink-mute); cursor: pointer; border: none; background: none; transition: all .2s; }
.tab-btn:hover { color: var(--color-ink); }
.tab-btn.active { background: var(--color-canvas); color: var(--color-ink); box-shadow: var(--shadow-xs); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ================================================
   CATEGORY HERO (2-col design)
   ================================================ */
.cat-hero {
  position: relative;
  overflow: hidden;
  padding: 16px 0 48px;
}
.cat-hero::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: var(--color-canvas-warm);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.cat-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-16); align-items: center;
  position: relative; z-index: 1;
}
.cat-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--color-brand);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.cat-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--color-brand); border-radius: 1px; }
.cat-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800; color: var(--color-ink);
  line-height: 1.08; letter-spacing: -.03em;
  margin-bottom: 18px;
}
.cat-h1 em { font-style: italic; color: var(--color-brand); }
.cat-intro { font-size: 17px; color: var(--color-ink-mute); line-height: 1.75; max-width: 480px; margin-bottom: 28px; }
.cat-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.cat-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--color-ink); letter-spacing: -.03em; line-height: 1; }
.cat-stat-lbl { font-size: 12px; color: var(--color-ink-hint); margin-top: 3px; }
.cat-hero-right { display: flex; flex-direction: column; gap: 16px; padding-left: 32px; }
.cat-hero-feature {
  background: var(--color-canvas);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s, transform .25s;
}
.cat-hero-feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-icon { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-icon.red   { background: var(--color-brand-light); color: var(--color-brand); }
.feat-icon.green { background: var(--color-success-bg); color: var(--color-success); }
.feat-icon.blue  { background: var(--color-pro-light); color: var(--color-pro); }
.feat-title { font-size: 14px; font-weight: 700; color: var(--color-ink); margin-bottom: 3px; }
.feat-text  { font-size: 12px; color: var(--color-ink-mute); line-height: 1.5; }

/* ================================================
   FILTER BAR CATALOGUE
   ================================================ */
.filter-bar {
  background: var(--color-canvas);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  position: sticky; top: 68px; z-index: 100;
  transition: box-shadow .3s;
}
.filter-bar.stuck { box-shadow: var(--shadow-sm); }
.filter-bar-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.filter-label { font-size: 12px; font-weight: 600; color: var(--color-ink-mute); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.filters-group { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.filter-chip {
  font-size: 13px; font-weight: 500; color: var(--color-ink-mute);
  padding: 7px 16px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border-mid);
  background: var(--color-canvas);
  transition: all .2s; white-space: nowrap; cursor: pointer;
}
.filter-chip:hover { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-brand-light); }
.filter-chip.active { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-brand-light); font-weight: 600; }
.filter-sep { width: 1px; height: 24px; background: var(--color-border); flex-shrink: 0; }
.sort-group { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.sort-label { font-size: 12px; color: var(--color-ink-hint); white-space: nowrap; }
.proparo-sort-select, .sort-select {
  font-size: 13px; font-weight: 500; color: var(--color-ink);
  background: var(--color-canvas-warm);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 32px 7px 14px;
  outline: none; cursor: pointer;
  font-family: var(--font-body);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8A84' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.results-count { font-size: 12px; color: var(--color-ink-hint); white-space: nowrap; margin-left: 12px; }

/* ================================================
   SIDEBAR CATALOGUE
   ================================================ */
.sidebar, .proparo-sidebar {
  position: sticky; top: 128px;
}
.sidebar-block { margin-bottom: 20px; }
.sidebar-block:last-child { margin-bottom: 0; }
.sidebar-title { font-size: 12px; font-weight: 700; color: var(--color-ink); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--color-border); }
.sidebar-options { display: flex; flex-direction: column; gap: 6px; }
.sidebar-opt { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 0; }
.sidebar-opt-check { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid var(--color-border-mid); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color .15s, background .15s; }
.sidebar-opt:hover .sidebar-opt-check { border-color: var(--color-brand); }
.sidebar-opt.checked .sidebar-opt-check { background: var(--color-brand); border-color: var(--color-brand); }
.sidebar-opt-label { font-size: 13px; color: var(--color-ink-mid); flex: 1; }
.sidebar-opt-count { font-size: 11px; color: var(--color-ink-hint); }
.price-range { margin-top: 8px; }
.price-range-vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--color-ink-mute); margin-bottom: 8px; }
.price-slider { width: 100%; accent-color: var(--color-brand); }
.sidebar-cta { background: var(--color-canvas-warm); border-radius: var(--radius-lg); padding: 18px; margin-top: 8px; margin-bottom: 20px; text-align: center; }
.sidebar-cta-text { font-size: 13px; color: var(--color-ink-mute); margin-bottom: 12px; line-height: 1.5; }
.sidebar-cta-btn { display: block; background: var(--color-ink); color: #fff; font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: var(--radius-pill); transition: background .15s; text-decoration: none; }
.sidebar-cta-btn:hover { background: var(--color-brand); }
.sidebar-cta-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--color-ink); margin-bottom: 8px; }

/* ================================================
   CATALOGUE LAYOUT - 2 colonnes sidebar + grille
   ================================================ */
.catalogue-wrap { padding: 48px 0 80px; }
.catalogue-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.products-grid-wrap { min-width: 0; }
.pagination-wrap { margin-top: 48px; }

/* Filter chip supprimer (croix) */
.filter-chip { font-size: 13px; font-weight: 500; color: var(--color-ink-mute); padding: 7px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--color-border-mid); background: var(--color-canvas); transition: all .2s; white-space: nowrap; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.filter-chip:hover { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-brand-light); }
.filter-chip.active { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-brand-light); font-weight: 600; }
.filter-chip-del { font-size: 15px; line-height: 1; opacity: .7; }

/* Responsive catalogue */
@media (max-width: 1024px) {
  .catalogue-layout { grid-template-columns: 220px 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .catalogue-layout { grid-template-columns: 1fr; gap: 0; }
  .sidebar { position: static; display: none; }
  .sidebar.is-open { display: block; margin-bottom: 24px; }
  .catalogue-wrap { padding: 24px 0 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   PRODUCT CARDS (pcard - design catalogue)
   ================================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.products-grid.list { grid-template-columns: 1fr; }
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); } }
.pcard {
  background: var(--color-canvas-warm);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  overflow: hidden; position: relative;
  transition: box-shadow .3s var(--ease-default), transform .3s var(--ease-default);
  cursor: pointer;
  display: flex; flex-direction: column; height: 100%;
}
.pcard-body { flex: 1; }
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pcard:hover .pcard-img { transform: scale(1.05); }
.pcard:hover .pcard-add { transform: translateY(0); opacity: 1; }
.pcard-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.pcard-fav { position: absolute; top: 12px; right: 12px; z-index: 2; width: 32px; height: 32px; border-radius: 50%; background: var(--color-canvas); border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-ink-hint); box-shadow: var(--shadow-xs); transition: all .15s; cursor: pointer; }
.pcard-fav:hover { background: var(--color-brand-light); border-color: var(--color-brand); color: var(--color-brand); }
.pcard-img-wrap { background: #FFFFFF; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; padding: 12px; }
.pcard-img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease-default); }
.pcard-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--color-brand); color: #fff; font-size: 12px; font-weight: 700; padding: 11px; text-align: center; transform: translateY(100%); opacity: 0; transition: transform .3s var(--ease-default), opacity .3s; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: none; width: 100%; }
.pcard-body { padding: 16px; background: #F8F7F4; }
.pcard-brand { font-size: 10px; font-weight: 700; color: var(--color-brand); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.pcard-name { font-size: 14px; font-weight: 500; color: var(--color-ink); line-height: 1.4; margin-bottom: 4px; }
.pcard-subtitle { font-size: 13px; font-weight: 400; color: var(--color-ink-hint, #76746e); line-height: 1.3; margin-bottom: 8px; letter-spacing: 0.01em; }
.pcard-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 9px; }
.pcard-s { color: var(--color-stars); font-size: 11px; }
.pcard-n { font-size: 11px; color: var(--color-ink-hint); }
.pcard-price { display: flex; align-items: baseline; gap: 7px; }
.pcard-pm { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--color-brand); letter-spacing: -.02em; }
.pcard-price-old, .pcard-po { font-size: 12px; color: var(--color-ink-hint); text-decoration: line-through; }
.pcard-price-ttc, .pcard-ttc { font-size: 10px; color: var(--color-ink-hint); }

/* ================================================
   PRODUCTS HEADER + VIEW TOGGLE
   ================================================ */
.products-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.products-count { font-size: 14px; color: var(--color-ink-mute); }
.products-count strong { color: var(--color-ink); font-weight: 700; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 32px; height: 32px; border-radius: var(--r-sm); border: 1.5px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-ink-hint); transition: border-color .15s, color .15s, background .15s; cursor: pointer; background: none; }
.view-btn:hover, .view-btn.active { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-brand-light); }

/* ================================================
   LIST VIEW
   ================================================ */
.products-grid.list .pcard { display: grid; grid-template-columns: 200px 1fr; }
.products-grid.list .pcard-img-wrap { aspect-ratio: auto; height: 100%; min-height: 160px; }
.products-grid.list .pcard-body { padding: 20px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.products-grid.list .pcard-name { font-size: 16px; margin-bottom: 8px; }
.products-grid.list .pcard-desc { font-size: 13px; color: var(--color-ink-mute); line-height: 1.6; margin-bottom: 12px; }
.products-grid.list .pcard-add { position: static; transform: none; opacity: 1; background: transparent; color: var(--color-brand); font-size: 13px; padding: 0; justify-content: flex-start; gap: 6px; }
.products-grid.list .pcard:hover { transform: translateY(-3px); }

/* ================================================
   PAGINATION (page-btn)
   ================================================ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: var(--r-md); border: 1.5px solid var(--color-border-mid); font-size: 14px; font-weight: 500; color: var(--color-ink-mid); display: flex; align-items: center; justify-content: center; transition: all .15s; cursor: pointer; background: none; }
.page-btn:hover { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-brand-light); }
.page-btn.active { background: var(--color-brand); border-color: var(--color-brand); color: #fff; font-weight: 700; }
.page-btn.nav { color: var(--color-ink-hint); }

/* ================================================
   BREADCRUMB (design exact)
   ================================================ */
.bc-wrap { padding-top: 16px; padding-bottom: 4px; }
.bc { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--color-ink-hint); }
.bc a { color: var(--color-ink-hint); transition: color .15s; }
.bc a:hover { color: var(--color-brand); }
.bc-cur { color: var(--color-ink-mid); font-weight: 500; }

/* Spinner pour bouton ATC product card */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.pcard-add.is-loading { pointer-events: none; opacity: .85; }
.pcard-add.is-loading svg { animation: spin 1s linear infinite; }

/* Logo Proparo - masque SVG teintable via color CSS */
.proparo-logo {
  display: inline-block;
  width: 180px;
  height: 40px;
  color: #e30613;
  background-color: currentColor;
  -webkit-mask: url('/img/proparo-logo.svg') no-repeat center / contain;
  mask: url('/img/proparo-logo.svg') no-repeat center / contain;
  vertical-align: middle;
}
.proparo-logo--sm { width: 120px; height: 28px; }
.proparo-logo--lg { width: 240px; height: 56px; }
.proparo-logo--white { color: #fff; }
.proparo-logo--brand { color: #e30613; }
.proparo-logo--ink { color: #141412; }

/* ================================================
   CROSS-SELLING SUR PANIER (pm_crosssellingoncart)
   Aligne le bloc sur le style des pages catalogue
   ================================================ */

div#csoc-container {
  max-width: none;
  margin: var(--space-8) 0 0;
  padding: var(--space-6) 0 0;
  border: 0;
  border-top: 1px solid var(--color-border);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
div#csoc-container .card-block {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  margin-bottom: var(--space-5);
}
div#csoc-container .step-title,
div#csoc-container h1.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-ink);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
div#csoc-container #PM_CSOC,
div#csoc-container #PM_MC_CSOC {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: auto !important;
}
/* Neutralise le wrapping Owl Carousel pour garder la grille CSS */
div#csoc-container .pm-csoc-owl-wrapper-outer,
div#csoc-container .pm-csoc-owl-wrapper,
div#csoc-container .pm-csoc-owl-item {
  display: contents !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  float: none !important;
  position: static !important;
}
div#csoc-container .pm-csoc-owl-pagination,
div#csoc-container .pm-csoc-owl-controls { display: none !important; }
div#csoc-container #PM_CSOC::before,
div#csoc-container #PM_CSOC::after,
div#csoc-container #PM_MC_CSOC::before,
div#csoc-container #PM_MC_CSOC::after { content: none; display: none; }
div#csoc-container .product-miniature {
  width: 100%;
  max-width: 100%;
  padding: 0;
  float: none;
  margin: 0;
  position: relative;
  height: 100%;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--duration-base) ease, transform var(--duration-base) ease;
}
div#csoc-container .product-miniature:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
div#csoc-container .product-miniature .thumbnail-container,
div#csoc-container .product-miniature .thumbnail-container.with-button {
  aspect-ratio: auto;
  height: auto;
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  transition: none;
  transform: none !important;
  box-shadow: none !important;
}
div#csoc-container .product-miniature .product-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  flex-shrink: 0;
  background: var(--color-canvas-warm);
  overflow: hidden;
  padding: var(--space-4);
  margin: 0;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
}
div#csoc-container .product-miniature .product-thumbnail img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0;
  border: 0;
  margin: 0;
  display: block;
  transition: transform var(--duration-base) var(--ease-default);
}
div#csoc-container .product-miniature:hover .product-thumbnail img {
  transform: scale(1.04);
}
div#csoc-container .product-miniature .product-description {
  padding: var(--space-4) var(--space-4) var(--space-5);
  height: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
  background: white;
  position: relative;
}
div#csoc-container .product-miniature .product-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
  line-height: var(--leading-snug);
}
div#csoc-container .product-miniature .product-title a { color: inherit; text-decoration: none; }
div#csoc-container .product-miniature .product-title a:hover { color: var(--color-brand); }
div#csoc-container .product-miniature .product-price-and-shipping {
  text-align: left;
  margin: 0;
  padding: 0;
}
div#csoc-container .product-miniature .price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-brand);
}
div#csoc-container .product-miniature .button_display {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--duration-base) var(--ease-default), opacity var(--duration-base) var(--ease-default);
  z-index: 3;
  pointer-events: none;
}
div#csoc-container .product-miniature:hover .button_display {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
div#csoc-container .product-miniature .button_display form { margin: 0; padding: 0; }
div#csoc-container .product-miniature .button_display .btn,
div#csoc-container .product-miniature .button_display button.add-to-cart {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  padding: 8px var(--space-4);
  border: 0;
  border-radius: 0;
  background: var(--color-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  transition: background var(--duration-fast) ease;
}
div#csoc-container .product-miniature .button_display .btn:hover,
div#csoc-container .product-miniature .button_display button.add-to-cart:hover {
  background: var(--color-ink);
  color: white;
}
div#csoc-container .product-miniature .button_display .material-icons {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 0 !important;
  line-height: 1;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>') no-repeat center / contain;
}
div#csoc-container .product-miniature .button_display .material-icons::before {
  content: none !important;
}

/* Icone loyalty (module totloyaltyadvanced) - remplace la police Material Icons absente */
p:has(> i.material-icons.md-36) {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}
p:has(> i.material-icons.md-36) > span { flex: 1; min-width: 0; }

.material-icons.md-36 {
  display: inline-block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 0 !important;
  line-height: 1;
  vertical-align: middle;
  margin: 0;
  background: var(--color-brand);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0l.44.44.44-.44c.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83z"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0l.44.44.44-.44c.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83z"/></svg>') no-repeat center / contain;
}
div#csoc-container .product-miniature .highlighted-informations { display: none; }
div#csoc-container .product-miniature .product-flags {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
div#csoc-container .product-miniature .product-flags li {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: white;
}

@media (max-width: 1024px) {
  div#csoc-container #PM_CSOC,
  div#csoc-container #PM_MC_CSOC { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  div#csoc-container #PM_CSOC,
  div#csoc-container #PM_MC_CSOC { grid-template-columns: 1fr; }
}

/* ================================================
   MON COMPTE - sidebar: lien wishlist + hook output
   ================================================ */
.sidebar-nav .nav-item-link,
.sidebar-nav a.nav-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.sidebar-nav .nav-item-link:hover {
  background: var(--color-canvas-warm);
  color: var(--color-brand);
}

/* Hook displayCustomerAccount (modules tiers) - masque le texte brut
   qui apparait en bas du panel "Mes commandes" */
.main-content > .account-section #section-orders .panel + *:not(.panel):not(.account-section),
.account-section .panel + ul,
.account-section .panel + div > a,
.account-section .panel + p,
.account-section .panel ~ a { display: none; }

/* ================================================
   HISTORIQUE COMMANDES - customer/history.tpl
   ================================================ */
#content.page-content h6 {
  font-size: var(--text-sm);
  color: var(--color-ink-subtle);
  font-weight: var(--weight-regular);
  margin-bottom: var(--space-5);
}
.order-history-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.order-history-table thead th {
  background: var(--color-canvas-warm);
  text-align: left;
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-ink-subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--color-border);
}
.order-history-table tbody td,
.order-history-table tbody th {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-ink);
  vertical-align: middle;
  text-align: left;
  font-weight: var(--weight-regular);
}
.order-history-table tbody tr:last-child td,
.order-history-table tbody tr:last-child th { border-bottom: 0; }
.order-history-table tbody tr:hover { background: var(--color-canvas-warm); }
.order-history-table tbody th[scope="row"] {
  font-family: var(--font-mono, monospace);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  letter-spacing: .04em;
}

/* Status pill - neutralise le background inline des couleurs PS natives
   Style unifie vert pastel (cohérent listing + detail commande) */
.order-history-table .order-status-label,
.orders .order-status-label {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(34, 139, 87, 0.10) !important;
  color: #1f7a4d !important;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}
/* Variante dark : on garde le meme vert (les 2 versions PS bright/dark identiques) */
.order-history-table .order-status-label.dark,
.orders .order-status-label.dark {
  background: rgba(34, 139, 87, 0.10) !important;
  color: #1f7a4d !important;
}

/* Actions détails / reorder - boutons propres */
.order-history-table .order-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.order-history-table .view-order-details-link,
.order-history-table .reorder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-brand);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: all var(--duration-fast) ease;
  white-space: nowrap;
}
.order-history-table .view-order-details-link {
  border-color: var(--color-brand);
}
.order-history-table .view-order-details-link:hover,
.order-history-table .view-order-details-link:hover * {
  background: var(--color-brand);
  color: #fff !important;
  text-decoration: none;
}
.order-history-table .reorder-link {
  color: var(--color-ink-subtle);
  border-color: var(--color-border);
}
.order-history-table .reorder-link:hover {
  border-color: var(--color-ink);
  color: var(--color-ink);
}

/* Icone facture */
.order-history-table td a svg {
  color: var(--color-ink-subtle);
  transition: color var(--duration-fast) ease;
}
.order-history-table td a:hover svg {
  color: var(--color-brand);
}

/* Masque la version mobile sur desktop et vice-versa */
@media (min-width: 769px) {
  .order-history-table.desktop-only { display: table; }
  .orders.mobile-only,
  .history-lines.mobile-only,
  .shipping-lines.mobile-only { display: none !important; }
}
@media (max-width: 768px) {
  .order-history-table.desktop-only { display: none; }
  .orders.mobile-only,
  .history-lines.mobile-only,
  .shipping-lines.mobile-only { display: block; }
  .order-history-table .order-actions { flex-direction: row; }
}

/* Titre h1 page historique */
.page-content .h1,
.page-header h1,
body#history .page-header,
body#history #main > .page-header { margin-bottom: var(--space-6); }

/* ================================================
   DETAIL COMMANDE - customer/order-detail.tpl
   ================================================ */

#order-infos { display: grid; gap: var(--space-5); margin-bottom: var(--space-6); }

.order-info-block {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.order-info-block + .order-info-block { margin-top: 0; }

.order-info-block .order-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.order-info-block .order-info-header strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.order-info-block .button-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: white !important;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  border: 0;
  transition: background var(--duration-fast) ease;
}
.order-info-block .button-primary:hover { background: var(--color-ink); }

.order-info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.order-info-block ul li {
  font-size: var(--text-sm);
  color: var(--color-ink);
  padding: 0;
  line-height: 1.6;
}
.order-info-block ul li::before { display: none; content: none; }
.order-info-block ul li strong {
  display: inline-block;
  min-width: 150px;
  color: var(--color-ink-subtle);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-right: 8px;
}
.order-info-block ul li a {
  color: var(--color-brand);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}
.order-info-block ul li a:hover { text-decoration: underline; }

#order-history { margin-bottom: var(--space-6); }
#order-history h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-ink);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}
/* Supprime le rendu en double sous la table history (ul avec date+state) */
#order-history .history-lines:not(.mobile-only) { display: none; }
#order-history > div:not(.mobile-only):not(.history-lines):not(.order-info-block) {
  display: none;
}

.addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
@media (max-width: 768px) { .addresses { grid-template-columns: 1fr; } }

.addresses .address-col .order-info-block h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  margin: 0 0 var(--space-3);
}
.addresses .address-col address {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-ink);
  line-height: 1.7;
}

/* Titres de section sur la page detail */
.page-content h3,
.page-content h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

/* Tableau lignes produits (order-detail-no-return) */
#order-products {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-5);
}
#order-products thead th {
  background: var(--color-canvas-warm);
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-ink-subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
#order-products tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  vertical-align: middle;
}
#order-products tbody tr:last-child td { border-bottom: 0; }
#order-products .product-name a {
  color: var(--color-ink);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}
#order-products .product-name a:hover { color: var(--color-brand); }

/* Section totaux */
#order-products tfoot td,
.order-totals td {
  padding: 10px 16px;
  font-size: var(--text-sm);
}
#order-products tfoot tr:last-child td,
.order-totals tr:last-child td {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-brand);
  border-top: 1px solid var(--color-border);
}

/* Messages commande */
#order-messages,
.order-messages-box {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  margin-top: var(--space-5);
}

/* ================================================
   WISHLIST PAGES - lists + products-list
   (module blockwishlist - Vue.js)
   ================================================ */

/* Layout page : largeur compte client */
#main .wishlist-container,
#main .wishlist-products-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Conteneur principal wishlist (liste des wishlists) */
.wishlist-container {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.wishlist-container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

/* Titre dynamique (data-title="My wishlists") */
.wishlist-container-header h1,
.wishlist-container-header .h1,
.wishlist-container-header p,
.wishlist-container-header span {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-ink);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Bouton "Créer une liste" */
.wishlist-container-header .btn,
.wishlist-container-header button,
.wishlist-container-header a.btn-primary {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: white !important;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background var(--duration-fast) ease;
}
.wishlist-container-header .btn:hover { background: var(--color-ink); }

/* Liste des wishlists */
.wishlist-list-container { margin: 0; padding: 0; }
.wishlist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.wishlist-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: white;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  cursor: pointer;
}
.wishlist-list-item:hover {
  border-color: var(--color-brand);
  box-shadow: 0 4px 12px rgba(212,0,18,.08);
}
.wishlist-list-item-title,
.wishlist-list-item-link {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  text-decoration: none;
  flex: 1;
  min-width: 0;
}
.wishlist-list-item-link:hover { color: var(--color-brand); }
.wishlist-list-item-right,
.wishlist-list-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink-subtle);
  font-size: var(--text-sm);
}
.wishlist-list-item-actions .dropdown-toggle,
.wishlist-list-item-actions button {
  background: transparent;
  border: 0;
  color: var(--color-ink-subtle);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) ease;
}
.wishlist-list-item-actions button:hover { background: var(--color-canvas-warm); color: var(--color-brand); }
.wishlist-list-empty {
  padding: var(--space-6);
  text-align: center;
  color: var(--color-ink-subtle);
  font-size: var(--text-sm);
  background: var(--color-canvas-warm);
  border-radius: var(--radius-lg);
}

/* Ligne onglets/tabs (liste des wishlists sous forme d'onglets dans certaines versions) */
.wishlist-container .nav-tabs,
.wishlist-container ul[role="tablist"] {
  display: flex;
  gap: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  margin: 0 0 var(--space-5);
  padding: 0;
  list-style: none;
}
.wishlist-container .nav-tabs .nav-link,
.wishlist-container ul[role="tablist"] a,
.wishlist-container ul[role="tablist"] button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-ink-subtle);
  text-decoration: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 1px solid transparent;
  border-bottom: 0;
  background: transparent;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}
.wishlist-container .nav-tabs .nav-link.active,
.wishlist-container ul[role="tablist"] a.active,
.wishlist-container ul[role="tablist"] button.active {
  color: var(--color-brand);
  background: white;
  border-color: var(--color-border);
  border-bottom-color: white;
  margin-bottom: -1px;
}
.wishlist-container .nav-tabs .nav-link:hover {
  color: var(--color-brand);
  background: var(--color-canvas-warm);
}

/* === Page produits d'une wishlist === */
.wishlist-products-container {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.wishlist-products-container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.wishlist-products-container-header h1,
.wishlist-products-container-header p {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.wishlist-products-count {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  color: var(--color-ink-subtle);
  margin-left: 8px;
}

/* Liste produits en grille */
.wishlist-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1024px) { .wishlist-products-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wishlist-products-list { grid-template-columns: 1fr; } }
.wishlist-products-item { margin: 0; padding: 0; }

/* Carte produit dans la wishlist */
.wishlist-product {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--duration-fast) ease, transform var(--duration-fast) ease;
  position: relative;
}
.wishlist-product:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.wishlist-product-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.wishlist-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-canvas-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  position: relative;
}
.wishlist-product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.wishlist-product-image img.wishlist-product-unavailable { opacity: 0.5; }

.wishlist-product-right {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.wishlist-product-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  margin: 0;
  line-height: var(--leading-snug);
}
.wishlist-product-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-brand);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.wishlist-product-price-promo {
  font-size: var(--text-sm);
  color: var(--color-ink-subtle);
  text-decoration: line-through;
  font-weight: var(--weight-regular);
}
.wishlist-product-combinations {
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--space-2);
}
.wishlist-product-combinations-text { margin: 0; }
.wishlist-product-combinations a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  align-items: center;
  justify-content: center;
  color: var(--color-ink-subtle);
  transition: all var(--duration-fast) ease;
}
.wishlist-product-combinations a:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.wishlist-product-availability {
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 0;
}
.wishlist-product-availability-responsive { display: none; }

/* Bas de carte : bouton ajouter au panier + supprimer */
.wishlist-product-bottom {
  display: flex;
  gap: 8px;
  padding: var(--space-3) var(--space-4) var(--space-4);
  align-items: center;
  background: white;
  border-top: 1px solid var(--color-border);
}
.wishlist-product-addtocart,
.wishlist-product .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: white !important;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border: 0;
  cursor: pointer;
  transition: background var(--duration-fast) ease;
  text-decoration: none;
}
.wishlist-product-addtocart:hover { background: var(--color-ink); }
.wishlist-product-addtocart:disabled,
.wishlist-product-addtocart[disabled] {
  background: var(--color-ink-mute);
  cursor: not-allowed;
}

/* Bouton supprimer (coeur corbeille) */
.wishlist-product .wishlist-button-add,
.wishlist-product-bottom .wishlist-button-add {
  position: static;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-border);
  color: var(--color-ink-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration-fast) ease;
  top: auto;
  right: auto;
  z-index: 1;
}
.wishlist-product .wishlist-button-add:hover,
.wishlist-product-bottom .wishlist-button-add:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-canvas-warm);
}

/* Footer liens (chevron_left + home) */
.wishlist-footer-links {
  max-width: var(--container-max);
  margin: var(--space-4) auto var(--space-8);
  padding: 0 var(--container-pad);
  display: flex;
  gap: var(--space-5);
  align-items: center;
  flex-wrap: wrap;
}
.wishlist-footer-links > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: white;
  transition: all var(--duration-fast) ease;
  margin-left: 0 !important;
}
.wishlist-footer-links > a:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.wishlist-footer-links > a i {
  font-size: 0 !important;
  margin: 0;
  vertical-align: middle;
}

/* ================================================
   MATERIAL ICONS - remplacement global par SVG
   Font non chargee sur le site, on utilise mask-image
   ================================================ */
.material-icons,
i.material-icons {
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 0 !important;
  line-height: 1;
  vertical-align: middle;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex-shrink: 0;
}
/* delete (corbeille) */
.material-icons:is([class*="delete"]):not(.md-36):not(.shopping-cart),
i.material-icons:not([class*="shopping"]):not(.md-36):not([class*="search"]):not([class*="cart"]) {
  /* par defaut rien, on cible par contenu textuel via attr si possible */
}
/* On cible chaque icone via son contenu texte en utilisant :has ou attributs */
/* Approche fallback : injecter les SVG par regex sur le contenu via data-attributes n'est pas possible,
   on utilise donc un ciblage par classe + pseudo :contains (non standard), or ::before avec content
   qu'on masque via la font-size: 0. A defaut on applique une icone generique. */

/* Icones specifiques reconnues */
i.material-icons.shopping-cart,
.wishlist-product-addtocart i.material-icons,
.button_display i.material-icons {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"/></svg>');
  width: 16px; height: 16px;
}

/* Icone delete dans wishlist - scope strict au module blockwishlist */
.wishlist-button-add i.material-icons,
.wishlist-product-bottom .wishlist-button-add i.material-icons,
.wishlist-container .wishlist-list-item-actions button i.material-icons {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/></svg>');
  width: 18px; height: 18px;
}

/* Icone chevron_left (retour) - dans wishlist-footer-links */
.wishlist-footer-links > a:first-child i.material-icons {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"/></svg>');
  width: 16px; height: 16px;
}
/* Icone home - dans wishlist-footer-links */
.wishlist-footer-links > a:last-child i.material-icons {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>');
  width: 16px; height: 16px;
}

/* Icone create (crayon) dans wishlist-product-combinations */
.wishlist-product-combinations a i.material-icons {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>');
  width: 14px; height: 14px;
}

/* Pagination wishlist */
.wishlist-pagination,
.wishlist-products-container .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-5);
}

/* ================================================
   FAVORIS INLINE dans Mon Compte (#section-wishlist)
   ================================================ */
.wishlist-inline { min-height: 120px; }
.wishlist-inline-loader {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  color: var(--color-ink-subtle);
  font-size: var(--text-sm);
}
.wishlist-inline-empty {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  color: var(--color-ink-subtle);
}
.wishlist-inline-empty p { margin: 0 0 var(--space-4); font-size: var(--text-sm); }
.wishlist-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: white;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: background var(--duration-fast) ease;
}
.wishlist-inline-cta:hover { background: var(--color-ink); color: white; }

.wishlist-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (max-width: 768px) { .wishlist-inline-grid { grid-template-columns: 1fr; } }

.wishlist-inline-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-4);
  padding: var(--space-3);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--duration-fast) ease, transform var(--duration-fast) ease;
}
.wishlist-inline-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transform: translateY(-1px);
}
.wishlist-inline-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--color-canvas-warm);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
}
.wishlist-inline-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 10px;
}
.wishlist-inline-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 4px 0;
}
.wishlist-inline-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wishlist-inline-name:hover { color: var(--color-brand); }
.wishlist-inline-price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--color-brand);
}
.wishlist-inline-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.wishlist-inline-btn-add {
  flex: 1;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border: 0;
  cursor: pointer;
  transition: background var(--duration-fast) ease;
}
.wishlist-inline-btn-add:hover { background: var(--color-ink); }
.wishlist-inline-btn-add:disabled { opacity: 0.6; cursor: not-allowed; }
.wishlist-inline-btn-add.is-added { background: #1F7A3C; }
.wishlist-inline-btn-disabled {
  flex: 1;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-canvas-warm);
  color: var(--color-ink-subtle);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-align: center;
  border: 1px solid var(--color-border);
}
.wishlist-inline-btn-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-border);
  color: var(--color-ink-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--duration-fast) ease;
}
.wishlist-inline-btn-remove:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-canvas-warm);
}

/* ================================================
   WISHLIST - bouton galerie fiche produit (.js-proparo-fav)
   ================================================ */
#proparo-wishlist-gal.is-active {
  background: var(--color-brand) !important;
  border-color: var(--color-brand) !important;
  color: white !important;
}
#proparo-wishlist-gal.is-active .gallery-action-icon {
  fill: currentColor;
  stroke: currentColor;
}
#proparo-wishlist-gal.is-active:hover {
  background: #B5000F !important;
  border-color: #B5000F !important;
}

/* ================================================
   TOAST PROPARO - notification flottante bas-droite
   ================================================ */
.proparo-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}
.proparo-toast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--color-ink);
  color: white;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s var(--ease-default), transform .25s var(--ease-default);
  min-width: 220px;
  max-width: 420px;
}
.proparo-toast.is-visible { opacity: 1; transform: translateY(0); }
.proparo-toast.is-leaving { opacity: 0; transform: translateY(10px); }
.proparo-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.proparo-toast-msg { flex: 1; line-height: 1.4; }

.proparo-toast-success { background: var(--color-brand); }
.proparo-toast-success .proparo-toast-icon { background: rgba(255,255,255,.18); }
.proparo-toast-info { background: var(--color-ink); }
.proparo-toast-info .proparo-toast-icon { background: rgba(255,255,255,.14); }
.proparo-toast-error { background: #B5000F; }
.proparo-toast-error .proparo-toast-icon { background: rgba(255,255,255,.18); }

@media (max-width: 480px) {
  .proparo-toast-container { left: 16px; right: 16px; bottom: 16px; }
  .proparo-toast { min-width: 0; width: 100%; }
}

/* Neutralise le bouton .wishlist-button-add injecte par product.bundle.js
   sur les miniatures produits (catalogue + cross-selling panier).
   On garde notre propre .pcard-fav / #proparo-wishlist-gal pour la wishlist. */
article.product-miniature > .wishlist-button-add,
article.js-product-miniature > .wishlist-button-add,
.product-miniature .thumbnail-container > .wishlist-button-add,
div#csoc-container .wishlist-button-add,
.products article > .wishlist-button-add {
  display: none !important;
}

/* Material Icons: check (checkbox coche) - case a cocher CGV checkout */
.material-icons.checkbox-checked,
i.material-icons.checkbox-checked {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
  width: 16px;
  height: 16px;
}

/* ================================================
   COLISSIMO - champ telephone : fix padding-left
   fou injecte en inline par intlTelInput lors d'une
   re-initialisation (aller-retour onglet Paiement>Livraison)
   ================================================ */
#checkout .iti input[type="tel"],
#checkout input.colissimo-mobile-phone {
  padding-left: 78px !important;
  padding-right: 12px !important;
  min-width: 0;
  max-width: 100%;
}
#checkout .iti {
  display: inline-block;
  max-width: 320px;
  min-width: 0;
}
#checkout .iti__flag-container,
#checkout .iti__selected-flag {
  overflow: visible;
}

/* Masque les versions mobile du detail commande sur desktop.
   Les classes Bootstrap hidden-md-up etaient ecrasees par
   .order-items{display:flex} de proparo-secondary.css. */
@media (min-width: 769px) {
  .order-items.hidden-md-up,
  .order-totals.hidden-md-up,
  .history-lines.hidden-md-up,
  .shipping-lines.hidden-md-up,
  #order-history > div.hidden-md-up,
  .box.hidden-md-up { display: none !important; }
}

/* Detail commande : evite les border-radius imbriques quand
   une table est dans un .order-info-block (transporteurs)
   et espace la section "Ajouter un message" */
.order-info-block > .order-history-table,
.order-info-block .order-history-table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  background: transparent;
}
.order-info-block > .order-history-table thead th {
  background: transparent;
  border-bottom: 1px solid var(--color-border);
}
.order-message-form {
  margin-top: var(--space-6);
}
.order-info-block + .order-info-block,
#order-history + .order-info-block,
.addresses + .order-info-block,
#order-products + .order-info-block {
  margin-top: var(--space-6) !important;
}

/* Pages historique + detail commande : contenu pleine largeur */
#history #content-wrapper,
#order-detail #content-wrapper {
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ================================================
   LIGHTBOX PROPARO - zoom image fiche produit
   ================================================ */
.proparo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(20, 20, 18, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .22s var(--ease-default);
  cursor: zoom-out;
}
.proparo-lightbox.is-visible { opacity: 1; }
.proparo-lightbox-img {
  max-width: min(100%, 1400px);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  cursor: default;
  background: white;
}
.proparo-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.proparo-lightbox-close:hover {
  background: var(--color-brand);
  color: white;
  transform: scale(1.05);
}
body.proparo-lightbox-open { overflow: hidden; }

/* Bouton "Agrandir" en bas de galerie fiche produit : cliquable */
.gallery-zoom.js-proparo-zoom {
  pointer-events: auto !important;
  cursor: zoom-in;
  border: 0;
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease;
}
.gallery-zoom.js-proparo-zoom:hover {
  background: var(--color-brand);
  color: #fff;
}

/* Blog liste : aligne la barre de filtres categories sur le contenu */
.cat-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .cat-nav-inner { padding: 0 20px; }
}

/* Hero article blog : reduction marge haut + padding bas + image alignee sur le hero */
.article-hero {
  padding-top: 32px !important;
  padding-bottom: 40px !important;
}
.hero-image {
  max-width: 1200px !important;
  padding: 0 40px !important;
}
.hero-img-block {
  border-radius: var(--r-xl) !important;
}
@media (max-width: 768px) {
  .article-hero {
    padding-top: 20px !important;
    padding-bottom: 24px !important;
  }
  .hero-image { padding: 0 20px !important; }
}

/* ================================================
   RESPONSIVE FIXES — Carrousel, barre info, categorie, listing
   Bloc en fin de fichier : prioritaire a specificite egale.
   ================================================ */

/* ---- 0. HEADER : logo + bande promo ----
   Le logo est un <span class="proparo-logo"> (pas un <img>), donc la regle
   mobile existante .header-logo img ne l'atteignait pas : il restait en 220x66. */
@media (max-width: 1024px) {
  .header-logo .proparo-logo { width: 150px; height: 45px; }
}
@media (max-width: 480px) {
  .header-logo .proparo-logo { width: 130px; height: 39px; }
}

/* Bande noire promo : plus compacte, icone alignee au texte centre */
@media (max-width: 768px) {
  .promo-bar {
    padding: 8px 34px;
    font-size: 11.5px;
    line-height: 1.35;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .promo-bar svg { flex-shrink: 0; width: 14px; height: 14px; }
  .promo-bar-close { right: 10px; font-size: 18px; }
}
@media (max-width: 480px) {
  .promo-bar { padding: 7px 30px; font-size: 11px; gap: 6px; }
  .promo-bar svg { display: none; } /* icone superflue sur tres petit ecran */
}

/* ---- 1. CARROUSEL HERO ----
   Les panneaux sont en position:absolute (crossfade). Sur mobile,
   on rend le panneau actif relatif pour que le conteneur prenne sa
   hauteur (fini le rognage par overflow:hidden + hauteur fixe). */
@media (max-width: 768px) {
  .hero-multi { min-height: 0; }
  .hero-panel {
    position: absolute; left: 0; right: 0; top: 0;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-8) var(--container-pad-mobile) var(--space-12);
  }
  .hero-panel.active { position: relative; }
  .hero-right { order: 2; }
  .hero-img-frame { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-badge { display: none; } /* badges flottants : debordent sur petit ecran */
  .hero-proof { gap: 12px; }
  .hero-nav {
    position: relative; left: auto; bottom: auto;
    transform: none; margin: 20px auto 0; justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-panel { padding: var(--space-6) var(--container-pad-mobile) var(--space-10); }
  .hero-h1 { font-size: clamp(28px, 8vw, 38px); }
}

/* ---- 2. BARRE INFO (reassurance) ---- */
@media (max-width: 900px) {
  .reassurance { margin-left: 20px; margin-right: 20px; } /* gouttieres blanches laterales */
  .reassurance-inner { grid-template-columns: repeat(2, 1fr); padding: 0 12px; }
  .reass-item { padding: 10px 20px; }
  .reass-item:nth-child(2) { border-right: none; }
  .reass-item:nth-child(1),
  .reass-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding-bottom: 16px;
  }
  .reass-item:nth-child(3),
  .reass-item:nth-child(4) { padding-top: 16px; }
}
@media (max-width: 540px) {
  .reassurance { margin: 24px 16px; border-radius: 12px; }
  .reassurance-inner { grid-template-columns: 1fr; padding: 0; } /* enleve les 24px de --container-pad */
  .reass-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 12px 14px;
  }
  .reass-item:nth-child(1),
  .reass-item:nth-child(2) { padding-bottom: 12px; }
  .reass-item:last-child { border-bottom: none; }
}

/* ---- 3. CATEGORIE HERO ---- */
@media (max-width: 900px) {
  .cat-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .cat-hero::before { display: none; } /* fond clip-path 45% : recouvre le texte en 1 colonne */
  .cat-hero-right { padding-left: 0; }
}
@media (max-width: 480px) {
  .cat-hero { padding: 24px 0 32px; }
  .cat-stats { gap: 18px 24px; }
  .cat-intro { font-size: 15px; }
}

/* ---- 4. LISTING PRODUITS ---- */
.pcard { min-width: 0; } /* evite tout debordement de piste de grille */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* Accueil "Nos produits phares" : 1 produit par ligne (l'ID prime sur le listing) */
  #produits .products-grid { grid-template-columns: 1fr; }
  /* Accueil "La science de l'oxygene" : 1 produit par ligne */
  .brand-right { grid-template-columns: 1fr; order: 0; } /* order:0 -> texte avant les produits */
  .brand-stats { grid-template-columns: 1fr; }           /* chiffres (reassurance) 1 par ligne */
  /* Page catalogue : 1 produit par ligne (ne touche pas l'accueil) */
  .products-grid-wrap .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .products-grid { gap: 12px; }
}

/* ---- 5. AVIS CLIENTS (section reviews) ---- */
@media (max-width: 640px) {
  /* Bloc note : autorise le retour a la ligne pour que le badge noir
     "AVIS GARANTIS" ne deborde plus a droite */
  .proof-score { flex-wrap: wrap; gap: 14px 18px; }
  .proof-score-num { font-size: 44px; }
  .proof-score-badge { margin-left: 0; }

  /* Slider : 1 avis pleine largeur (fini la carte coupee et le trop-etroit) */
  .reviews-slider-wrap { gap: 8px; }
  .reviews-nav-btn { width: 34px; height: 34px; }
  .review-card { flex: 0 0 100%; padding: 20px; }
  /* hauteur de carte = contenu reel (la hauteur du slider est calee en JS) */
  .reviews-track { align-items: flex-start; }
  .reviews-slider { transition: height .3s ease; }
}

/* ---- 8. Bloc "La science de l'oxygene" (fond noir) ----
   #D40012 sur #141412 a des luminances trop proches -> le rouge "vibre/neon".
   On utilise une teinte rouge ECLAIRCIE reservee aux fonds sombres (meilleur
   contraste de clarte). Limite a .brand-section ; le bouton plein reste #D40012. */
.brand-section { --brand-on-dark: #F2434F; }
.brand-section .brand-eyebrow,
.brand-section .brand-title em,
.brand-section .brand-stat-num { color: var(--brand-on-dark); }
.brand-section .brand-eyebrow::before { background: var(--brand-on-dark); }

/* ================================================
   PANIER : Fidelite (override totloyaltyadvanced)
   ================================================ */
.proparo-cart-loyalty {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
}

.proparo-cart-loyalty-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #FFF6E6;
  border: 1px solid #F2D58E;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #5C4A1A;
}

.proparo-cart-loyalty-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #B8860B;
  border: 1px solid #F2D58E;
}

.proparo-cart-loyalty-text {
  flex: 1;
}

.proparo-cart-loyalty-text strong {
  color: #B8860B;
  font-weight: 700;
}

.proparo-cart-loyalty-guest {
  display: block;
  margin-top: 4px;
  font-style: italic;
  opacity: 0.75;
}

.proparo-cart-loyalty-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1.5px solid var(--color-brand, #D40012);
  border-radius: 10px;
  color: var(--color-brand, #D40012);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}

.proparo-cart-loyalty-cta:hover,
.proparo-cart-loyalty-cta:focus {
  background: var(--color-brand, #D40012);
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 0, 18, 0.18);
}

.proparo-cart-loyalty-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proparo-cart-loyalty-cta-value {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .proparo-cart-loyalty-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .proparo-cart-loyalty-cta-label {
    justify-content: center;
  }
}
