/** Shopify CDN: Minification failed

Line 2027:0 Unexpected "`"

**/
/* ============================================================
   CleanCar Lab â€” CSS Page Produit
   Version: 1.0
   Inclure dans layout/theme.liquid avant </head> :
   {{ 'ccl-product.css' | asset_url | stylesheet_tag }}
   ============================================================ */

/* ---- VARIABLES ------------------------------------------- */
:root {
  --ccl-red:        #C8102E;
  --ccl-red-dark:   #A50D25;
  --ccl-black:      #0D0D0D;
  --ccl-black-soft: #1A1A1A;
  --ccl-white:      #FFFFFF;
  --ccl-off-white:  #F8F8F8;
  --ccl-grey:       #6B7280;
  --ccl-grey-light: #9CA3AF;
  --ccl-border:     #EBEBEB;
  --ccl-green:      #16A34A;
  --ccl-tr:         0.2s ease;
  --ccl-container:  min(90%, 1280px);
}

/* ---- BASE ------------------------------------------------- */
.ccl-product-page * { box-sizing: border-box; }
.ccl-product-page { font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif; }

/* ---- BRAND BAR ------------------------------------------- */
.ccl-brand-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--ccl-red) 55%, rgba(200,16,46,.08) 100%);
}

/* ---- PRODUCT WRAP ---------------------------------------- */
.ccl-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--ccl-container);
  margin: 0 auto;
  padding: 20px 20px 0;
  gap: 20px;
  background: #fff;
}

/* ---- GALLERY --------------------------------------------- */
.ccl-gallery {
  padding: 18px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ccl-gallery__main {
  aspect-ratio: 1;
  background: #EFEFEF;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  transition: background 0.3s;
}

.ccl-gallery__main-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ccl-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ccl-gallery__badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-left: 3px solid var(--ccl-red);
}

.ccl-gallery__thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ccl-gallery__thumbs::-webkit-scrollbar { display: none; }

.ccl-gallery__thumb {
  width: 52px;
  height: 52px;
  border-radius: 7px;
  background: #F2F2F2;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ccl-tr);
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}
.ccl-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ccl-gallery__thumb.active,
.ccl-gallery__thumb:hover { border-color: var(--ccl-red); }

/* ---- INFO COLUMN ----------------------------------------- */
.ccl-product-info {
  padding: 18px 0 20px 16px;
  display: flex;
  flex-direction: column;
}

/* Badges */
.ccl-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.ccl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  line-height: 1.4;
}
.ccl-badge svg { width: 11px; height: 11px; }
.ccl-badge--red    { background: var(--ccl-red); color: #fff; }
.ccl-badge--outline { border: 1.5px solid var(--ccl-red); color: var(--ccl-red); background: transparent; }
.ccl-badge--dark   { background: var(--ccl-black); color: #fff; }

/* Title */
.ccl-product-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ccl-black);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin: 0 0 4px;
}

/* Subtitle (metafield) */
.ccl-product-subtitle {
  font-size: 12px;
  color: var(--ccl-grey);
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 7px;
}

/* Stock */
.ccl-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: var(--ccl-green);
  font-weight: 600;
  margin-bottom: 10px;
}
.ccl-stock__dot {
  width: 6px;
  height: 6px;
  background: var(--ccl-green);
  border-radius: 50%;
  animation: ccl-pulse 2s infinite;
}
@keyframes ccl-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* Stars */
.ccl-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.ccl-rating__stars { color: var(--ccl-red); font-size: 12.5px; letter-spacing: 1.5px; }
.ccl-rating__link {
  font-size: 11px;
  color: var(--ccl-grey);
  text-decoration: underline;
  text-decoration-color: rgba(107,114,128,.3);
}
.ccl-rating__link:hover { color: var(--ccl-black); }

/* Separator */
.ccl-divider { height: 1px; background: var(--ccl-border); margin-bottom: 14px; }

/* Benefits */
.ccl-benefits { list-style: none; margin: 0 0 14px; padding: 0; }
.ccl-benefit {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid #F0F0F0;
}
.ccl-benefit:last-child { border-bottom: none; }

.ccl-benefit__icon {
  width: 20px;
  height: 20px;
  background: var(--ccl-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(200,16,46,.28);
}
.ccl-benefit__icon svg { width: 11px; height: 11px; color: #fff; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.ccl-benefit__title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ccl-black);
  line-height: 1.3;
  display: block;
  margin-bottom: 2px;
}
.ccl-benefit__detail {
  font-size: 10.5px;
  color: var(--ccl-grey);
  line-height: 1.45;
  display: block;
}

/* Price */
.ccl-price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ccl-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--ccl-black);
  letter-spacing: -.03em;
  line-height: 1;
}
.ccl-price--sale { color: var(--ccl-red); }
.ccl-price-compare {
  font-size: 16px;
  color: var(--ccl-grey-light);
  text-decoration: line-through;
  margin-left: 8px;
}
.ccl-price-note { text-align: right; }
.ccl-price-note__top { font-size: 10px; font-weight: 700; color: var(--ccl-green); }
.ccl-price-note__bot { font-size: 10px; color: var(--ccl-grey); }

/* ATC Row */
.ccl-atc-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
  margin-bottom: 9px;
}

.ccl-qty {
  display: flex;
  border: 1.5px solid var(--ccl-border);
  border-radius: 7px;
  height: 50px;
  overflow: hidden;
}
.ccl-qty__btn {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ccl-black);
  transition: background var(--ccl-tr);
  font-family: inherit;
}
.ccl-qty__btn:hover { background: var(--ccl-off-white); }
.ccl-qty__input {
  flex: 1;
  text-align: center;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  min-width: 0;
  -moz-appearance: textfield;
}
.ccl-qty__input::-webkit-outer-spin-button,
.ccl-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }

.ccl-btn-atc {
  height: 50px;
  background: var(--ccl-red);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ccl-tr), transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(200,16,46,.32);
  font-family: inherit;
  width: 100%;
}
.ccl-btn-atc svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ccl-btn-atc:hover { background: var(--ccl-red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,.42); }
.ccl-btn-atc:active { transform: translateY(0); }
.ccl-btn-atc.is-loading { opacity: .75; cursor: wait; }
.ccl-btn-atc.is-added { background: var(--ccl-green); box-shadow: none; }
.ccl-btn-atc:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* Urgency */
.ccl-urgency {
  background: #FFFBF0;
  border: 1.5px solid #FDE68A;
  border-radius: 7px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.ccl-urgency__icon { color: #B45309; flex-shrink: 0; width: 15px; height: 15px; }
.ccl-urgency__text { font-size: 11px; color: var(--ccl-black); line-height: 1.5; }
.ccl-urgency__countdown { font-weight: 800; color: var(--ccl-red); font-variant-numeric: tabular-nums; font-size: 13px; }

/* Shipping bar */
.ccl-shipping-bar {
  background: var(--ccl-black-soft);
  border-radius: 8px;
  padding: 10px 13px;
  margin-bottom: 16px;
}
.ccl-shipping-bar__msg {
  font-size: 11px;
  color: #fff;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ccl-shipping-bar__msg strong { color: var(--ccl-red); }
.ccl-shipping-bar__msg.is-free strong { color: #4ADE80; }
.ccl-shipping-bar__track {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  overflow: hidden;
}
.ccl-shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ccl-red), #FF6B6B);
  border-radius: 100px;
  transition: width .5s ease, background .4s;
  will-change: width;
}
.ccl-shipping-bar__fill.is-complete {
  background: linear-gradient(90deg, var(--ccl-green), #4ADE80);
}

/* Reassurance */
.ccl-reassurance { display: flex; flex-direction: column; gap: 8px; }
.ccl-reassurance__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.ccl-reassurance__item {
  background: #FAFAFA;
  border: 1px solid #EDEDED;
  border-radius: 9px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all var(--ccl-tr);
}
.ccl-reassurance__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ccl-red);
  border-radius: 9px 0 0 9px;
}
.ccl-reassurance__item:hover {
  border-color: rgba(200,16,46,.25);
  background: #fff;
  box-shadow: 0 2px 12px rgba(200,16,46,.08);
}
.ccl-reassurance__icon {
  width: 34px;
  height: 34px;
  background: rgba(200,16,46,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ccl-tr);
}
.ccl-reassurance__item:hover .ccl-reassurance__icon { background: rgba(200,16,46,.14); }
.ccl-reassurance__icon svg { width: 17px; height: 17px; stroke: var(--ccl-red); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ccl-reassurance__label { font-size: 11px; font-weight: 800; color: var(--ccl-black); line-height: 1.25; display: block; }
.ccl-reassurance__sub { font-size: 9.5px; color: var(--ccl-grey); line-height: 1.3; margin-top: 1px; display: block; }

/* AccordÃ©ons */
.ccl-accordions { border-top: 1px solid var(--ccl-border); }
.ccl-accordion { border-bottom: 1px solid var(--ccl-border); }
.ccl-accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ccl-black);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color var(--ccl-tr);
  font-family: inherit;
}
.ccl-accordion__trigger:hover,
.ccl-accordion__trigger[aria-expanded="true"] { color: var(--ccl-red); }
.ccl-accordion__icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s;
}
.ccl-accordion__trigger[aria-expanded="true"] .ccl-accordion__icon { transform: rotate(180deg); }
.ccl-accordion__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ccl-accordion__trigger[aria-expanded="true"] + .ccl-accordion__body { max-height: 2000px; }.ccl-accordion__content {
  padding: 0 20px 14px;
  font-size: 12px;
  color: var(--ccl-black);
  line-height: 1.7;
}
.ccl-accordion__content p { margin: 0 0 8px; }
.ccl-accordion__content p:last-child { margin: 0; }
.ccl-accordion__content ul { padding-left: 18px; margin: 0; }
.ccl-accordion__content li { margin-bottom: 5px; }
.ccl-accordion__content li::marker { color: var(--ccl-red); }

/* Spec grid */
.ccl-spec-grid { display: grid; grid-template-columns: auto 1fr; gap: 3px 14px; font-size: 11.5px; }
.ccl-spec-key { color: var(--ccl-grey); font-weight: 600; white-space: nowrap; padding: 2px 0; }
.ccl-spec-val { color: var(--ccl-black); padding: 2px 0; }

/* Steps */
.ccl-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ccl-step { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; }
.ccl-step__num {
  width: 22px; height: 22px;
  background: var(--ccl-red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   BELOW FOLD SECTIONS
   ============================================================ */

.ccl-section { padding: 36px 0; }
.ccl-container { max-width: var(--ccl-container); margin: 0 auto; padding: 0 20px; }
.ccl-section-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ccl-red);
  display: block;
  margin-bottom: 9px;
}
.ccl-section-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.ccl-section-title em { font-style: italic; font-weight: 300; }

/* STATS */
.ccl-stats { background: var(--ccl-black); padding: 36px 0; }
.ccl-stats__sub { font-size: 11.5px; color: rgba(255,255,255,.38); margin-bottom: 22px; }
.ccl-stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ccl-stat__num { color: #fff; font-size: 22px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.ccl-stat__unit { color: var(--ccl-red); font-size: 13px; font-weight: 800; }
.ccl-stat__lbl { color: rgba(255,255,255,.4); font-size: 10.5px; margin-top: 4px; line-height: 1.4; }
.ccl-stats__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65);
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: all var(--ccl-tr);
  font-family: inherit;
}
.ccl-stats__cta:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* BENEFIT ICONS */
.ccl-bens-icons { background: var(--ccl-off-white); }
.ccl-bens-icons__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.ccl-bens-icons__img {
  background: #E8E8E8;
  border-radius: 10px;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ccl-bens-icons__img img { width: 100%; height: 100%; object-fit: cover; }
.ccl-bens-icons__sub { font-size: 12px; color: var(--ccl-grey); margin-bottom: 18px; line-height: 1.5; }
.ccl-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ccl-icon-item { display: flex; flex-direction: column; gap: 5px; }
.ccl-icon-wrap {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ccl-border);
}
.ccl-icon-wrap svg { width: 18px; height: 18px; stroke: var(--ccl-red); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ccl-icon-label { font-size: 11px; font-weight: 700; color: var(--ccl-black); line-height: 1.3; }
.ccl-icon-sub { font-size: 10px; color: var(--ccl-grey); line-height: 1.3; }
.ccl-bens-icons__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ccl-black);
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-size: 11.5px;
  font-weight: 800;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--ccl-tr);
  font-family: inherit;
}
.ccl-bens-icons__cta:hover { background: var(--ccl-red); }

/* PCT STATS */
.ccl-pct { background: #fff; }
.ccl-pct__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ccl-pct__num { font-size: 26px; font-weight: 800; color: var(--ccl-black); letter-spacing: -.02em; line-height: 1; }
.ccl-pct__num sup { font-size: 14px; }
.ccl-pct__lbl { font-size: 10.5px; color: var(--ccl-black); margin: 5px 0; line-height: 1.35; }
.ccl-pct__lbl strong { font-weight: 800; }
.ccl-pct__bar { height: 5px; background: var(--ccl-border); border-radius: 100px; overflow: hidden; margin-top: 5px; }
.ccl-pct__fill { height: 100%; background: var(--ccl-black); border-radius: 100px; }
.ccl-pct__src { font-size: 10px; color: var(--ccl-grey); text-align: center; margin-top: 14px; text-decoration: underline; cursor: pointer; display: block; }

/* LAB */
.ccl-lab { background: var(--ccl-black-soft); color: #fff; }
.ccl-lab__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.ccl-lab__title { color: #fff; margin-bottom: 9px; }
.ccl-lab__text { font-size: 11.5px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 14px; }
.ccl-lab__points { display: flex; flex-direction: column; gap: 8px; }
.ccl-lab__point { display: flex; align-items: flex-start; gap: 8px; font-size: 11.5px; color: rgba(255,255,255,.65); }
.ccl-lab__point svg { width: 14px; height: 14px; stroke: var(--ccl-red); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.ccl-lab__visual {
  background: var(--ccl-black);
  border-radius: 10px;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ccl-lab__visual img { width: 100%; height: 100%; object-fit: cover; }

/* SOCIAL PROOF */
.ccl-sp { background: #F5F5F1; }
.ccl-sp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.ccl-sp__stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ccl-sp__stars-ico { color: var(--ccl-red); font-size: 16px; letter-spacing: 1px; }
.ccl-sp__stars-count { font-size: 12px; color: var(--ccl-black); font-weight: 600; }
.ccl-sp__title { margin-bottom: 8px; }
.ccl-sp__sub { font-size: 12px; color: var(--ccl-grey); line-height: 1.6; margin-bottom: 16px; }
.ccl-sp__reviews { display: flex; flex-direction: column; gap: 8px; }
.ccl-sp__review {
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  border-left: 3px solid var(--ccl-red);
}
.ccl-sp__review-stars { color: var(--ccl-red); font-size: 10px; letter-spacing: .5px; margin-bottom: 3px; }
.ccl-sp__review-text { font-size: 11px; color: var(--ccl-black); font-style: italic; line-height: 1.5; margin-bottom: 5px; }
.ccl-sp__review-meta { font-size: 9px; color: var(--ccl-grey); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.ccl-sp__review-check { font-size: 9px; color: var(--ccl-green); background: rgba(22,163,74,.1); padding: 1px 6px; border-radius: 100px; }
.ccl-sp__visual { background: #E8E8E8; border-radius: 12px; aspect-ratio: 3/4; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ccl-sp__visual img { width: 100%; height: 100%; object-fit: cover; }

/* AMBASSADORS */
.ccl-ambassadors { background: #fff; }
.ccl-ambassadors__sub { font-size: 12px; color: var(--ccl-grey); margin-bottom: 24px; }
.ccl-ambassadors__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.ccl-ambassadors__grid::-webkit-scrollbar { display: none; }
.ccl-ambassador { flex-shrink: 0; width: 130px; cursor: pointer; }
.ccl-ambassador__photo {
  width: 130px;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.ccl-ambassador__photo img { width: 100%; height: 100%; object-fit: cover; }
.ccl-ambassador__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  padding: 20px 8px 8px;
}
.ccl-ambassador__name { font-size: 11px; font-weight: 800; color: #fff; }
.ccl-ambassador__car { font-size: 10px; color: rgba(255,255,255,.7); }
.ccl-ambassador__quote { font-size: 10.5px; color: var(--ccl-grey); line-height: 1.4; font-style: italic; }

/* PDF */
.ccl-pdf { padding: 20px 0; background: #fff; }
.ccl-pdf__box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--ccl-border);
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--ccl-off-white);
}
.ccl-pdf__icon {
  width: 44px; height: 44px;
  background: var(--ccl-black);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ccl-pdf__icon svg { width: 20px; height: 20px; stroke: var(--ccl-red); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ccl-pdf__info { flex: 1; }
.ccl-pdf__title { font-size: 13px; font-weight: 800; color: var(--ccl-black); margin-bottom: 2px; }
.ccl-pdf__sub { font-size: 11px; color: var(--ccl-grey); line-height: 1.4; }
.ccl-pdf__btn {
  background: var(--ccl-black);
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--ccl-tr);
  font-family: inherit;
  text-decoration: none;
}
.ccl-pdf__btn:hover { background: var(--ccl-black-soft); }
.ccl-pdf__btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* UPSELL */
.ccl-upsell { padding: 20px 0; background: #fff; }
.ccl-upsell__label { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ccl-red); margin-bottom: 9px; display: block; }
.ccl-upsell__row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ccl-off-white);
  border: 1.5px solid rgba(200,16,46,.14);
  border-radius: 10px;
  padding: 12px;
  flex-wrap: wrap;
}
.ccl-upsell__item { display: flex; align-items: center; gap: 9px; flex: 1; min-width: 100px; }
.ccl-upsell__thumb { width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ccl-upsell__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ccl-upsell__name { font-size: 11px; font-weight: 700; color: var(--ccl-black); margin-bottom: 1px; }
.ccl-upsell__price { font-size: 11px; color: var(--ccl-grey); }
.ccl-upsell__plus { font-size: 18px; color: var(--ccl-grey); font-weight: 300; flex-shrink: 0; }
.ccl-upsell__actions { display: flex; flex-direction: column; gap: 5px; }
.ccl-upsell__total { font-size: 11px; color: var(--ccl-grey); }
.ccl-upsell__total strong { color: var(--ccl-black); font-weight: 800; font-size: 13px; }
.ccl-btn-bundle {
  height: 36px;
  background: var(--ccl-red);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ccl-tr);
  font-family: inherit;
}
.ccl-btn-bundle:hover { background: var(--ccl-red-dark); }
.ccl-btn-bundle.is-added { background: var(--ccl-green); }
.ccl-btn-ghost {
  background: transparent;
  border: 1.5px solid var(--ccl-border);
  color: var(--ccl-grey);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all var(--ccl-tr);
  font-family: inherit;
}
.ccl-btn-ghost:hover { border-color: var(--ccl-black); color: var(--ccl-black); }

/* FAQ */
.ccl-faq { background: #fff; }
.ccl-faq__header { text-align: center; margin-bottom: 16px; }

/* FINAL CTA */
.ccl-final-cta { background: var(--ccl-black); text-align: center; }
.ccl-final-cta__inner { max-width: 560px; margin: 0 auto; }
.ccl-final-cta__title { color: #fff; margin-bottom: 8px; }
.ccl-final-cta__guarantee { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.ccl-btn-final {
  background: var(--ccl-red);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 5px;
  cursor: pointer;
  transition: background var(--ccl-tr), transform .15s;
  font-family: inherit;
}
.ccl-btn-final:hover { background: var(--ccl-red-dark); transform: translateY(-1px); }
.ccl-final-cta__trust { display: flex; justify-content: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.ccl-final-cta__trust span { font-size: 10px; color: rgba(255,255,255,.28); }

/* STICKY ATC MOBILE */
.ccl-sticky-atc {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  border-top: 1px solid var(--ccl-border);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.ccl-sticky-atc.is-visible { transform: translateY(0); }
.ccl-sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: 500px;
  margin: 0 auto;
}
.ccl-sticky-atc__info { flex: 1; overflow: hidden; }
.ccl-sticky-atc__title { font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccl-sticky-atc__price { font-size: 13px; font-weight: 800; }
.ccl-sticky-atc__btn {
  flex-shrink: 0;
  background: var(--ccl-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 13px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ccl-tr);
  font-family: inherit;
}
.ccl-sticky-atc__btn:hover { background: var(--ccl-red-dark); }

/* ============================================================
   RESPONSIVE â€” 5 BREAKPOINTS
   ============================================================ */

/* iMac 5K */
@media (min-width: 2560px) {
  :root { --ccl-container: min(90%, 1600px); }
  .ccl-product-wrap { padding: 32px 32px 0; gap: 60px; }
}

/* Desktop 1440px */
@media (min-width: 1440px) {
  .ccl-product-wrap { gap: 48px; padding: 24px 24px 0; }
}

/* Laptop 1024-1279px */
@media (max-width: 1279px) {
  .ccl-product-wrap { gap: 24px; padding: 20px 16px 0; }
  .ccl-container { padding: 0 16px; }
}

/* Tablette 768-1023px */
@media (max-width: 1023px) {
  .ccl-lab__grid { grid-template-columns: 1fr; }
  .ccl-sp__grid { grid-template-columns: 1fr; }
  .ccl-sp__visual { display: none; }
  .ccl-bens-icons__grid { grid-template-columns: 1fr; }
  .ccl-bens-icons__img { aspect-ratio: 16/9; }
  .ccl-pct__grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
}

/* Mobile max 767px */
@media (max-width: 767px) {
  .ccl-product-wrap {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }
  .ccl-gallery { padding: 0; border-radius: 0; }
  .ccl-gallery__main { border-radius: 0; }
  .ccl-gallery__thumbs { padding: 8px 12px 0; }
  .ccl-product-info { padding: 16px; }
  .ccl-product-title { font-size: 15px; }
  .ccl-price { font-size: 26px; }
  .ccl-atc-row { grid-template-columns: 82px 1fr; }
  .ccl-btn-atc { font-size: 10px; gap: 5px; }
  .ccl-reassurance__row { gap: 6px; }
  .ccl-reassurance__label { font-size: 10px; }
  .ccl-stats__grid { grid-template-columns: 1fr 1fr; }
  .ccl-pct__grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .ccl-pct__num { font-size: 20px; }
  .ccl-upsell__row { flex-direction: column; }
  /* Sticky ATC visible sur mobile */
  .ccl-sticky-atc { display: block; }
  body.ccl-has-sticky { padding-bottom: 72px; }
}

/* Mobile S 375px */
@media (max-width: 410px) {
  .ccl-atc-row { grid-template-columns: 76px 1fr; gap: 6px; }
  .ccl-btn-atc { font-size: 9.5px; padding: 0 8px; }
  .ccl-reassurance__row { grid-template-columns: 1fr; }
}
/* Ambassadeurs plus grands */
.ccl-ambassadors { padding: 40px 0; }
.ccl-ambassadors__grid { gap: 20px; padding: 0 20px 12px; }
.ccl-ambassador { width: 200px; }
.ccl-ambassador__photo { width: 200px; height: 260px; border-radius: 14px; margin-bottom: 14px; }
.ccl-ambassador__name { font-size: 14px; font-weight: 800; }
.ccl-ambassador__car { font-size: 12px; color: rgba(255,255,255,.75); }
.ccl-ambassador__quote { font-size: 13px; line-height: 1.55; margin-top: 8px; color: #4B5563; }
.ccl-ambassadors__sub { font-size: 13px; margin-bottom: 28px; }
/* Fix upsell layout - boutons toujours visibles */
.ccl-upsell__row {
  flex-direction: column !important;
  align-items: stretch !important;
}
.ccl-upsell__items-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ccl-upsell__actions {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #EBEBEB;
  flex-wrap: wrap;
}
.ccl-upsell__total {
  flex: 1;
  font-size: 12px;
}
.ccl-btn-bundle {
  background: #C8102E;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.ccl-btn-bundle:hover { background: #A50D25; }
.ccl-btn-bundle.is-added { background: #16A34A; }
.ccl-btn-ghost {
  background: transparent;
  border: 1.5px solid #EBEBEB;
  color: #6B7280;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 9px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.ccl-btn-ghost:hover { border-color: #0D0D0D; color: #0D0D0D; }

/* Fix PDF - toujours visible */
.ccl-pdf { padding: 20px; background: #fff; }
.ccl-pdf__box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid #EBEBEB;
  border-radius: 10px;
  padding: 14px 16px;
  background: #F8F8F8;
}
.ccl-pdf__btn {
  background: #0D0D0D !important;
  color: #fff !important;
  border: none;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 6px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
/* FAQ — plus gros + séparateurs rouges */
.ccl-faq .ccl-section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.ccl-faq .ccl-accordions { border-top: 2.5px solid #C8102E; }
.ccl-faq .ccl-accordion { border-bottom: 2.5px solid #C8102E; }
.ccl-faq .ccl-accordion__trigger { font-size: 15px; font-weight: 700; padding: 20px 20px; }
.ccl-faq .ccl-accordion__trigger:hover,
.ccl-faq .ccl-accordion__trigger[aria-expanded="true"] { color: #C8102E; }
.ccl-faq .ccl-accordion__content { font-size: 13px; line-height: 1.75; padding: 0 20px 20px; color: #4B5563; }

/* Upsell — badge -10% + prix barré */
.ccl-upsell__discount-badge {
  display: inline-flex;
  align-items: center;
  background: #C8102E;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: .04em;
  margin-left: 6px;
  vertical-align: middle;
}
.ccl-upsell__price-original {
  font-size: 11px;
  color: #9CA3AF;
  text-decoration: line-through;
  display: block;
}
.ccl-upsell__price-discounted {
  font-size: 13px;
  font-weight: 800;
  color: #C8102E;
}
.ccl-upsell__promo-note {
  font-size: 10px;
  color: #16A34A;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
/* ---- TEXTES GRIS PLUS LISIBLES ---- */
.ccl-lab__text { color: rgba(255,255,255,.82) !important; }
.ccl-lab__point { color: rgba(255,255,255,.88) !important; }
.ccl-final-cta__guarantee { color: rgba(255,255,255,.7) !important; font-size: 13px !important; }
.ccl-final-cta__trust span { color: rgba(255,255,255,.55) !important; }

/* ---- FAQ PLUS GRAND ---- */
.ccl-faq .ccl-section-title { font-size: clamp(1.8rem,3.5vw,2.6rem) !important; margin-bottom: 10px; }
.ccl-faq .ccl-accordion__trigger { font-size: 16px !important; padding: 22px 20px !important; font-weight: 700; }
.ccl-faq .ccl-accordion__content { font-size: 14px !important; line-height: 1.8 !important; padding: 0 20px 22px !important; }

/* ---- PHOTOS PLUS GRANDES DESKTOP ---- */
@media (min-width: 1024px) {
  .ccl-product-wrap { grid-template-columns: 55% 45% !important; gap: 40px !important; }
  .ccl-gallery__main { max-height: 580px; }
  .ccl-gallery__thumb { width: 64px !important; height: 64px !important; }
}

/* ---- POPUP UPSELL STICKY ---- */
#ccl-upsell-sticky {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  border: 1px solid #EBEBEB;
  overflow: hidden;
  animation: ccl-slidein .3s ease;
}
@keyframes ccl-slidein { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
#ccl-upsell-sticky.is-visible { display: block; }
.ccl-us__header {
  background: var(--ccl-black, #0D0D0D);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ccl-us__header-title { font-size: 11px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .06em; }
.ccl-us__close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 18px; cursor: pointer; line-height: 1; padding: 0; }
.ccl-us__body { padding: 14px; }
.ccl-us__products { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ccl-us__product { display: flex; align-items: center; gap: 8px; flex: 1; }
.ccl-us__thumb { width: 44px; height: 44px; border-radius: 6px; overflow: hidden; background: #F2F2F2; flex-shrink: 0; }
.ccl-us__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ccl-us__name { font-size: 11px; font-weight: 700; color: #0D0D0D; line-height: 1.3; }
.ccl-us__price-old { font-size: 10px; color: #9CA3AF; text-decoration: line-through; display: block; }
.ccl-us__price-new { font-size: 12px; font-weight: 800; color: #C8102E; }
.ccl-us__badge { background: #C8102E; color: #fff; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 100px; }
.ccl-us__plus { font-size: 18px; color: #9CA3AF; font-weight: 300; flex-shrink: 0; }
.ccl-us__total-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid #F0F0F0; border-bottom: 1px solid #F0F0F0; margin-bottom: 10px; }
.ccl-us__total-label { font-size: 11px; color: #6B7280; }
.ccl-us__total-prices { text-align: right; }
.ccl-us__total-original { font-size: 11px; color: #9CA3AF; text-decoration: line-through; display: block; }
.ccl-us__total-discounted { font-size: 16px; font-weight: 800; color: #0D0D0D; }
.ccl-us__saving { font-size: 10px; color: #16A34A; font-weight: 700; background: #DCFCE7; padding: 2px 7px; border-radius: 100px; display: inline-block; margin-top: 2px; }
.ccl-us__btn {
  width: 100%;
  background: #C8102E;
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s;
}
.ccl-us__btn:hover { background: #A50D25; }
.ccl-us__btn.is-added { background: #16A34A; }
.ccl-us__note { font-size: 10px; color: #16A34A; font-weight: 600; text-align: center; margin-top: 7px; }

@media (max-width: 800px) {
  #ccl-upsell-sticky { width: calc(100% - 32px); right: 16px; bottom: 80px; }
}
/* ---- POPUP UPSELL REDESIGN ---- */
#ccl-upsell-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -8px 40px rgba(0,0,0,.18);
  animation: ccl-slideup .35s cubic-bezier(.22,.68,0,1.2);
  max-width: 560px;
  margin: 0 auto;
}
@keyframes ccl-slideup {
  from { opacity:0; transform:translateY(100%); }
  to   { opacity:1; transform:translateY(0); }
}
#ccl-upsell-sticky.is-visible { display: block; }

.ccl-us__header {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 100%);
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.ccl-us__header::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
}
.ccl-us__header-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ccl-us__header-title::before {
  content: '⚡';
  font-size: 14px;
}
.ccl-us__close {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.ccl-us__close:hover { background: rgba(255,255,255,.25); }

.ccl-us__body { padding: 16px 18px 20px; }

.ccl-us__products {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  background: #F9F9F9;
  border-radius: 12px;
  padding: 12px;
}
.ccl-us__product {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.ccl-us__thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #EBEBEB;
  flex-shrink: 0;
  border: 1px solid #E5E5E5;
}
.ccl-us__thumb img { width:100%; height:100%; object-fit:cover; }
.ccl-us__name {
  font-size: 11px;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.3;
  margin-bottom: 3px;
}
.ccl-us__price-old {
  font-size: 10px;
  color: #9CA3AF;
  text-decoration: line-through;
  display: block;
}
.ccl-us__price-new {
  font-size: 13px;
  font-weight: 800;
  color: #C8102E;
  display: block;
}
.ccl-us__badge {
  display: inline-block;
  background: #C8102E;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  margin-left: 4px;
  vertical-align: middle;
}
.ccl-us__plus {
  font-size: 20px;
  color: #D1D5DB;
  font-weight: 300;
  flex-shrink: 0;
}

.ccl-us__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: #FFF7F7;
  border: 1.5px solid #FECDD3;
  border-radius: 10px;
}
.ccl-us__total-label {
  font-size: 12px;
  color: #6B7280;
  font-weight: 600;
}
.ccl-us__total-prices { text-align: right; }
.ccl-us__total-original {
  font-size: 11px;
  color: #9CA3AF;
  text-decoration: line-through;
  display: block;
}
.ccl-us__total-discounted {
  font-size: 18px;
  font-weight: 900;
  color: #0D0D0D;
  display: block;
  line-height: 1.1;
}
.ccl-us__saving {
  display: inline-block;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 3px;
}

.ccl-us__btn {
  width: 100%;
  background: linear-gradient(135deg, #C8102E 0%, #A50D25 100%);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .1s, box-shadow .1s;
  box-shadow: 0 4px 16px rgba(200,16,46,.35);
}
.ccl-us__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,16,46,.45);
}
.ccl-us__btn:active { transform: translateY(0); }
.ccl-us__btn.is-added {
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  box-shadow: 0 4px 16px rgba(22,163,74,.35);
}

.ccl-us__note {
  font-size: 10px;
  color: #16A34A;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media (min-width: 560px) {
  #ccl-upsell-sticky {
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.2);
  }
  @keyframes ccl-slideup {
    from { opacity:0; transform:translateX(-50%) translateY(30px); }
    to   { opacity:1; transform:translateX(-50%) translateY(0); }
  }
}
/* ======== CART DRAWER ======== */
#ccl-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
z-index: 999998;
  backdrop-filter: blur(3px);
}
#ccl-cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #fff;
z-index: 999999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#ccl-cart-drawer.is-open { transform: translateX(0); }
.ccl-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #F0F0F0;
  flex-shrink: 0;
}
.ccl-drawer__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0D0D0D;
}
.ccl-drawer__count {
  background: #C8102E;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 100px;
}
.ccl-drawer__close {
  background: #F5F5F5;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: background .15s;
}
.ccl-drawer__close:hover { background: #EBEBEB; }
.ccl-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  -webkit-overflow-scrolling: touch;
}
.ccl-drawer__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F5F5F5;
}
.ccl-drawer__item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #EBEBEB;
}
.ccl-drawer__item-info { flex: 1; min-width: 0; }
.ccl-drawer__item-title {
  font-size: 12px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 3px;
  line-height: 1.3;
}
.ccl-drawer__item-variant {
  font-size: 10px;
  color: #9CA3AF;
  margin-bottom: 5px;
}
.ccl-drawer__item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ccl-drawer__item-price {
  font-size: 13px;
  font-weight: 800;
  color: #0D0D0D;
}
.ccl-drawer__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F5F5F5;
  border-radius: 6px;
  padding: 4px 8px;
}
.ccl-drawer__qty button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #6B7280;
  padding: 0;
  line-height: 1;
  width: 16px;
  text-align: center;
}
.ccl-drawer__qty span {
  font-size: 12px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}
.ccl-drawer__empty {
  text-align: center;
  padding: 48px 20px;
  color: #9CA3AF;
}
/* Upsell dans le drawer */
.ccl-drawer__upsell {
  margin: 4px 12px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0D0D0D 0%, #1C1C1C 100%);
  padding: 14px;
  flex-shrink: 0;
}
.ccl-drawer__upsell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ccl-drawer__upsell-tag {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.ccl-drawer__upsell-badge {
  background: #C8102E;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
}
.ccl-drawer__upsell-product {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.ccl-drawer__upsell-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.ccl-drawer__upsell-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ccl-drawer__upsell-prices { display: flex; align-items: center; gap: 7px; }
.ccl-drawer__upsell-old { font-size: 10px; color: rgba(255,255,255,.4); text-decoration: line-through; }
.ccl-drawer__upsell-new { font-size: 14px; font-weight: 800; color: #C8102E; }
.ccl-drawer__upsell-btn {
  width: 100%;
  background: #C8102E;
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 14px rgba(200,16,46,.4);
}
.ccl-drawer__upsell-btn:hover { background: #A50D25; transform: translateY(-1px); }
.ccl-drawer__upsell-btn.added { background: #16A34A; box-shadow: 0 4px 14px rgba(22,163,74,.35); }
.ccl-drawer__upsell-note {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin-top: 8px;
}
/* Footer drawer */
.ccl-drawer__footer {
  padding: 12px 16px 24px;
  border-top: 1px solid #F0F0F0;
  flex-shrink: 0;
  background: #fff;
}
.ccl-drawer__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ccl-drawer__subtotal-label { font-size: 13px; color: #6B7280; font-weight: 500; }
.ccl-drawer__subtotal-price { font-size: 17px; font-weight: 900; color: #0D0D0D; }
.ccl-drawer__free-ship {
  font-size: 10px;
  color: #16A34A;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.ccl-drawer__checkout {
  display: block;
  width: 100%;
  background: #0D0D0D;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .1s;
}
.ccl-drawer__checkout:hover { transform: translateY(-1px); }
.ccl-drawer__cart-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: #9CA3AF;
  text-decoration: underline;
}
/* Mobile — drawer vient du bas */
@media (max-width: 500px) {
  #ccl-cart-drawer {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  #ccl-cart-drawer.is-open { transform: translateY(0); }
  .ccl-drawer__head::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
  }
  .ccl-drawer__head { position: relative; padding-top: 20px; }
}
/* ======== RESET MOBILE COMPLET ======== */
@media (max-width: 767px) {

  /* Layout de base */
  .ccl-product-page { overflow-x: hidden; }
  .ccl-product-wrap {
    display: block !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  /* Galerie */
  .ccl-gallery { padding: 0 !important; }
  .ccl-gallery__main {
    border-radius: 0 !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
  }
  .ccl-gallery__thumbs { padding: 8px 12px !important; gap: 6px !important; }
  .ccl-gallery__thumb { width: 52px !important; height: 52px !important; }

  /* Info produit */
  .ccl-product-info { padding: 16px !important; }
  .ccl-product-title { font-size: 15px !important; line-height: 1.25 !important; }
  .ccl-product-subtitle { font-size: 11px !important; }
  .ccl-price { font-size: 26px !important; }
  .ccl-price-block { flex-wrap: wrap !important; gap: 8px !important; }
  .ccl-price-note { text-align: left !important; width: 100%; }

  /* Bouton ATC */
  .ccl-atc-row { grid-template-columns: 80px 1fr !important; gap: 6px !important; }
  .ccl-btn-atc {
    font-size: 10px !important;
    letter-spacing: .02em !important;
    gap: 5px !important;
    height: 48px !important;
  }
  .ccl-btn-atc svg { width: 13px !important; height: 13px !important; }
  .ccl-qty { height: 48px !important; }

  /* Urgence */
  .ccl-urgency { padding: 8px 10px !important; }
  .ccl-urgency__text { font-size: 10px !important; }
  .ccl-urgency__countdown { font-size: 12px !important; }

  /* Shipping bar */
  .ccl-shipping-bar { padding: 9px 12px !important; margin-bottom: 14px !important; }
  .ccl-shipping-bar__msg { font-size: 10px !important; }

  /* Réassurance */
  .ccl-reassurance__row { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .ccl-reassurance__item { padding: 8px 10px !important; }
  .ccl-reassurance__label { font-size: 10px !important; }
  .ccl-reassurance__sub { font-size: 9px !important; }
  .ccl-reassurance__icon { width: 28px !important; height: 28px !important; }

  /* Accordéons */
  .ccl-accordion__trigger { font-size: 12px !important; padding: 12px 14px !important; }
  .ccl-accordion__content { font-size: 11px !important; padding: 0 14px 12px !important; }

  /* Section container */
  .ccl-container { padding: 0 14px !important; }
  .ccl-section { padding: 28px 0 !important; }
  .ccl-section-title { font-size: clamp(1.1rem, 4vw, 1.4rem) !important; }

  /* Stats */
  .ccl-stats__grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .ccl-stat__num { font-size: 20px !important; }
  .ccl-stat__lbl { font-size: 10px !important; }

  /* Icônes bénéfices */
  .ccl-bens-icons__grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .ccl-bens-icons__img { display: none !important; }
  .ccl-icon-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .ccl-icon-label { font-size: 11px !important; }
  .ccl-icon-sub { font-size: 10px !important; }

  /* % stats */
  .ccl-pct__grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .ccl-pct__num { font-size: 22px !important; }
  .ccl-pct__lbl { font-size: 10px !important; }

  /* Labo */
  .ccl-lab__grid { grid-template-columns: 1fr !important; }
  .ccl-lab__visual { display: none !important; }
  .ccl-lab__text { font-size: 11px !important; }
  .ccl-lab__point { font-size: 11px !important; }

  /* Social proof */
  .ccl-sp__grid { grid-template-columns: 1fr !important; }
  .ccl-sp__visual { display: none !important; }
  .ccl-sp__review-text { font-size: 11px !important; }

  /* Ambassadeurs */
  .ccl-ambassadors__grid { padding: 0 14px 8px !important; gap: 12px !important; }
  .ccl-ambassador { width: 140px !important; }
  .ccl-ambassador__photo { width: 140px !important; height: 182px !important; }
  .ccl-ambassador__quote { font-size: 11px !important; }

  /* PDF */
  .ccl-pdf__box { flex-wrap: wrap !important; gap: 10px !important; }
  .ccl-pdf__btn { width: 100% !important; justify-content: center !important; }

  /* Upsell */
  .ccl-upsell__row { gap: 8px !important; padding: 10px !important; }
  .ccl-upsell__items-row { gap: 8px !important; }
  .ccl-upsell__name { font-size: 10px !important; }
  .ccl-upsell__actions { gap: 6px !important; }
  .ccl-btn-bundle { font-size: 10px !important; padding: 8px 10px !important; }
  .ccl-btn-ghost { font-size: 9px !important; padding: 7px 8px !important; }

  /* FAQ */
  .ccl-faq .ccl-section-title { font-size: 1.4rem !important; }
  .ccl-faq .ccl-accordion__trigger { font-size: 13px !important; padding: 16px 14px !important; }
  .ccl-faq .ccl-accordion__content { font-size: 12px !important; padding: 0 14px 16px !important; }

  /* CTA final */
  .ccl-btn-final { width: 100% !important; padding: 14px !important; font-size: 12px !important; }
  .ccl-final-cta__trust { gap: 8px !important; }

  /* Sticky ATC */
  .ccl-sticky-atc { display: block !important; }
  .ccl-sticky-atc__inner { padding: 8px 14px !important; }
  .ccl-sticky-atc__title { font-size: 11px !important; }
  .ccl-sticky-atc__price { font-size: 12px !important; }
  .ccl-sticky-atc__btn { font-size: 10px !important; padding: 11px 14px !important; }
  body { padding-bottom: 65px !important; }

  /* Cart drawer depuis le bas */
  #ccl-cart-drawer {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-height: 88vh !important;
    border-radius: 20px 20px 0 0 !important;
    transform: translateY(100%) !important;
    transition: transform .35s cubic-bezier(.4,0,.2,1) !important;
  }
  #ccl-cart-drawer.is-open { transform: translateY(0) !important; }
  .ccl-drawer__head { padding: 18px 16px 14px !important; position: relative; }
  .ccl-drawer__head::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
  }
  .ccl-drawer__items { padding: 8px 14px !important; }
  .ccl-drawer__upsell { margin: 4px 10px 8px !important; padding: 12px !important; }
  .ccl-drawer__upsell-name { font-size: 11px !important; }
  .ccl-drawer__upsell-btn { padding: 11px !important; font-size: 11px !important; }
  .ccl-drawer__footer { padding: 10px 14px 24px !important; }
  .ccl-drawer__checkout { padding: 13px !important; font-size: 12px !important; }
  .ccl-drawer__subtotal-price { font-size: 15px !important; }

  /* Popup upsell sticky */
  #ccl-upsell-sticky {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 65px !important;
    border-radius: 20px 20px 0 0 !important;
    max-width: 100% !important;
  }
}

/* Tablette */
@media (min-width: 768px) and (max-width: 1023px) {
  .ccl-product-wrap { grid-template-columns: 1fr 1fr !important; gap: 20px !important; padding: 16px !important; }
  .ccl-bens-icons__grid { grid-template-columns: 1fr !important; }
  .ccl-bens-icons__img { display: none !important; }
  .ccl-pct__grid { grid-template-columns: 1fr 1fr !important; }
  .ccl-lab__grid { grid-template-columns: 1fr !important; }
  .ccl-lab__visual { display: none !important; }
  .ccl-sp__grid { grid-template-columns: 1fr !important; }
  .ccl-sp__visual { display: none !important; }
}
/* Bénéfices icones — image pleine largeur sur mobile */
@media (max-width: 767px) {
  .ccl-bens-icons__img {
    display: block !important;
    aspect-ratio: 16/9 !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
  }
  .ccl-bens-icons__grid {
    grid-template-columns: 1fr !important;
  }
}
/* ---- SLIDER AVIS CLIENTS ---- */
.ccl-reviews-slider { background: #F5F5F1; padding: 40px 0; overflow: hidden; }
.ccl-reviews-slider__head { text-align: center; margin-bottom: 28px; padding: 0 20px; }
.ccl-reviews-slider__title { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 800; margin-bottom: 6px; }
.ccl-reviews-slider__sub { font-size: 12px; color: #6B7280; }
.ccl-reviews-slider__wrap { position: relative; }
.ccl-reviews-slider__track-outer { overflow: hidden; padding: 0 20px; }
.ccl-reviews-slider__track {
  display: flex;
  gap: 12px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.ccl-reviews-slider__slide {
  flex-shrink: 0;
  width: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: #E8E8E8;
  position: relative;
  cursor: pointer;
}
.ccl-reviews-slider__slide img,
.ccl-reviews-slider__slide video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.ccl-reviews-slider__slide video { aspect-ratio: 9/16; background: #000; }
.ccl-reviews-slider__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  padding: 28px 12px 12px;
  color: #fff;
}
.ccl-reviews-slider__name { font-size: 12px; font-weight: 800; color: #fff; }
.ccl-reviews-slider__car { font-size: 10px; color: rgba(255,255,255,.75); margin-bottom: 4px; }
.ccl-reviews-slider__quote { font-size: 10px; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.4; }
.ccl-reviews-slider__stars { color: #C8102E; font-size: 10px; letter-spacing: 1px; margin-bottom: 3px; }
.ccl-reviews-slider__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ccl-reviews-slider__play svg { width: 18px; height: 18px; fill: #C8102E; margin-left: 3px; }
.ccl-reviews-slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,.92);
  border: none; border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  cursor: pointer;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .15s;
  color: #0D0D0D;
  line-height: 1;
}
.ccl-reviews-slider__btn:hover { background: #fff; }
.ccl-reviews-slider__btn--prev { left: 4px; }
.ccl-reviews-slider__btn--next { right: 4px; }
.ccl-reviews-slider__dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 16px; padding: 0 20px;
}
.ccl-reviews-slider__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #D1D5DB;
  border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.ccl-reviews-slider__dot.active { background: #C8102E; transform: scale(1.3); }

@media (max-width: 767px) {
  .ccl-reviews-slider__slide { width: 160px; }
  .ccl-reviews-slider__btn { width: 30px; height: 30px; font-size: 16px; }
}
@media (min-width: 768px) {
  .ccl-reviews-slider__slide { width: 200px; }
}
@media (min-width: 1280px) {
  .ccl-reviews-slider__slide { width: 220px; }
}
/* Sous-titres plus visibles */
.ccl-stats__sub { color: rgba(255,255,255,.75) !important; font-size: 14px !important; }
.ccl-pct__sub { color: #4B5563 !important; font-size: 14px !important; }
.ccl-lab__text { color: rgba(255,255,255,.82) !important; font-size: 14px !important; }
.ccl-bens-icons__sub { color: #4B5563 !important; font-size: 14px !important; }
.ccl-product-subtitle { color: #6B7280 !important; font-size: 14px !important; }
.ccl-sp__sub { color: #4B5563 !important; font-size: 14px !important; }
.ccl-ambassadors__sub { color: #4B5563 !important; font-size: 14px !important; }
.ccl-section-tag { color: #C8102E !important; font-size: 11px !important; font-weight: 800 !important; letter-spacing: .08em !important; }
.ccl-stat__lbl { color: rgba(255,255,255,.75) !important; font-size: 13px !important; }
/* Encadrements icônes bénéfices */
.ccl-icon-item {
  border: 1.5px solid #E5E7EB !important;
  border-radius: 10px !important;
  padding: 14px 12px !important;
  background: #fff !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.ccl-icon-item:hover {
  border-color: #C8102E !important;
  box-shadow: 0 2px 12px rgba(200,16,46,.1) !important;
}
.ccl-bens-icons__cta:empty { display: none !important; }
/* Bullet points labo plus visibles */
.ccl-lab__point {
  font-size: 14px !important;
  color: rgba(255,255,255,.9) !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.ccl-lab__point svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}
/* Photos visibles sur mobile */
@media (max-width: 767px) {
  .ccl-lab__visual {
    display: block !important;
    margin-top: 20px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .ccl-lab__visual img {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
    display: block !important;
  }
  .ccl-sp__visual {
    display: block !important;
    margin-top: 20px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .ccl-sp__visual img {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
    display: block !important;
  }
}
/* Séparateur rouge entre blocs icônes */
.ccl-icon-item {
  border-bottom: 2px solid #C8102E !important;
}

/* Textes plus élégants sur mobile */
@media (max-width: 767px) {
  .ccl-icon-label { 
    font-size: 12px !important; 
    font-weight: 700 !important; 
    color: #0D0D0D !important; 
    margin-top: 8px !important;
  }
  .ccl-icon-sub { 
    font-size: 11px !important; 
    color: #6B7280 !important; 
    margin-top: 2px !important;
  }
  .ccl-pct__num { 
    font-size: 28px !important; 
    font-weight: 900 !important; 
  }
  .ccl-pct__lbl { 
    font-size: 11px !important; 
    color: #4B5563 !important; 
    line-height: 1.4 !important;
  }
  .ccl-section-title { 
    font-size: clamp(1.2rem, 5vw, 1.6rem) !important; 
    line-height: 1.25 !important;
  }
  .ccl-sp__review-text { 
    font-size: 12px !important; 
    line-height: 1.6 !important; 
    font-style: italic !important;
  }
  .ccl-sp__review-meta { 
    font-size: 11px !important; 
    color: #6B7280 !important;
  }
}
`/* ======== ANIMATIONS ======== */

/* Entrée sections au scroll */
.ccl-section,
.ccl-product-wrap,
.ccl-upsell,
.ccl-faq {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.ccl-section.is-visible,
.ccl-product-wrap.is-visible,
.ccl-upsell.is-visible,
.ccl-faq.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats % — barres animées */
.ccl-pct__fill {
  width: 0% !important;
  transition: width 1.2s cubic-bezier(.4,0,.2,1) !important;
}
.ccl-pct__fill.is-animated {
  width: var(--pct-w) !important;
}

/* Bouton ATC pulse */
.ccl-btn-atc {
  animation: ccl-pulse 2.5s infinite !important;
}
@keyframes ccl-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,.4); }
  50% { box-shadow: 0 0 0 8px rgba(200,16,46,0); }
}

/* Hover cards icônes */
.ccl-icon-item {
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.ccl-icon-item:hover {
  transform: translateY(-3px) !important;
}

/* Stock dot pulse */
.ccl-stock__dot {
  animation: ccl-dot 1.5s infinite !important;
}
@keyframes ccl-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

/* Brand bar dégradé animé */
.ccl-brand-bar {
  background: linear-gradient(90deg, #C8102E, #0D0D0D, #C8102E) !important;
  background-size: 200% !important;
  animation: ccl-bar 3s linear infinite !important;
}
@keyframes ccl-bar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
/* Fix accordéons */
.ccl-accordion__body {
  max-height: 0 !important;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ccl-accordion__trigger[aria-expanded="true"] + .ccl-accordion__body {
  max-height: 2000px !important;
}
.ccl-accordion__trigger[aria-expanded="true"] .ccl-accordion__icon {
  transform: rotate(180deg);
}
.ccl-accordion__icon {
  transition: transform 0.3s ease;
}