/* Celox Plata Custom CSS - built 2026-04-07T00:14:45Z */

/* === 00-tokens.css === */
/* ============================================================
   00 — TOKENS — Variables CSS, palette, typo, espacements
   Celox Plata Redesign 2026
   ============================================================ */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Variable.woff2') format('woff2-variations'),
       url('../fonts/inter/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Couleurs — palette Apple/Stripe clean */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-tertiary: #F4F4F5;
  --text-primary: #0A0A0A;
  --text-secondary: #525252;
  --text-tertiary: #A3A3A3;
  --border: #E5E5E5;
  --border-strong: #D4D4D4;
  --accent: #1C1C1E;
  --accent-hover: #000000;
  --success: #16A34A;
  --warning: #EA580C;
  --danger: #DC2626;

  /* Typographie */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-h1: 64px;
  --fs-h1-mobile: 40px;
  --fs-h2: 44px;
  --fs-h2-mobile: 32px;
  --fs-h3: 24px;
  --fs-h3-mobile: 20px;
  --fs-body: 17px;
  --fs-body-mobile: 16px;
  --fs-small: 14px;
  --fs-tiny: 13px;

  /* Espacements */
  --container-max: 1200px;
  --section-py: 120px;
  --section-py-mobile: 64px;
  --section-px: 64px;
  --section-px-mobile: 24px;
  --grid-gap: 32px;
  --grid-gap-mobile: 16px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-header: 100;
  --z-drawer: 200;
  --z-modal: 300;
}

@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-mobile);
    --section-px: var(--section-px-mobile);
  }
}

/* === 01-reset.css === */
/* ============================================================
   01 — RESET — Reset minimal moderne
   ============================================================ */

/* On garde Bootstrap actif mais on neutralise certains styles agressifs du theme.css par-dessus. */

body.celox-redesign,
body.celox-redesign * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.celox-redesign {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  font-variation-settings: 'opsz' 32;
  overflow-x: hidden;
  max-width: 100vw;
}

html:has(body.celox-redesign) {
  overflow-x: hidden;
  max-width: 100vw;
}

body.celox-redesign img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.celox-redesign a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

body.celox-redesign a:hover {
  color: var(--text-primary);
}

body.celox-redesign h1,
body.celox-redesign h2,
body.celox-redesign h3,
body.celox-redesign h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 16px;
}

body.celox-redesign h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

body.celox-redesign h2 {
  font-size: var(--fs-h2);
}

body.celox-redesign h3 {
  font-size: var(--fs-h3);
}

@media (max-width: 768px) {
  body.celox-redesign h1 { font-size: var(--fs-h1-mobile); }
  body.celox-redesign h2 { font-size: var(--fs-h2-mobile); }
  body.celox-redesign h3 { font-size: var(--fs-h3-mobile); }
  body.celox-redesign { font-size: var(--fs-body-mobile); }
}

body.celox-redesign p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

body.celox-redesign ul,
body.celox-redesign ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

body.celox-redesign button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* On masque les material-icons cassés s'ils restent dans le DOM */
body.celox-redesign .material-icons {
  display: none !important;
}

/* === 02-base.css === */
/* ============================================================
   02 — BASE — Helpers, container, eyebrow, sections génériques
   ============================================================ */

body.celox-redesign .clx-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
  box-sizing: border-box;
}

body.celox-redesign .clx-section {
  padding: var(--section-py) 0;
}

body.celox-redesign .clx-section--alt {
  background: var(--bg-secondary);
}

body.celox-redesign .clx-section--dark {
  background: var(--accent);
  color: #fff;
}

body.celox-redesign .clx-section--dark h1,
body.celox-redesign .clx-section--dark h2,
body.celox-redesign .clx-section--dark h3 {
  color: #fff;
}

body.celox-redesign .clx-section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

body.celox-redesign .clx-eyebrow {
  display: inline-block;
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

body.celox-redesign .clx-eyebrow--accent {
  color: var(--warning);
}

body.celox-redesign .clx-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

body.celox-redesign .clx-section-header p {
  font-size: 19px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  body.celox-redesign .clx-section-header {
    margin-bottom: 40px;
  }
}

/* Icônes SVG */
body.celox-redesign .icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.celox-redesign .icon-16 { width: 16px; height: 16px; }
body.celox-redesign .icon-20 { width: 20px; height: 20px; }
body.celox-redesign .icon-24 { width: 24px; height: 24px; }
body.celox-redesign .icon-28 { width: 28px; height: 28px; }
body.celox-redesign .icon-32 { width: 32px; height: 32px; }

/* Stars (notes) */
body.celox-redesign .clx-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5B400;
}

body.celox-redesign .clx-stars .icon {
  fill: currentColor;
  stroke: none;
}

/* === 03-components.css === */
/* ============================================================
   03 — COMPONENTS — Boutons, cards, inputs, accordéons, badges
   ============================================================ */

/* ---------- Boutons ---------- */
body.celox-redesign .clx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  transition: all var(--t-fast);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}

body.celox-redesign .clx-btn--primary {
  background: var(--accent);
  color: #fff;
}

body.celox-redesign .clx-btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

body.celox-redesign .clx-btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}

body.celox-redesign .clx-btn--ghost:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

body.celox-redesign .clx-btn--white {
  background: #fff;
  color: var(--text-primary);
}

body.celox-redesign .clx-btn--white:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

body.celox-redesign .clx-btn--lg {
  padding: 18px 36px;
  font-size: 17px;
}

body.celox-redesign .clx-btn--block {
  display: flex;
  width: 100%;
}

body.celox-redesign .clx-btn--xl {
  padding: 20px 40px;
  font-size: 18px;
  height: 56px;
}

/* ---------- Cards ---------- */
body.celox-redesign .clx-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t-base);
}

body.celox-redesign .clx-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

body.celox-redesign .clx-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-primary);
}

body.celox-redesign .clx-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

body.celox-redesign .clx-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Badges ---------- */
body.celox-redesign .clx-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-transform: uppercase;
}

body.celox-redesign .clx-badge--accent {
  background: var(--text-primary);
  color: #fff;
}

body.celox-redesign .clx-badge--warning {
  background: var(--warning);
  color: #fff;
}

body.celox-redesign .clx-badge--success {
  background: var(--success);
  color: #fff;
}

body.celox-redesign .clx-badge--ghost {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

/* ---------- Inputs ---------- */
body.celox-redesign .clx-input,
body.celox-redesign input[type="text"]:not(.search-widget *),
body.celox-redesign input[type="email"],
body.celox-redesign input[type="password"],
body.celox-redesign input[type="tel"],
body.celox-redesign input[type="number"],
body.celox-redesign select,
body.celox-redesign textarea {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 15px;
  color: var(--text-primary);
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  font-family: inherit;
}

body.celox-redesign textarea {
  height: auto;
  padding: 14px 16px;
  min-height: 120px;
  line-height: 1.5;
}

body.celox-redesign .clx-input:focus,
body.celox-redesign input:focus,
body.celox-redesign select:focus,
body.celox-redesign textarea:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

body.celox-redesign label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

/* ---------- Accordéon ---------- */
body.celox-redesign .clx-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t-fast);
}

body.celox-redesign .clx-accordion[data-open="true"] {
  border-color: var(--text-primary);
}

body.celox-redesign .clx-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  line-height: 1.4;
}

@media (max-width: 640px) {
  body.celox-redesign .clx-accordion__header {
    padding: 18px 20px;
    font-size: 15px;
  }
  body.celox-redesign .clx-accordion[data-open="true"] .clx-accordion__body {
    padding: 0 20px 20px;
  }
}

body.celox-redesign .clx-accordion__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base);
}

body.celox-redesign .clx-accordion[data-open="true"] .clx-accordion__icon {
  transform: rotate(45deg);
}

body.celox-redesign .clx-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) ease;
  padding: 0 28px;
}

body.celox-redesign .clx-accordion[data-open="true"] .clx-accordion__body {
  max-height: 1000px;
  padding: 0 28px 24px;
}

body.celox-redesign .clx-accordion__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---------- Liste de check ---------- */
body.celox-redesign .clx-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.celox-redesign .clx-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

body.celox-redesign .clx-checklist li .icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Sticky element helper ---------- */
body.celox-redesign .clx-sticky {
  position: sticky;
  top: 96px;
}

/* === 04-layout.css === */
/* ============================================================
   04 — LAYOUT — Header sticky, footer, top bar promo
   ============================================================ */

/* On masque les éléments hérités du theme.css qu'on remplace */
body.celox-redesign #header .header-banner,
body.celox-redesign #header .header-nav,
body.celox-redesign #header .header-top,
body.celox-redesign #wrapper > .breadcrumb,
body.celox-redesign #footer .footer-container .links,
body.celox-redesign #footer .footer-container .block-contact,
body.celox-redesign #footer .footer-container .block_newsletter,
body.celox-redesign #footer .footer-container .copyright {
  display: none !important;
}

body.celox-redesign #header,
body.celox-redesign #footer {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}

body.celox-redesign #wrapper {
  background: var(--bg-primary);
  padding: 0;
}

body.celox-redesign #main {
  padding: 0;
}

body.celox-redesign .page-home {
  padding: 0;
}

/* Sur la home, on libère le .container Bootstrap pour que les sections puissent être full-width */
body.celox-redesign.page-index #wrapper > .container {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

body.celox-redesign.page-index #wrapper > .container > .row {
  margin: 0;
}

body.celox-redesign.page-index #content-wrapper {
  padding: 0;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

body.celox-redesign.page-index #main {
  padding: 0;
  width: 100%;
}

/* ---------- Bandeau Shabbat countdown ---------- */
body.celox-redesign .clx-shabbat-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(90deg, #FEF3C7 0%, #FDE68A 50%, #FEF3C7 100%);
  color: #78350F;
  padding: 14px 24px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid rgba(120, 53, 15, 0.15);
  position: relative;
  z-index: calc(var(--z-header) + 1);
}

body.celox-redesign .clx-shabbat-banner[hidden] {
  display: none;
}

body.celox-redesign .clx-shabbat-banner .icon {
  color: #92400E;
  flex-shrink: 0;
}

body.celox-redesign .clx-shabbat-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
}

body.celox-redesign .clx-shabbat-banner__text strong {
  font-weight: 700;
  color: #78350F;
  font-size: 15px;
}

body.celox-redesign .clx-shabbat-banner__text span {
  font-size: 13px;
  color: #92400E;
}

body.celox-redesign .clx-shabbat-banner [data-days],
body.celox-redesign .clx-shabbat-banner [data-deadline] {
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 640px) {
  body.celox-redesign .clx-shabbat-banner {
    padding: 12px 16px;
    font-size: 12px;
    gap: 10px;
  }
  body.celox-redesign .clx-shabbat-banner__text strong {
    font-size: 13px;
  }
  body.celox-redesign .clx-shabbat-banner__text span {
    font-size: 11px;
  }
  body.celox-redesign .clx-shabbat-banner .icon {
    width: 18px;
    height: 18px;
  }
}

/* ---------- Last order — preuve sociale dynamique ---------- */
body.celox-redesign .clx-last-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 24px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
  width: fit-content;
  box-shadow: var(--shadow-sm);
  transition: opacity var(--t-fast);
}

body.celox-redesign .clx-last-order.is-updating {
  opacity: 0.4;
}

body.celox-redesign .clx-last-order__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
  animation: clx-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

body.celox-redesign .clx-last-order strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 480px) {
  body.celox-redesign .clx-last-order {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ---------- Top bar promo ---------- */
body.celox-redesign .clx-topbar {
  background: var(--accent);
  color: #fff;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  z-index: calc(var(--z-header) + 1);
}

body.celox-redesign .clx-topbar__sep {
  margin: 0 12px;
  opacity: 0.4;
}

@media (max-width: 640px) {
  body.celox-redesign .clx-topbar {
    font-size: 12px;
    padding: 0 16px;
    text-align: center;
  }
  body.celox-redesign .clx-topbar__sep {
    display: none;
  }
}

/* ---------- Header ---------- */
body.celox-redesign .clx-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  z-index: var(--z-header);
  transition: border-color var(--t-fast), background var(--t-fast);
}

body.celox-redesign .clx-header.is-scrolled {
  border-bottom-color: var(--border);
}

body.celox-redesign .clx-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--section-px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

body.celox-redesign .clx-header__logo {
  display: flex;
  align-items: center;
}

body.celox-redesign .clx-header__logo img {
  height: 36px;
  width: auto;
}

body.celox-redesign .clx-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

body.celox-redesign .clx-header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

body.celox-redesign .clx-header__nav a:hover,
body.celox-redesign .clx-header__nav a.is-active {
  color: var(--text-primary);
}

body.celox-redesign .clx-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

body.celox-redesign .clx-header__btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: transparent;
  position: relative;
  transition: background var(--t-fast);
}

body.celox-redesign .clx-header__btn:hover {
  background: var(--bg-tertiary);
}

body.celox-redesign .clx-header__cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--warning);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

body.celox-redesign .clx-header__cart-badge[data-empty="true"] {
  display: none;
}

body.celox-redesign .clx-header__menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  body.celox-redesign .clx-header {
    height: 60px;
  }
  body.celox-redesign .clx-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }
  body.celox-redesign .clx-header__nav {
    display: none;
  }
  body.celox-redesign .clx-header__menu-toggle {
    display: flex;
  }
  body.celox-redesign .clx-header__logo {
    justify-content: center;
  }
  body.celox-redesign .clx-header__logo img {
    height: 30px;
  }
}

/* ---------- Drawer mobile ---------- */
body.celox-redesign .clx-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #fff;
  z-index: var(--z-drawer);
  transition: right var(--t-base);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

body.celox-redesign .clx-drawer.is-open {
  right: 0;
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.15);
}

body.celox-redesign .clx-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  z-index: calc(var(--z-drawer) - 1);
  pointer-events: none;
  transition: background var(--t-base);
}

body.celox-redesign .clx-drawer__overlay.is-open {
  background: rgba(10, 10, 10, 0.4);
  pointer-events: auto;
}

body.celox-redesign .clx-drawer__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

body.celox-redesign .clx-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

body.celox-redesign .clx-drawer__nav a {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ---------- Footer ---------- */
body.celox-redesign .clx-footer {
  background: var(--bg-secondary);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

body.celox-redesign .clx-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

body.celox-redesign .clx-footer__brand img {
  height: 32px;
  margin-bottom: 16px;
}

body.celox-redesign .clx-footer__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 320px;
  margin-bottom: 16px;
  line-height: 1.6;
}

body.celox-redesign .clx-footer__address {
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: normal;
  line-height: 1.6;
}

body.celox-redesign .clx-footer__col-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

body.celox-redesign .clx-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.celox-redesign .clx-footer__list a {
  font-size: 14px;
  color: var(--text-secondary);
}

body.celox-redesign .clx-footer__list a:hover {
  color: var(--text-primary);
}

body.celox-redesign .clx-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

body.celox-redesign .clx-footer__copyright {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}

body.celox-redesign .clx-footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-tertiary);
}

body.celox-redesign .clx-footer__payments .icon {
  height: 24px;
  width: auto;
}

@media (max-width: 768px) {
  body.celox-redesign .clx-footer {
    padding: 56px 0 32px;
  }
  body.celox-redesign .clx-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}

/* === 05-pages-home.css === */
/* ============================================================
   05 — HOMEPAGE — Toutes les sections de la home
   ============================================================ */

/* On masque les blocs natifs PrestaShop sur la home (mais PAS section#main qui contient notre landing) */
body.celox-redesign.page-index .featured-products,
body.celox-redesign.page-index .block_newsletter,
body.celox-redesign.page-index #ps_imageslider,
body.celox-redesign.page-index .home-banner,
body.celox-redesign.page-index .page-home > .home-content,
body.celox-redesign.page-index #wrapper > .container > .breadcrumb {
  display: none !important;
}

/* On garde notre wrapper landing */
body.celox-redesign.page-index .clx-landing { display: block !important; }

/* ---------- HERO ---------- */
body.celox-redesign .clx-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0 64px;
}

body.celox-redesign .clx-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

body.celox-redesign .clx-hero__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 24px;
}

body.celox-redesign .clx-hero__subtitle {
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

body.celox-redesign .clx-hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

body.celox-redesign .clx-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

body.celox-redesign .clx-hero__trust .clx-stars {
  font-size: 16px;
}

body.celox-redesign .clx-hero__trust strong {
  color: var(--text-primary);
  font-weight: 600;
}

body.celox-redesign .clx-hero__trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border-strong);
}

body.celox-redesign .clx-hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-tertiary);
  aspect-ratio: 1 / 1;
}

body.celox-redesign .clx-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  body.celox-redesign .clx-hero {
    min-height: auto;
    padding: 40px 0 56px;
  }
  body.celox-redesign .clx-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.celox-redesign .clx-hero__visual {
    order: -1;
    aspect-ratio: 4 / 3;
  }
  body.celox-redesign .clx-hero__title {
    font-size: var(--fs-h1-mobile);
  }
  body.celox-redesign .clx-hero__subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  body.celox-redesign .clx-hero__title {
    font-size: 34px;
    letter-spacing: -0.025em;
  }
  body.celox-redesign .clx-hero__subtitle {
    font-size: 16px;
  }
  body.celox-redesign .clx-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  body.celox-redesign .clx-hero__ctas .clx-btn {
    justify-content: center;
    width: 100%;
  }
  body.celox-redesign .clx-hero__trust {
    font-size: 13px;
    gap: 10px;
  }
  body.celox-redesign .clx-hero__trust-sep {
    display: none;
  }
}

/* ---------- FEATURES GRID ---------- */
body.celox-redesign .clx-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

@media (max-width: 1024px) {
  body.celox-redesign .clx-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body.celox-redesign .clx-features {
    grid-template-columns: 1fr;
  }
}

/* ---------- COMPARATIF ---------- */
body.celox-redesign .clx-compare {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

body.celox-redesign .clx-compare__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

body.celox-redesign .clx-compare__row:last-child {
  border-bottom: none;
}

body.celox-redesign .clx-compare__cell {
  padding: 22px 28px;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

body.celox-redesign .clx-compare__cell--label {
  font-weight: 600;
  color: var(--text-primary);
}

body.celox-redesign .clx-compare__cell--celox {
  background: var(--bg-tertiary);
  font-weight: 500;
  color: var(--text-primary);
}

body.celox-redesign .clx-compare__head .clx-compare__cell {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  padding: 18px 28px;
}

body.celox-redesign .clx-compare__head .clx-compare__cell--celox {
  color: var(--text-primary);
}

body.celox-redesign .clx-compare__cell .icon {
  color: var(--success);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  /* Sur mobile, le comparatif devient une liste de cards stackées */
  body.celox-redesign .clx-compare {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  body.celox-redesign .clx-compare__head {
    display: none;
  }
  body.celox-redesign .clx-compare__row {
    display: block;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 18px 20px;
  }
  body.celox-redesign .clx-compare__cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: 14px;
    background: transparent !important;
    color: var(--text-secondary);
  }
  body.celox-redesign .clx-compare__cell--label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  body.celox-redesign .clx-compare__cell:not(.clx-compare__cell--label)::before {
    content: attr(data-label);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    font-weight: 600;
  }
  body.celox-redesign .clx-compare__cell--celox {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 6px;
  }
}

/* ---------- USE CASES ---------- */
body.celox-redesign .clx-usecases {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.celox-redesign .clx-usecase {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
}

body.celox-redesign .clx-usecase:nth-child(even) {
  grid-template-columns: 1.4fr 1fr;
}

body.celox-redesign .clx-usecase:nth-child(even) .clx-usecase__visual {
  order: 2;
}

body.celox-redesign .clx-usecase__visual {
  background: var(--bg-tertiary);
  position: relative;
  min-height: 280px;
}

body.celox-redesign .clx-usecase__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

body.celox-redesign .clx-usecase__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.celox-redesign .clx-usecase__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

body.celox-redesign .clx-usecase__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

body.celox-redesign .clx-usecase__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  body.celox-redesign .clx-usecase,
  body.celox-redesign .clx-usecase:nth-child(even) {
    grid-template-columns: 1fr;
  }
  body.celox-redesign .clx-usecase:nth-child(even) .clx-usecase__visual {
    order: 0;
  }
  body.celox-redesign .clx-usecase__content {
    padding: 32px 24px;
  }
  body.celox-redesign .clx-usecase__title {
    font-size: 24px;
  }
}

/* ---------- VERSIONS (sélecteur déclinaisons) ---------- */
body.celox-redesign .clx-versions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

body.celox-redesign .clx-version {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
}

body.celox-redesign .clx-version--featured {
  border: 2px solid var(--accent);
  padding: 35px;
}

body.celox-redesign .clx-version__badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

body.celox-redesign .clx-version__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  overflow: hidden;
}

body.celox-redesign .clx-version__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.celox-redesign .clx-version__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

body.celox-redesign .clx-version__sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

body.celox-redesign .clx-version__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

body.celox-redesign .clx-version__price-old {
  font-size: 18px;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

body.celox-redesign .clx-version__price-new {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

body.celox-redesign .clx-version__bullets {
  margin-bottom: 28px;
  flex: 1;
}

body.celox-redesign .clx-version .clx-btn {
  width: 100%;
}

@media (max-width: 768px) {
  body.celox-redesign .clx-versions {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body.celox-redesign .clx-version {
    padding: 28px 24px;
  }
}

/* ---------- PACK FAMILLE PROMO ---------- */
body.celox-redesign .clx-pack-promo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 56px;
}

body.celox-redesign .clx-pack-promo h2 {
  color: #fff;
  font-size: 40px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

body.celox-redesign .clx-pack-promo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 28px;
}

body.celox-redesign .clx-pack-promo__pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

body.celox-redesign .clx-pack-promo__old {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

body.celox-redesign .clx-pack-promo__new {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
}

body.celox-redesign .clx-pack-promo__save {
  background: var(--warning);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

body.celox-redesign .clx-pack-promo__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.celox-redesign .clx-pack-promo__visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

body.celox-redesign .clx-pack-promo__visual img:nth-child(1) {
  transform: rotate(-3deg) translateY(8px);
}

body.celox-redesign .clx-pack-promo__visual img:nth-child(2) {
  transform: rotate(2deg) translateY(-12px);
}

@media (max-width: 1024px) {
  body.celox-redesign .clx-pack-promo {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px;
  }
  body.celox-redesign .clx-pack-promo h2 {
    font-size: 30px;
  }
  body.celox-redesign .clx-pack-promo__new {
    font-size: 36px;
  }
}

/* ---------- TÉMOIGNAGES ---------- */
body.celox-redesign .clx-testimonials {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

body.celox-redesign .clx-testimonials::-webkit-scrollbar {
  height: 6px;
}
body.celox-redesign .clx-testimonials::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: 999px;
}
body.celox-redesign .clx-testimonials::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 999px;
}

body.celox-redesign .clx-testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

body.celox-redesign .clx-testimonial__quote {
  font-size: 17px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  margin: 16px 0 24px;
  flex: 1;
}

body.celox-redesign .clx-testimonial__sep {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

body.celox-redesign .clx-testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

body.celox-redesign .clx-testimonial__author small {
  display: block;
  color: var(--text-tertiary);
  font-weight: 400;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  body.celox-redesign .clx-testimonial {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  body.celox-redesign .clx-testimonial {
    flex: 0 0 85%;
  }
}

/* ---------- FAQ ---------- */
body.celox-redesign .clx-faq {
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- CTA finale ---------- */
body.celox-redesign .clx-cta-final {
  text-align: center;
  padding: 120px 0;
}

body.celox-redesign .clx-cta-final h2 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

body.celox-redesign .clx-cta-final p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  body.celox-redesign .clx-cta-final {
    padding: 72px 0;
  }
  body.celox-redesign .clx-cta-final h2 {
    font-size: 30px;
  }
  body.celox-redesign .clx-cta-final p {
    font-size: 16px;
  }
}

/* ---------- TRUST BAR ---------- */
body.celox-redesign .clx-trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

body.celox-redesign .clx-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

body.celox-redesign .clx-trust-item .icon {
  color: var(--text-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

body.celox-redesign .clx-trust-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

body.celox-redesign .clx-trust-item__sub {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 1024px) {
  body.celox-redesign .clx-trustbar {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 480px) {
  body.celox-redesign .clx-trustbar {
    grid-template-columns: 1fr;
  }
}

/* === 06-pages-product.css === */
/* ============================================================
   06 — PRODUCT PAGE — Styles complémentaires (sans casser Bootstrap)
   On garde la grille col-md-6 / col-md-6 native PrestaShop.
   ============================================================ */

/* ---------- Wrapper et container ---------- */
body.celox-redesign.page-product #wrapper {
  background: var(--bg-primary);
  padding: 1.563rem 0 0;
}

body.celox-redesign.page-product #wrapper > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

body.celox-redesign.page-product #content-wrapper {
  padding: 0;
  width: 100%;
  max-width: 100%;
}

body.celox-redesign.page-product #main {
  padding: 0;
}

/* Breadcrumb épurée */
body.celox-redesign.page-product .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 24px;
}

body.celox-redesign.page-product .breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-tertiary);
}

body.celox-redesign.page-product .breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--text-tertiary);
}

body.celox-redesign.page-product .breadcrumb a {
  color: var(--text-tertiary);
}

body.celox-redesign.page-product .breadcrumb a:hover {
  color: var(--text-primary);
}

/* ---------- Layout 2 colonnes (Bootstrap natif respecté) ---------- */
body.celox-redesign.page-product .row.product-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  align-items: flex-start;
}

body.celox-redesign.page-product .row.product-container > .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 16px;
}

@media (max-width: 991px) {
  body.celox-redesign.page-product .row.product-container > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ---------- Galerie d'images ---------- */
body.celox-redesign.page-product .images-container {
  position: sticky;
  top: 96px;
}

body.celox-redesign.page-product .product-cover {
  position: relative;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
}

body.celox-redesign.page-product .product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.celox-redesign.page-product .product-cover .layer {
  display: none;
}

/* Thumbnails */
body.celox-redesign.page-product .product-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

body.celox-redesign.page-product .thumb-container {
  flex: 0 0 calc((100% - 50px) / 6);
  margin: 0;
}

body.celox-redesign.page-product .thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t-fast);
  background: var(--bg-tertiary);
  object-fit: cover;
  padding: 0;
  margin: 0;
}

body.celox-redesign.page-product .thumb:hover,
body.celox-redesign.page-product .thumb.selected,
body.celox-redesign.page-product .thumb.js-thumb-selected {
  border-color: var(--text-primary);
}

body.celox-redesign.page-product .scroll-box-arrows {
  display: none;
}

@media (max-width: 768px) {
  body.celox-redesign.page-product .thumb-container {
    flex: 0 0 calc((100% - 30px) / 4);
  }
  body.celox-redesign.page-product .images-container {
    position: static;
  }
}

/* ---------- Bloc info droite ---------- */
body.celox-redesign.page-product .product-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

body.celox-redesign.page-product h1.h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
}

body.celox-redesign.page-product .clx-stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

body.celox-redesign.page-product .clx-stars-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- Prix ---------- */
body.celox-redesign.page-product .product-prices {
  margin: 16px 0 24px;
  padding: 0;
  background: transparent;
  border: none;
}

body.celox-redesign.page-product .product-prices .current-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

body.celox-redesign.page-product .product-prices .current-price .price,
body.celox-redesign.page-product .product-prices .current-price > span {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

body.celox-redesign.page-product .product-prices .regular-price {
  font-size: 18px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  font-weight: 500;
}

body.celox-redesign.page-product .product-discount {
  font-size: 13px;
  font-weight: 600;
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
  padding: 4px 10px;
  border-radius: 999px;
}

body.celox-redesign.page-product .tax-shipping-delivery-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* ---------- Variantes (sélecteur natif amélioré) ---------- */
body.celox-redesign.page-product .product-variants {
  margin: 24px 0;
}

body.celox-redesign.page-product .product-variants-item {
  margin-bottom: 16px;
}

body.celox-redesign.page-product .product-variants .control-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  display: block;
}

body.celox-redesign.page-product .product-variants select {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 15px;
  width: 100%;
}

/* ---------- Quantité ---------- */
body.celox-redesign.page-product .product-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

body.celox-redesign.page-product .product-quantity .qty {
  display: inline-flex;
}

/* Masquer les boutons bootstrap-touchspin natifs (injectés par le JS PrestaShop) */
body.celox-redesign.page-product .bootstrap-touchspin .input-group-btn-vertical,
body.celox-redesign.page-product .bootstrap-touchspin .btn-touchspin,
body.celox-redesign.page-product .bootstrap-touchspin-injected,
body.celox-redesign.page-product .input-group-btn-vertical {
  display: none !important;
}

body.celox-redesign.page-product .bootstrap-touchspin {
  border: none !important;
  box-shadow: none !important;
  display: inline-block !important;
}

body.celox-redesign.page-product .clx-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

body.celox-redesign.page-product .clx-qty__btn {
  width: 44px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text-primary);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}

body.celox-redesign.page-product .clx-qty__btn:hover {
  background: var(--bg-tertiary);
}

body.celox-redesign.page-product .clx-qty input,
body.celox-redesign.page-product .clx-qty input[name="qty"] {
  width: 56px;
  height: 48px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  border-radius: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}

body.celox-redesign.page-product .clx-qty input::-webkit-inner-spin-button,
body.celox-redesign.page-product .clx-qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---------- Bouton Add to cart ---------- */
body.celox-redesign.page-product .product-add-to-cart {
  margin: 16px 0 0;
}

body.celox-redesign.page-product .product-add-to-cart .add {
  width: 100%;
}

body.celox-redesign.page-product .add-to-cart,
body.celox-redesign.page-product button.add-to-cart {
  width: 100%;
  height: 56px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: none;
}

body.celox-redesign.page-product .add-to-cart:hover:not(:disabled) {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

body.celox-redesign.page-product .add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Stock indicator ---------- */
body.celox-redesign.page-product .clx-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-sm);
}

body.celox-redesign.page-product .clx-stock__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
  flex-shrink: 0;
  animation: clx-pulse 2s ease-in-out infinite;
}

body.celox-redesign.page-product .clx-stock strong {
  color: var(--success);
  font-weight: 600;
}

body.celox-redesign.page-product .clx-stock__sub {
  color: var(--text-secondary);
}

@keyframes clx-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.25); }
}

/* ---------- Réassurances ---------- */
body.celox-redesign.page-product .clx-reassurance {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: space-around;
}

body.celox-redesign.page-product .clx-reassurance__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

body.celox-redesign.page-product .clx-reassurance__item .icon {
  color: var(--text-primary);
}

/* ---------- Description courte (sous le bouton) ---------- */
body.celox-redesign.page-product .product-information > .product-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 24px;
}

/* ---------- Hide native blocks we don't want ---------- */
body.celox-redesign.page-product .tabs,
body.celox-redesign.page-product .product-additional-info,
body.celox-redesign.page-product .social-sharing,
body.celox-redesign.page-product .product-availability {
  display: none !important;
}

body.celox-redesign.page-product .product-flags {
  margin: 0 0 12px;
}

/* ---------- SECTIONS DESCRIPTION / SPECS / FAQ (full width via product_footer block) ---------- */
body.celox-redesign.page-product .clx-product-sections-wrap {
  margin: 96px auto 64px;
  padding: 0 24px;
  max-width: 1200px;
}

body.celox-redesign.page-product .clx-product-sections {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 880px;
}

body.celox-redesign.page-product .clx-product-section__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

body.celox-redesign.page-product .clx-product-section__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

body.celox-redesign.page-product .clx-product-section__body h2,
body.celox-redesign.page-product .clx-product-section__body h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
}

body.celox-redesign.page-product .clx-product-section__body ul {
  padding-left: 20px;
}

body.celox-redesign.page-product .clx-product-section__body ul li {
  margin-bottom: 6px;
}

body.celox-redesign.page-product .clx-product-section__body strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  body.celox-redesign.page-product .clx-product-sections-wrap {
    margin-top: 56px;
    padding: 0 20px;
  }
  body.celox-redesign.page-product .clx-product-sections {
    gap: 56px;
  }
  body.celox-redesign.page-product .clx-product-section__title {
    font-size: 22px;
  }
}

/* ---------- SPECS TABLE ---------- */
body.celox-redesign.page-product .clx-specs {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

body.celox-redesign.page-product .clx-specs__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
}

body.celox-redesign.page-product .clx-specs__row:last-child {
  border-bottom: none;
}

body.celox-redesign.page-product .clx-specs__row:hover {
  background: var(--bg-secondary);
}

body.celox-redesign.page-product .clx-specs__key {
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
}

body.celox-redesign.page-product .clx-specs__val {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

@media (max-width: 640px) {
  body.celox-redesign.page-product .clx-specs__row {
    grid-template-columns: 1fr;
  }
  body.celox-redesign.page-product .clx-specs__key {
    padding: 14px 18px 4px;
    border-right: none;
    background: transparent;
    font-size: 11px;
  }
  body.celox-redesign.page-product .clx-specs__val {
    padding: 0 18px 14px;
  }
}

/* ---------- STICKY MOBILE BUY BAR ---------- */
body.celox-redesign .clx-mobile-buybar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform var(--t-base);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

body.celox-redesign.page-product .clx-mobile-buybar {
  display: flex;
}

body.celox-redesign .clx-mobile-buybar.is-visible {
  transform: translateY(0);
}

body.celox-redesign .clx-mobile-buybar__info {
  flex: 1;
  min-width: 0;
}

body.celox-redesign .clx-mobile-buybar__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

body.celox-redesign .clx-mobile-buybar__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

body.celox-redesign .clx-mobile-buybar__btn {
  background: var(--accent);
  color: #fff;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background var(--t-fast);
}

body.celox-redesign .clx-mobile-buybar__btn:hover {
  background: var(--accent-hover);
  color: #fff;
}

@media (min-width: 769px) {
  body.celox-redesign.page-product .clx-mobile-buybar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  body.celox-redesign.page-product #wrapper {
    padding-bottom: 80px; /* place pour la barre sticky */
  }
}

/* ---------- Responsive titres ---------- */
@media (max-width: 768px) {
  body.celox-redesign.page-product h1.h1 {
    font-size: 26px;
  }
  body.celox-redesign.page-product .product-prices .current-price .price {
    font-size: 30px;
  }
}

/* === 07-pages-checkout.css === */
/* ============================================================
   07 — CHECKOUT & CART — Restauration des styles natifs PrestaShop
   ============================================================ */

/* Restaurer le wrapper et le container natifs sur cart et checkout */
body.celox-redesign.page-cart #wrapper,
body.celox-redesign.page-checkout #wrapper {
  background: var(--bg-secondary);
  padding: 1.563rem 0;
}

body.celox-redesign.page-cart #wrapper > .container,
body.celox-redesign.page-checkout #wrapper > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

body.celox-redesign.page-cart #content-wrapper,
body.celox-redesign.page-checkout #content-wrapper {
  padding: 0 15px;
  width: 100%;
  max-width: 100%;
}

body.celox-redesign.page-cart #main,
body.celox-redesign.page-checkout #main {
  padding: 0;
}

/* Tailles de titres raisonnables */
body.celox-redesign.page-cart h1,
body.celox-redesign.page-checkout h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 24px;
}

body.celox-redesign.page-cart h2,
body.celox-redesign.page-checkout h2 {
  font-size: 20px;
  font-weight: 600;
}

body.celox-redesign.page-cart h3,
body.celox-redesign.page-checkout h3 {
  font-size: 17px;
  font-weight: 600;
}

/* Restaurer la grille Bootstrap pour le panier */
body.celox-redesign.page-cart .cart-grid.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

body.celox-redesign.page-cart .cart-grid-body.col-lg-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
  padding: 0 15px;
}

body.celox-redesign.page-cart .cart-grid-right.col-lg-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 15px;
}

@media (max-width: 991px) {
  body.celox-redesign.page-cart .cart-grid-body.col-lg-8,
  body.celox-redesign.page-cart .cart-grid-right.col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ---------- Sélecteur quantité custom (réutilise le style produit) ---------- */
body.celox-redesign.page-cart .bootstrap-touchspin .input-group-btn-vertical,
body.celox-redesign.page-cart .bootstrap-touchspin .btn-touchspin,
body.celox-redesign.page-cart .input-group-btn-vertical {
  display: none !important;
}

body.celox-redesign.page-cart .bootstrap-touchspin {
  border: none !important;
  box-shadow: none !important;
  display: inline-block !important;
}

body.celox-redesign.page-cart .clx-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

body.celox-redesign.page-cart .clx-qty__btn {
  width: 40px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text-primary);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}

body.celox-redesign.page-cart .clx-qty__btn:hover {
  background: var(--bg-tertiary);
}

body.celox-redesign.page-cart .clx-qty input {
  width: 52px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  border-radius: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}

body.celox-redesign.page-cart .clx-qty input::-webkit-inner-spin-button,
body.celox-redesign.page-cart .clx-qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* === 08-conversion.css === */
/* ============================================================
   08 — CONVERSION BOOSTERS
   Free shipping bar, countdowns, réservation, trust elements,
   WhatsApp floating button, gift button, etc.
   ============================================================ */

/* ---------- Free shipping bar (page panier) ---------- */
body.celox-redesign .clx-shipping {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--t-fast), background var(--t-fast);
}

body.celox-redesign .clx-shipping.is-complete {
  border-color: var(--success);
  background: rgba(22, 163, 74, 0.05);
}

body.celox-redesign .clx-shipping__text {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.celox-redesign .clx-shipping__text strong {
  color: var(--text-primary);
  font-weight: 700;
}

body.celox-redesign .clx-shipping.is-complete .clx-shipping__text strong {
  color: var(--success);
}

body.celox-redesign .clx-shipping__bar {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 999px;
  overflow: hidden;
}

body.celox-redesign .clx-shipping__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--text-primary) 0%, #2a2a2c 100%);
  border-radius: 999px;
  transition: width var(--t-base);
  width: 0%;
}

body.celox-redesign .clx-shipping.is-complete .clx-shipping__fill {
  background: linear-gradient(90deg, var(--success) 0%, #15803D 100%);
}

/* ---------- Free gift bar (cadeau ≥89€) ---------- */
body.celox-redesign .clx-gift-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 16px;
  transition: border-color var(--t-fast), background var(--t-fast);
}

body.celox-redesign .clx-gift-bar.is-complete {
  border-color: var(--warning);
  background: rgba(234, 88, 12, 0.05);
}

body.celox-redesign .clx-gift-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warning);
  flex-shrink: 0;
}

body.celox-redesign .clx-gift-bar.is-complete .clx-gift-bar__icon {
  background: var(--warning);
  color: #fff;
}

body.celox-redesign .clx-gift-bar__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.celox-redesign .clx-gift-bar__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

body.celox-redesign .clx-gift-bar__text strong {
  color: var(--text-primary);
  font-weight: 700;
}

body.celox-redesign .clx-gift-bar.is-complete .clx-gift-bar__text {
  color: var(--text-primary);
}

body.celox-redesign .clx-gift-bar.is-complete .clx-gift-bar__text strong {
  color: var(--warning);
}

body.celox-redesign .clx-gift-bar__bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 999px;
  overflow: hidden;
}

body.celox-redesign .clx-gift-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #FED7AA 0%, var(--warning) 100%);
  border-radius: 999px;
  transition: width var(--t-base);
  width: 0%;
}

body.celox-redesign .clx-gift-bar.is-complete .clx-gift-bar__fill {
  background: var(--warning);
}

/* ---------- Compte à rebours d'expédition ---------- */
body.celox-redesign .clx-ship-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 12px 0;
}

body.celox-redesign .clx-ship-countdown strong {
  color: var(--warning);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

body.celox-redesign .clx-ship-countdown .icon {
  color: var(--text-primary);
  flex-shrink: 0;
}

/* ---------- Réservation panier (10 minutes) ---------- */
body.celox-redesign .clx-cart-reservation {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #78350F;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 14px;
  border: 1px solid rgba(120, 53, 15, 0.15);
}

body.celox-redesign .clx-cart-reservation .icon {
  color: #92400E;
  flex-shrink: 0;
}

body.celox-redesign .clx-cart-reservation strong {
  color: #78350F;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 16px;
}

body.celox-redesign .clx-cart-reservation [data-time] {
  display: inline-block;
  min-width: 50px;
  background: rgba(255, 255, 255, 0.6);
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 2px;
}

/* ---------- Buy 2 indicator (page produit) ---------- */
body.celox-redesign .clx-buy-two {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  transition: all var(--t-base);
}

body.celox-redesign .clx-buy-two.is-active {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid var(--success);
  color: var(--text-primary);
}

body.celox-redesign .clx-buy-two strong {
  color: var(--text-primary);
  font-weight: 700;
}

body.celox-redesign .clx-buy-two.is-active strong {
  color: var(--success);
}

body.celox-redesign .clx-buy-two .icon {
  color: var(--warning);
  flex-shrink: 0;
}

body.celox-redesign .clx-buy-two.is-active .icon {
  color: var(--success);
}

/* ---------- Pack famille — 2 plata (page produit) ---------- */
body.celox-redesign .clx-pack-family {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin-top: 16px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1px solid rgba(120, 53, 15, 0.15);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #78350F;
  transition: all var(--t-fast);
}

body.celox-redesign .clx-pack-family:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(146, 64, 14, 0.2);
  color: #78350F;
  text-decoration: none;
}

body.celox-redesign .clx-pack-family__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400E;
  flex-shrink: 0;
}

body.celox-redesign .clx-pack-family__body {
  flex: 1;
  min-width: 0;
}

body.celox-redesign .clx-pack-family__title {
  font-size: 15px;
  font-weight: 700;
  color: #78350F;
  margin-bottom: 2px;
}

body.celox-redesign .clx-pack-family__sub {
  font-size: 13px;
  color: #92400E;
}

body.celox-redesign .clx-pack-family__sub strong {
  color: #78350F;
  font-weight: 700;
}

body.celox-redesign .clx-pack-family__price {
  text-align: right;
  flex-shrink: 0;
}

body.celox-redesign .clx-pack-family__old {
  display: block;
  font-size: 12px;
  color: #92400E;
  text-decoration: line-through;
  opacity: 0.7;
}

body.celox-redesign .clx-pack-family__new {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #78350F;
}

@media (max-width: 480px) {
  body.celox-redesign .clx-pack-family {
    flex-wrap: wrap;
    padding: 14px 16px;
  }
  body.celox-redesign .clx-pack-family__price {
    width: 100%;
    text-align: left;
    margin-top: 4px;
  }
  body.celox-redesign .clx-pack-family__new {
    display: inline;
  }
  body.celox-redesign .clx-pack-family__old {
    display: inline;
    margin-right: 8px;
  }
}

/* ---------- Cross-sell sur la page panier ---------- */
body.celox-redesign.page-cart .clx-crosssell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 16px;
}

body.celox-redesign.page-cart .clx-crosssell__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

body.celox-redesign.page-cart .clx-crosssell__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.celox-redesign.page-cart .clx-crosssell__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--t-fast);
}

body.celox-redesign.page-cart .clx-crosssell__item:hover {
  border-color: var(--border-strong);
  background: #fff;
}

body.celox-redesign.page-cart .clx-crosssell__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

body.celox-redesign.page-cart .clx-crosssell__info {
  flex: 1;
  min-width: 0;
}

body.celox-redesign.page-cart .clx-crosssell__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

body.celox-redesign.page-cart .clx-crosssell__desc {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

body.celox-redesign.page-cart .clx-crosssell__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

body.celox-redesign.page-cart .clx-crosssell__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--t-fast);
}

body.celox-redesign.page-cart .clx-crosssell__btn:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* ---------- Order bump (cart) ---------- */
body.celox-redesign.page-cart .clx-order-bump {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  margin-top: 14px;
  background: linear-gradient(135deg, #FEF9C3 0%, #FDE68A 100%);
  border: 2px dashed #92400E;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #78350F;
  position: relative;
  transition: all var(--t-fast);
}

body.celox-redesign.page-cart .clx-order-bump:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(146, 64, 14, 0.18);
  color: #78350F;
  text-decoration: none;
}

body.celox-redesign.page-cart .clx-order-bump__check {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 2px solid #92400E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400E;
  flex-shrink: 0;
}

body.celox-redesign.page-cart .clx-order-bump__body {
  flex: 1;
  min-width: 0;
}

body.celox-redesign.page-cart .clx-order-bump__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

body.celox-redesign.page-cart .clx-order-bump__title strong {
  color: #78350F;
  font-weight: 700;
}

body.celox-redesign.page-cart .clx-order-bump__sub {
  font-size: 13px;
  opacity: 0.85;
}

body.celox-redesign.page-cart .clx-order-bump__sub strong {
  color: #78350F;
}

body.celox-redesign.page-cart .clx-order-bump__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- Bouton "Offrir" (page produit) ---------- */
body.celox-redesign .clx-gift-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 10px;
  transition: all var(--t-fast);
}

body.celox-redesign .clx-gift-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* ---------- WhatsApp floating button ---------- */
body.celox-redesign .clx-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 95;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}

body.celox-redesign .clx-whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}

body.celox-redesign .clx-whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

/* Cacher le WhatsApp si la barre mobile sticky est visible (évite les conflits) */
@media (max-width: 768px) {
  body.celox-redesign.page-product .clx-whatsapp-fab {
    bottom: 88px;
  }
  body.celox-redesign .clx-whatsapp-fab {
    width: 52px;
    height: 52px;
  }
}

/* ---------- Trust sidebar checkout ---------- */
body.celox-redesign .clx-trust-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

body.celox-redesign .clx-trust-sidebar__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

body.celox-redesign .clx-trust-sidebar__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

body.celox-redesign .clx-trust-sidebar__item:last-child {
  margin-bottom: 0;
}

body.celox-redesign .clx-trust-sidebar__item .icon {
  color: var(--text-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

body.celox-redesign .clx-trust-sidebar__item strong {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

/* ---------- Photo équipe checkout ---------- */
body.celox-redesign .clx-team-card {
  background: linear-gradient(135deg, #fff 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
}

body.celox-redesign .clx-team-card__avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

body.celox-redesign .clx-team-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--bg-tertiary);
  border: 3px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: -10px;
}

body.celox-redesign .clx-team-card__avatar:first-child {
  margin-left: 0;
}

body.celox-redesign .clx-team-card__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

body.celox-redesign .clx-team-card__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---------- FAQ contextuelle checkout ---------- */
body.celox-redesign .clx-checkout-faq {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}

body.celox-redesign .clx-checkout-faq__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

body.celox-redesign .clx-checkout-faq details {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

body.celox-redesign .clx-checkout-faq details:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body.celox-redesign .clx-checkout-faq summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
}

body.celox-redesign .clx-checkout-faq summary::-webkit-details-marker {
  display: none;
}

body.celox-redesign .clx-checkout-faq summary::after {
  content: '+';
  float: right;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-tertiary);
}

body.celox-redesign .clx-checkout-faq details[open] summary::after {
  content: '−';
}

body.celox-redesign .clx-checkout-faq details p {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------- Sticky reassurance bar pendant checkout ---------- */
body.celox-redesign.page-checkout .clx-checkout-trustbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

body.celox-redesign.page-checkout .clx-checkout-trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.celox-redesign.page-checkout .clx-checkout-trustbar__item .icon {
  color: var(--success);
}

@media (max-width: 768px) {
  body.celox-redesign.page-checkout .clx-checkout-trustbar {
    gap: 12px;
    font-size: 11px;
    padding: 10px 16px;
    flex-wrap: wrap;
  }
}

/* === 09-animations.css === */
/* ============================================================
   09 — ANIMATIONS — Pro & subtiles, style Apple/Stripe
   ============================================================ */

/* Respect du paramètre OS "reduce motion" */
@media (prefers-reduced-motion: reduce) {
  body.celox-redesign *,
  body.celox-redesign *::before,
  body.celox-redesign *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 5. Smooth scroll global pour les ancres ---------- */
html:has(body.celox-redesign) {
  scroll-behavior: smooth;
  scroll-padding-top: 110px; /* compense la hauteur du header sticky */
}

/* ============================================================
   1. FADE-UP AU SCROLL DES SECTIONS
   ============================================================ */
body.celox-redesign [data-clx-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.celox-redesign [data-clx-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais en cascade pour les enfants (cards d'une grille) */
body.celox-redesign [data-clx-reveal].is-visible > *:nth-child(1) { transition-delay: 0ms; }
body.celox-redesign [data-clx-reveal].is-visible > *:nth-child(2) { transition-delay: 80ms; }
body.celox-redesign [data-clx-reveal].is-visible > *:nth-child(3) { transition-delay: 160ms; }
body.celox-redesign [data-clx-reveal].is-visible > *:nth-child(4) { transition-delay: 240ms; }

/* ============================================================
   3. HOVER RAFFINÉ SUR LES CARDS
   ============================================================ */
body.celox-redesign .clx-card {
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 250ms ease,
              box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.celox-redesign .clx-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Zoom subtil de l'image dans les use cases au hover */
body.celox-redesign .clx-usecase {
  transition: border-color 250ms ease, box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.celox-redesign .clx-usecase:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

body.celox-redesign .clx-usecase__visual {
  overflow: hidden;
}

body.celox-redesign .clx-usecase__visual img {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

body.celox-redesign .clx-usecase:hover .clx-usecase__visual img {
  transform: scale(1.05);
}

/* Idem sur les version cards */
body.celox-redesign .clx-version__image {
  overflow: hidden;
}

body.celox-redesign .clx-version__image img {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

body.celox-redesign .clx-version:hover .clx-version__image img {
  transform: scale(1.04);
}

body.celox-redesign .clx-version {
  transition: border-color 250ms ease, box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1), transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.celox-redesign .clx-version:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   4. HERO IMAGE BREATHING (très lent)
   ============================================================ */
@keyframes clx-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

body.celox-redesign .clx-hero__visual img {
  animation: clx-breathe 9s ease-in-out infinite;
  will-change: transform;
}

/* ============================================================
   6. CART BADGE BOUNCE ON UPDATE
   ============================================================ */
@keyframes clx-bounce-badge {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.4); background: var(--success); }
  40%  { transform: scale(0.9); }
  60%  { transform: scale(1.15); }
  80%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

body.celox-redesign .clx-header__cart-badge.is-bouncing {
  animation: clx-bounce-badge 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   7. UNDERLINE ANIMÉ SUR LES LIENS NAV
   ============================================================ */
body.celox-redesign .clx-header__nav a {
  position: relative;
  padding: 4px 0;
}

body.celox-redesign .clx-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.celox-redesign .clx-header__nav a:hover::after,
body.celox-redesign .clx-header__nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ============================================================
   8. LOADER SUBTIL SUR LES BOUTONS D'ACHAT
   ============================================================ */
body.celox-redesign .add-to-cart,
body.celox-redesign .clx-btn--primary,
body.celox-redesign .clx-btn--white {
  position: relative;
  overflow: hidden;
}

body.celox-redesign .add-to-cart.is-loading {
  color: transparent !important;
  pointer-events: none;
}

body.celox-redesign .add-to-cart.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 999px;
  animation: clx-spin 600ms linear infinite;
}

@keyframes clx-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   9. ÉTOILES SPARKLE/GLOW DANS LES TÉMOIGNAGES
   ============================================================ */
@keyframes clx-star-glow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(245, 180, 0, 0));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(245, 180, 0, 0.5));
  }
}

body.celox-redesign .clx-testimonial .clx-stars .icon {
  animation: clx-star-glow 4s ease-in-out infinite;
  will-change: filter;
}

body.celox-redesign .clx-testimonial .clx-stars .icon:nth-child(1) { animation-delay: 0s; }
body.celox-redesign .clx-testimonial .clx-stars .icon:nth-child(2) { animation-delay: 0.3s; }
body.celox-redesign .clx-testimonial .clx-stars .icon:nth-child(3) { animation-delay: 0.6s; }
body.celox-redesign .clx-testimonial .clx-stars .icon:nth-child(4) { animation-delay: 0.9s; }
body.celox-redesign .clx-testimonial .clx-stars .icon:nth-child(5) { animation-delay: 1.2s; }

/* ============================================================
   10. CTA BUTTON GRADIENT AU HOVER
   ============================================================ */
body.celox-redesign .clx-btn--primary {
  background: var(--accent);
  position: relative;
  z-index: 1;
}

body.celox-redesign .clx-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A2A2C 0%, #0A0A0A 50%, #000000 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 350ms ease;
  z-index: -1;
}

body.celox-redesign .clx-btn--primary:hover::before {
  opacity: 1;
}

body.celox-redesign .clx-btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

body.celox-redesign .clx-btn--white {
  position: relative;
  z-index: 1;
}

body.celox-redesign .clx-btn--white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 50%, #e8e8e8 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 350ms ease;
  z-index: -1;
}

body.celox-redesign .clx-btn--white:hover::before {
  opacity: 1;
}

/* ============================================================
   2. COUNT-UP — Style des chiffres animés (la valeur est gérée en JS)
   ============================================================ */
body.celox-redesign [data-clx-counter] {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

/* ============================================================
   Bonus : transition douce sur les blocs cliquables génériques
   ============================================================ */
body.celox-redesign .clx-trust-item,
body.celox-redesign .clx-feature {
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bonus : link hover dans le footer */
body.celox-redesign .clx-footer__list a {
  position: relative;
  display: inline-block;
  transition: color 200ms ease, transform 200ms ease;
}

body.celox-redesign .clx-footer__list a:hover {
  transform: translateX(2px);
  color: var(--text-primary);
}
