/** Shopify CDN: Minification failed

Line 104:52 Unexpected "*"

**/
/* ============================================================
   MS Motors Concours - Landing Page CSS
   Production-ready dark automotive concours theme
   All classes prefixed with .cc-
   ============================================================ */

/* ============================================================
   FONT LOADING
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&family=Permanent+Marker&display=swap');

@font-face {
  font-family: 'Mona Sans';
  src: url('MonaSansVF.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('MonaSansVF-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  /* Backgrounds */
  --cc-bg: #0A0C14;
  --cc-bg-alt: #0C0E18;
  --cc-bg-footer: #08090F;
  --cc-card-bg: #151826;
  --cc-card-bg-alt: #15151C;
  --cc-card-border: #262B40;
  --cc-card-border-alt: #FFFFFF17;

  /* Text */
  --cc-text: #F4F4F8;
  --cc-text-muted: #A0A2B8;
  --cc-text-dim: #6E7088;
  --cc-text-link: #C9CBDC;

  /* Brand colors */
  --cc-cyan: #2DE6E0;
  --cc-pink: #FF2D8B;
  --cc-pink-alt: #FF2E7E;
  --cc-separator: #1C2032;

  /* Gradients */
  --cc-gradient-pink: linear-gradient(173deg, #E8468A 22%, #D4357A 78%);

  /* Shadows */
  --cc-shadow-pink: #FF4E9E47 0px 0px 27px;

  /* Icon backgrounds */
  --cc-icon-cyan-bg: #2DE6E01A;
  --cc-icon-cyan-border: #2DE6E04D;
  --cc-icon-pink-bg: #FF2D8B1A;
  --cc-icon-pink-border: #FF2D8B4D;
}

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

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

/* ============================================================
   PAGE WRAPPER
   ============================================================ */

.concours-page {
  background: var(--cc-bg);
  color: var(--cc-text);
  font-family: 'Mona Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Force dark background on entire page when concours is active */
body:has(.concours-page),
body:has(.concours-page) #MainContent,
body:has(.concours-page) .main-content,
body:has(.concours-page) main,
body:has(.concours-page) #shopify-section-template--*,
body:has(.concours-page) .shopify-section {
  background: var(--cc-bg) !important;
}

/* Header/footer visibility — kept visible on concours pages */

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

.cc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.cc-section {
  padding: 80px 0;
  width: 100%;
}

.cc-section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cc-section-desc {
  max-width: 560px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cc-text-muted);
}

.cc-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============================================================
   HEADING SYSTEM
   ============================================================ */

.cc-heading-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

.cc-heading {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 58px;
  line-height: 56px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--cc-text);
  text-align: center;
  position: relative;
  z-index: 0;
}

.cc-script {
  font-family: 'Have Heart Two', 'HaveHeartTwo', 'Permanent Marker', cursive;
  font-size: 100px;
  line-height: 0;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 5px var(--cc-cyan);
  paint-order: stroke fill;
  color: var(--cc-bg);
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

.cc-script--pink {
  -webkit-text-stroke-color: var(--cc-pink);
}

.cc-swoosh {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 30px;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   BADGE
   ============================================================ */

.cc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 14px;
  background: #2DE6E012;
  border: 1px solid #2DE6E059;
}

.cc-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-cyan);
  flex-shrink: 0;
}

.cc-badge__label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-cyan);
}

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

.cc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 13px;
  padding: 20px 40px;
  background: var(--cc-gradient-pink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--cc-shadow-pink);
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 21px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-shadow: rgba(255, 255, 255, 0.4) 0 -2px 10px, rgba(0, 0, 0, 0.2) 0 1px 2px;
  white-space: nowrap;
  position: relative;
}

.cc-btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.cc-btn-primary--small {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 800;
  color: #0A0C14;
  box-shadow: #FF2D8B52 0px 10px 30px;
  text-shadow: none;
}

.cc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 13px;
  padding: 18px 15px;
  background: #1C1A22;
  border: 1px solid #FFFFFF1A;
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--cc-text);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cc-btn-secondary:hover {
  background: #242230;
  border-color: #FFFFFF30;
}

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

.cc-card {
  border-radius: 18px;
  background: var(--cc-card-bg);
  border: 1px solid var(--cc-card-border);
  overflow: hidden;
}

.cc-card--active {
  border-width: 1.5px;
  border-color: #FF2E7E66;
  box-shadow: #FF2E7E33 0px 0px 40px -8px;
}

/* ============================================================
   TOPBAR (MARQUEE)
   ============================================================ */

.cc-topbar {
  background: #0A0C14;
  border-bottom: 1px solid var(--cc-separator);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.cc-topbar__track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.cc-topbar__track:hover {
  animation-play-state: paused;
}

.cc-topbar__item {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cc-text-muted);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.cc-topbar__item::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cc-cyan);
  opacity: 0.5;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION: VOITURES
   ============================================================ */

.cc-voitures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.cc-car-card {
  border-radius: 18px;
  background: var(--cc-card-bg);
  border: 1px solid var(--cc-card-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-car-card--active {
  border: 1.5px solid #FF2E7E66;
  box-shadow: #FF2E7E33 0px 0px 40px -8px;
}

.cc-car-card__image {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1A1E2E;
}

.cc-car-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-car-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cc-car-card__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cc-car-card__badge--unlocked {
  background: rgba(45, 230, 224, 0.15);
  border: 1px solid rgba(45, 230, 224, 0.3);
  color: var(--cc-cyan);
}

.cc-car-card__badge--unlocked .cc-car-card__badge-dot {
  background: var(--cc-cyan);
}

.cc-car-card__badge--in_progress {
  background: rgba(255, 45, 139, 0.15);
  border: 1px solid rgba(255, 45, 139, 0.3);
  color: #FF6EB4;
}

.cc-car-card__badge--in_progress .cc-car-card__badge-dot {
  background: var(--cc-pink);
}

.cc-car-card__badge--locked {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cc-text-dim);
}

.cc-car-card__badge--locked .cc-car-card__badge-dot {
  background: var(--cc-text-dim);
}

.cc-car-card__name {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--cc-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cc-car-card__subtitle {
  font-weight: 500;
  font-size: 14px;
  color: var(--cc-text-muted);
  margin-top: 2px;
}

.cc-car-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cc-car-spec {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cc-car-spec:first-child {
  border-top: none;
}

.cc-car-spec__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.cc-car-spec__label {
  font-weight: 500;
  font-size: 14px;
  color: var(--cc-text-muted);
}

.cc-car-spec__value {
  font-weight: 700;
  font-size: 16px;
  color: var(--cc-text);
}

.cc-car-spec__value span {
  font-weight: 400;
  font-size: 13px;
  color: var(--cc-text-muted);
  margin-left: 2px;
}

.cc-car-spec__bar {
  height: 4px;
  background: #262B40;
  border-radius: 2px;
  overflow: hidden;
}

.cc-car-spec__bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease-out;
}

.cc-car-spec__bar-fill--cyan {
  background: linear-gradient(90deg, #2DE6E0, #00B8D4);
}

.cc-car-spec__bar-fill--pink {
  background: linear-gradient(90deg, #FF2D8B, #FF6EB4);
}

.cc-car-spec__bar-fill--gray {
  background: #4A4E5C;
}

.cc-car-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cc-car-card__value-label {
  font-size: 13px;
  color: var(--cc-text-dim);
  margin-bottom: 2px;
}

.cc-car-card__price {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--cc-text);
  letter-spacing: -0.02em;
}

.cc-car-card__value-badge {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cc-car-card__value-badge--green {
  background: #16A34A22;
  color: #4ADE80;
  border: 1px solid #16A34A44;
}

.cc-car-card__value-badge--pink {
  background: var(--cc-pink);
  color: white;
  border: none;
}

.cc-car-card__value-badge--outline {
  background: transparent;
  color: var(--cc-text-muted);
  border: 1px solid var(--cc-card-border);
}

/* ============================================================
   SECTION: PARTICIPATIONS
   ============================================================ */

.cc-participations__grid {
  display: flex;
  gap: 24px;
  margin-top: 64px;
  align-items: flex-start;
}

.cc-participations__rules {
  width: 472px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.cc-participations__rule {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.cc-participations__rule-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.cc-participations__rule-icon--cyan {
  background: var(--cc-icon-cyan-bg);
  border: 1px solid var(--cc-icon-cyan-border);
  color: var(--cc-cyan);
}

.cc-participations__rule-icon--pink {
  background: var(--cc-icon-pink-bg);
  border: 1px solid var(--cc-icon-pink-border);
  color: var(--cc-pink);
}

.cc-participations__rule-body {
  flex: 1;
  min-width: 0;
}

.cc-participations__rule-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cc-text);
  margin: 0;
  line-height: 1.1;
}

.cc-participations__rule-desc {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.47;
  color: var(--cc-text-muted);
  margin-top: 7px;
}

.cc-participations__table-wrapper {
  flex: 1;
  min-width: 0;
}

.cc-participations__table-card {
  border-radius: 22px;
  overflow: hidden;
  background: #10121C;
  border: 1px solid var(--cc-card-border);
  position: relative;
}

.cc-participations__table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: linear-gradient(180deg, #1C2040, #161A30);
}

.cc-participations__table-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cc-participations__lock-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #FF2D8B1F;
  border: 1px solid #FF2D8B4D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-pink);
  flex-shrink: 0;
}

.cc-participations__table-title {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cc-text);
  margin: 0;
}

.cc-participations__table-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--cc-text-dim);
  margin-top: 2px;
}

.cc-participations__table-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cc-gradient-pink);
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  color: #0A0C14;
  box-shadow: #FF2D8B59 0px 6px 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cc-participations__table-intro {
  padding: 16px 24px 4px;
  font-family: 'Permanent Marker', cursive;
  font-size: 20px;
  color: var(--cc-cyan);
}

.cc-participations__table-columns {
  padding: 0 24px;
}

.cc-participations__table-cols {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cc-participations__col-label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cc-text-dim);
  text-transform: uppercase;
}

.cc-participations__col-label--name {
  width: 320px;
  flex-shrink: 0;
}

.cc-participations__table-rows {
  padding: 8px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-participations__row {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-radius: 11px;
  border: 1px solid transparent;
}

.cc-participations__row--highlight {
  background: #FF2D8B14;
  border-color: #FF2D8B47;
}

.cc-participations__row--faded {
  opacity: 0.5;
}

.cc-participations__row-name-col {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.cc-participations__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #262B40;
  flex-shrink: 0;
  overflow: hidden;
}

.cc-participations__avatar--active {
  background: linear-gradient(135deg, #FF2D8B, #2DE6E0);
}

.cc-participations__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-participations__row-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--cc-text);
}

.cc-participations__row-name--other {
  font-weight: 600;
  color: var(--cc-text-link);
}

.cc-participations__row-number {
  font-weight: 700;
  font-size: 11px;
  color: #FF4FA0;
  font-family: 'JetBrains Mono', monospace;
}

.cc-participations__row-email {
  font-weight: 500;
  font-size: 14px;
  color: var(--cc-text-muted);
  flex: 1;
}

.cc-participations__row-email--faded {
  color: var(--cc-text-dim);
}

.cc-participations__table-fade {
  height: 54px;
  background: linear-gradient(180deg, transparent, #10121C);
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   SECTION: PACKS
   ============================================================ */

.cc-packs__grid {
  display: flex;
  gap: 24px;
  margin-top: 64px;
  align-items: stretch;
}

.cc-pack-card {
  flex: 1;
  border-radius: 18px;
  padding: 24px 16px 16px;
  background: #15151C;
  border: 1px solid #FFFFFF17;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.cc-pack-card--featured {
  background: #16131C;
  border: 1.5px solid #FF2E7E66;
  box-shadow: #FF2E7E33 0px 0px 40px -8px;
}

.cc-pack-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--cc-gradient-pink);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: #FF2E7E99 0px 6px 22px -4px;
  z-index: 2;
  white-space: nowrap;
}

.cc-pack-card__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}

.cc-pack-card__badge-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: white;
  white-space: nowrap;
}

.cc-pack-card__popular {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cc-gradient-pink);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  box-shadow: #FF2E7E66 0px 4px 14px -4px;
  z-index: 2;
  white-space: nowrap;
}

.cc-pack-card__image {
  height: 200px;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cc-pack-card__image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.cc-pack-card:hover .cc-pack-card__image-bg {
  transform: scale(1.04);
}

.cc-pack-card__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: linear-gradient(180deg, transparent, rgba(21, 21, 28, 0.7));
}

.cc-pack-card__stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(11, 11, 15, 0.6);
}

.cc-pack-card__stock--in_stock {
  border: 1px solid rgba(45, 230, 224, 0.4);
}

.cc-pack-card__stock--in_stock .cc-pack-card__stock-dot {
  background: var(--cc-cyan);
}

.cc-pack-card__stock--in_stock .cc-pack-card__stock-text {
  color: var(--cc-cyan);
}

.cc-pack-card__stock--bestseller {
  border: 1px solid #FF2E7E66;
}

.cc-pack-card__stock--bestseller .cc-pack-card__stock-dot {
  background: #FF2E7E;
}

.cc-pack-card__stock--bestseller .cc-pack-card__stock-text {
  color: #FF7FB5;
}

.cc-pack-card__stock--low_stock {
  border: 1px solid #FF8C2873;
}

.cc-pack-card__stock--low_stock .cc-pack-card__stock-dot {
  background: #FF8C28;
}

.cc-pack-card__stock--low_stock .cc-pack-card__stock-text {
  color: #FF8C28;
}

.cc-pack-card__stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cc-pack-card__stock-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
}

.cc-pack-card__info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0 2px;
}

.cc-pack-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cc-pack-card__name {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--cc-text);
}

.cc-pack-card__price {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--cc-text);
  white-space: nowrap;
}

.cc-pack-card__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #A1A1AD;
  line-height: 1.5;
}

.cc-pack-card__separator {
  height: 1px;
  background: #FFFFFF12;
}

.cc-pack-card__shipping {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #A1A1AD;
}

.cc-pack-card__shipping svg {
  flex-shrink: 0;
  color: #6B6B78;
}

.cc-pack-card__shipping-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.cc-pack-card__cta {
  margin-top: auto;
}

/* ============================================================
   SECTION: TRUST
   ============================================================ */

.cc-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.cc-trust-card {
  border-radius: 18px;
  background: var(--cc-card-bg);
  border: 1px solid var(--cc-card-border);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-trust-card__icon--cyan {
  background: var(--cc-icon-cyan-bg);
  border: 1px solid var(--cc-icon-cyan-border);
  color: var(--cc-cyan);
}

.cc-trust-card__icon--pink {
  background: var(--cc-icon-pink-bg);
  border: 1px solid var(--cc-icon-pink-border);
  color: var(--cc-pink);
}

.cc-trust-card__title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cc-text);
  margin: 0;
  line-height: 1.1;
}

.cc-trust-card__desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cc-text-muted);
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */

.cc-faq__grid {
  display: flex;
  gap: 24px;
  margin-top: 64px;
  align-items: flex-start;
}

.cc-faq__sidebar {
  width: 380px;
  flex-shrink: 0;
  border-radius: 18px;
  border: 1px solid var(--cc-card-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--cc-card-bg);
}

.cc-faq__sidebar-image {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #1A1E2E;
}

.cc-faq__sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-faq__sidebar-title {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--cc-text);
  letter-spacing: -0.02em;
}

.cc-faq__sidebar-desc {
  font-weight: 500;
  font-size: 14px;
  color: var(--cc-text-muted);
  line-height: 1.5;
}

.cc-faq__sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 13px;
  padding: 16px 30px;
  background: var(--cc-gradient-pink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: #FF2D8B52 0px 10px 30px;
  font-family: 'Mona Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0A0C14;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-align: center;
  width: 100%;
}

.cc-faq__sidebar-cta:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.cc-faq__sidebar-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cc-text-dim);
  margin-top: 8px;
  justify-content: center;
}

.cc-faq__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cc-faq__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-faq__category {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cc-cyan);
  margin-bottom: 8px;
}

.cc-faq__item {
  border-radius: 14px;
  border: 1px solid var(--cc-card-border);
  overflow: hidden;
  transition: border-color 0.3s ease;
  background: var(--cc-card-bg);
}

.cc-faq__item.is-open {
  border-color: #FF2D8B44;
}

.cc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
}

.cc-faq__question-text {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--cc-text);
  line-height: 1.4;
}

.cc-faq__toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--cc-card-border);
  background: transparent;
  color: var(--cc-text);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.cc-faq__item.is-open .cc-faq__toggle {
  background: var(--cc-pink);
  border-color: var(--cc-pink);
  transform: rotate(45deg);
}

.cc-faq__toggle svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.cc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cc-faq__item.is-open .cc-faq__answer {
  max-height: 300px;
}

.cc-faq__answer-inner {
  padding: 0 24px 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cc-text-muted);
}

.cc-faq__answer-inner a {
  color: var(--cc-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   SECTION: ROADMAP
   ============================================================ */

.cc-roadmap__carousel {
  overflow: hidden;
  margin-top: 64px;
  position: relative;
}

.cc-roadmap__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.cc-roadmap__card {
  min-width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-roadmap__card-image {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1A1E2E;
}

.cc-roadmap__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-roadmap__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cc-roadmap__card-badge--unlocked {
  background: rgba(45, 230, 224, 0.15);
  border: 1px solid rgba(45, 230, 224, 0.3);
  color: var(--cc-cyan);
}

.cc-roadmap__card-badge--in_progress {
  background: rgba(255, 45, 139, 0.15);
  border: 1px solid rgba(255, 45, 139, 0.3);
  color: #FF6EB4;
}

.cc-roadmap__card-badge--locked {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cc-text-dim);
}

.cc-roadmap__card-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cc-roadmap__card-badge--unlocked .cc-roadmap__card-badge-dot {
  background: var(--cc-cyan);
}

.cc-roadmap__card-badge--in_progress .cc-roadmap__card-badge-dot {
  background: var(--cc-pink);
}

.cc-roadmap__card-badge--locked .cc-roadmap__card-badge-dot {
  background: var(--cc-text-dim);
}

.cc-roadmap__step-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}

.cc-roadmap__step-badge--unlocked {
  background: #16A34A22;
  color: #4ADE80;
  border: 1px solid #16A34A44;
}

.cc-roadmap__step-badge--in_progress {
  background: #FF2D8B22;
  color: #FF6EB4;
  border: 1px solid #FF2D8B44;
}

.cc-roadmap__step-badge--locked {
  background: #FFFFFF08;
  color: var(--cc-text-dim);
  border: 1px solid #FFFFFF17;
}

.cc-roadmap__card-title {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--cc-text);
  letter-spacing: -0.01em;
}

.cc-roadmap__card-desc {
  font-weight: 500;
  font-size: 14px;
  color: var(--cc-text-muted);
  line-height: 1.5;
}

.cc-roadmap__bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.cc-roadmap__progress {
  height: 6px;
  background: #262B40;
  border-radius: 3px;
  flex: 1;
  overflow: hidden;
}

.cc-roadmap__progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cc-cyan), var(--cc-pink));
  transition: width 1s ease;
}

.cc-roadmap__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cc-roadmap__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cc-card-border);
  background: transparent;
  color: var(--cc-text);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cc-roadmap__nav-btn:hover:not(.cc-roadmap__nav-btn--next) {
  background: #1C1E2C;
  border-color: #3A3F5C;
}

.cc-roadmap__nav-btn--next {
  background: var(--cc-pink);
  border-color: var(--cc-pink);
  color: white;
}

.cc-roadmap__nav-btn--next:hover {
  filter: brightness(1.1);
}

.cc-roadmap__nav-btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cc-cta-final {
  padding: 80px 0;
}

.cc-cta-final__banner {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  gap: 16px;
}

.cc-cta-final__banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cc-cta-final__banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.75);
}

.cc-cta-final__banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cc-cta-final__banner-title {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--cc-text);
  letter-spacing: -0.02em;
}

.cc-cta-final__banner-desc {
  font-weight: 500;
  font-size: 16px;
  color: var(--cc-text-muted);
  max-width: 560px;
  line-height: 1.5;
}

.cc-cta-final__banner-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--cc-text-muted);
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.cc-cta-final__banner-legal a {
  color: var(--cc-text-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   TOPBAR TRUST (FOOTER TOP BAR)
   ============================================================ */

.cc-topbar-trust {
  background: var(--cc-bg-alt);
  border-top: 1px solid var(--cc-separator);
  border-bottom: 1px solid var(--cc-separator);
  padding: 60px 0;
}

.cc-topbar-trust__grid {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 24px;
}

.cc-topbar-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 270px;
  flex-shrink: 0;
  text-align: center;
}

.cc-topbar-trust__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-topbar-trust__icon--cyan {
  background: var(--cc-icon-cyan-bg);
  border: 1px solid var(--cc-icon-cyan-border);
  color: var(--cc-cyan);
}

.cc-topbar-trust__icon--pink {
  background: var(--cc-icon-pink-bg);
  border: 1px solid var(--cc-icon-pink-border);
  color: var(--cc-pink);
}

.cc-topbar-trust__title {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cc-text);
}

.cc-topbar-trust__desc {
  font-weight: 500;
  font-size: 13px;
  color: var(--cc-text-muted);
  line-height: 1.5;
}

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

.cc-footer {
  background: var(--cc-bg-footer);
  padding: 72px 0 32px;
}

.cc-footer__grid {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.cc-footer__brand {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cc-footer__logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.cc-footer__logo-ms {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--cc-text);
  letter-spacing: 0.02em;
}

.cc-footer__logo-motors {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--cc-pink);
  letter-spacing: 0.02em;
}

.cc-footer__brand-desc {
  font-weight: 500;
  font-size: 14px;
  color: var(--cc-text-muted);
  line-height: 1.5;
}

.cc-footer__socials {
  display: flex;
  gap: 10px;
}

.cc-footer__social {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--cc-card-bg);
  border: 1px solid var(--cc-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9CBDC;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cc-footer__social:hover {
  background: #1E2136;
  border-color: #3A3F5C;
}

.cc-footer__social svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.cc-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-footer__col-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cc-text-dim);
  margin-bottom: 4px;
}

.cc-footer__col-link {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--cc-text-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cc-footer__col-link:hover {
  color: var(--cc-text);
}

.cc-footer__newsletter {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-footer__newsletter-desc {
  font-weight: 500;
  font-size: 14px;
  color: var(--cc-text-muted);
  line-height: 1.5;
}

.cc-footer__newsletter-form {
  display: flex;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cc-card-bg);
  border: 1px solid var(--cc-card-border);
  transition: border-color 0.2s ease;
}

.cc-footer__newsletter-form:focus-within {
  border-color: #3A3F5C;
}

.cc-footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 16px;
  color: var(--cc-text);
  font-family: 'Mona Sans', sans-serif;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.cc-footer__newsletter-input::placeholder {
  color: var(--cc-text-dim);
}

.cc-footer__newsletter-submit {
  width: 52px;
  flex-shrink: 0;
  background: var(--cc-gradient-pink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0C14;
  transition: filter 0.2s ease;
}

.cc-footer__newsletter-submit:hover {
  filter: brightness(1.1);
}

.cc-footer__newsletter-submit svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.cc-footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 20px 0;
  border-top: 1px solid var(--cc-separator);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cc-footer__copyright {
  font-weight: 500;
  font-size: 13px;
  color: var(--cc-text-dim);
}

.cc-footer__legal {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  color: var(--cc-text-dim);
  letter-spacing: 0.04em;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cc-footer__legal a {
  color: var(--cc-text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cc-footer__legal a:hover {
  color: var(--cc-text-muted);
}

/* ============================================================
   HERO SECTION (optional enhancement)
   ============================================================ */

.cc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.cc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cc-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 20, 0.5) 0%, rgba(10, 12, 20, 0.85) 60%, var(--cc-bg) 100%);
  z-index: 1;
}

.cc-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cc-hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cc-hero__legal {
  font-size: 13px;
  color: var(--cc-text-dim);
  margin-top: 8px;
}

/* ============================================================
   SEPARATOR / DIVIDER
   ============================================================ */

.cc-separator {
  height: 1px;
  background: var(--cc-separator);
  width: 100%;
}

/* ============================================================
   STAT BAR
   ============================================================ */

.cc-stats {
  background: var(--cc-bg-alt);
  border-top: 1px solid var(--cc-separator);
  border-bottom: 1px solid var(--cc-separator);
  padding: 32px 0;
}

.cc-stats__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 24px;
}

.cc-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.cc-stats__value {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--cc-text);
  line-height: 1;
}

.cc-stats__value--pink {
  color: var(--cc-pink);
}

.cc-stats__value--cyan {
  color: var(--cc-cyan);
}

.cc-stats__label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cc-text-dim);
}

.cc-stats__divider {
  width: 1px;
  height: 40px;
  background: var(--cc-separator);
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */

.cc-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10121C;
  border: 1px solid var(--cc-card-border);
  border-radius: 14px;
  padding: 16px 24px;
}

.cc-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
}

.cc-countdown__value {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cc-text);
  font-variant-numeric: tabular-nums;
}

.cc-countdown__label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cc-text-dim);
}

.cc-countdown__sep {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--cc-text-dim);
  line-height: 1;
  align-self: flex-start;
  padding-top: 6px;
}

/* ============================================================
   SHARE / REFERRAL BLOCK
   ============================================================ */

.cc-share {
  background: #10121C;
  border: 1px solid var(--cc-card-border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-share__title {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--cc-text);
}

.cc-share__link-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cc-share__link-input {
  flex: 1;
  background: var(--cc-card-bg);
  border: 1px solid var(--cc-card-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--cc-text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  outline: none;
  min-width: 0;
  cursor: text;
}

.cc-share__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--cc-gradient-pink);
  border: none;
  color: white;
  font-family: 'Mona Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: filter 0.2s ease;
  white-space: nowrap;
}

.cc-share__copy-btn:hover {
  filter: brightness(1.1);
}

.cc-share__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-share__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--cc-card-bg);
  border: 1px solid var(--cc-card-border);
  color: var(--cc-text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cc-share__social-btn:hover {
  background: #1E2136;
  border-color: #3A3F5C;
  color: var(--cc-text);
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */

.cc-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #1C1E2C;
  border: 1px solid var(--cc-card-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  font-family: 'Mona Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--cc-text);
  z-index: 1000;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.cc-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cc-toast__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cc-icon-cyan-bg);
  color: var(--cc-cyan);
  flex-shrink: 0;
}

/* ============================================================
   LOADER SKELETON
   ============================================================ */

.cc-skeleton {
  background: linear-gradient(90deg, #1A1E2E 25%, #22263A 50%, #1A1E2E 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================================
   LIGHTBOX / MODAL
   ============================================================ */

.cc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 20, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cc-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.cc-modal {
  background: #10121C;
  border: 1px solid var(--cc-card-border);
  border-radius: 22px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cc-modal-overlay.is-open .cc-modal {
  transform: scale(1) translateY(0);
}

.cc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--cc-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-text-muted);
  cursor: pointer;
  transition: background 0.2s ease;
}

.cc-modal__close:hover {
  background: #1C1E2C;
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */

.cc-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cc-text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE: 1024px
   ============================================================ */

/* ============================================================
   RESPONSIVE: TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  /* --- Base --- */
  .cc-heading { font-size: 44px; line-height: 44px; }
  .cc-script { font-size: 72px; }
  .cc-heading-wrapper { padding-bottom: 32px; }

  /* --- Voitures: 2 cols, 3rd below --- */
  .cc-voitures__grid { grid-template-columns: repeat(2, 1fr); }

  /* --- Trust: 2 cols --- */
  .cc-trust__grid { grid-template-columns: repeat(2, 1fr); }

  /* --- Packs: wrap --- */
  .cc-packs__grid { flex-wrap: wrap; justify-content: center; }
  .cc-pack-card { min-width: 280px; max-width: 360px; }

  /* --- FAQ: stack --- */
  .cc-faq__grid { flex-direction: column; }
  .cc-faq__sidebar { width: 100%; position: static; }

  /* --- Participations: stack --- */
  .cc-participations__grid { flex-direction: column; }
  .cc-participations__rules { width: 100%; }
  .cc-participations__table-wrapper { width: 100%; }

  /* --- Footer --- */
  .cc-footer__grid { flex-wrap: wrap; gap: 40px; }
  .cc-footer__brand { width: 100%; }
  .cc-topbar-trust__grid { flex-wrap: wrap; justify-content: center; }
  .cc-topbar-trust__item { width: 45%; min-width: 200px; }
}

/* ============================================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
  /* --- Base typographie --- */
  .cc-heading { font-size: 32px; line-height: 34px; }
  .cc-script { font-size: 52px; top: calc(100% - 14px); }
  .cc-heading-wrapper { padding-bottom: 28px; }
  .cc-swoosh { width: 180px; height: 20px; }
  .cc-section { padding: 56px 0; }
  .cc-section-desc { font-size: 14px; line-height: 1.5; }
  .cc-container { padding: 0 16px; }

  /* --- Boutons full width --- */
  .cc-btn-primary { font-size: 17px; padding: 16px 28px; width: 100%; justify-content: center; }
  .cc-btn-secondary { font-size: 15px; padding: 14px 20px; width: 100%; justify-content: center; }
  .cc-section-cta { margin-top: 32px; width: 100%; }
  .cc-section-cta .cc-btn-primary { max-width: 320px; }

  /* --- Badge --- */
  .cc-badge { padding: 5px 10px; }
  .cc-badge__label { font-size: 10px; }

  /* --- Topbar marquee --- */
  .cc-topbar__item { padding: 0 20px; font-size: 10px; }

  /* --- Voitures: 1 col --- */
  .cc-voitures__grid { grid-template-columns: 1fr; gap: 16px; }
  .cc-car-card { padding: 16px; }
  .cc-car-card__name { font-size: 22px; }
  .cc-car-card__price { font-size: 18px; }
  .cc-car-card__image-wrap { border-radius: 12px; }

  /* --- Participations --- */
  .cc-participations__grid { flex-direction: column; gap: 32px; }
  .cc-participations__rules { width: 100%; gap: 24px; }
  .cc-participations__rule-icon { width: 44px; height: 44px; }
  .cc-participations__rule-title { font-size: 20px; }
  .cc-participations__rule-desc { font-size: 14px; }
  .cc-participations__table-card { border-radius: 16px; }
  .cc-participations__table-header { padding: 16px; flex-wrap: wrap; gap: 12px; }
  .cc-participations__table-badge { font-size: 13px; padding: 6px 12px; }
  .cc-participations__table-intro { padding: 12px 16px 4px; font-size: 16px; }
  .cc-participations__table-columns { padding: 0 16px; }
  .cc-participations__table-rows { padding: 0 16px; }
  .cc-participations__row { padding: 10px 12px; }
  .cc-participations__col-label--name,
  .cc-participations__row-name-col { width: 55%; }
  .cc-participations__row-name { font-size: 13px; }
  .cc-participations__row-email { font-size: 12px; }
  .cc-participations__avatar { width: 24px; height: 24px; }

  /* --- Roadmap --- */
  .cc-roadmap__card { min-width: 260px; }
  .cc-roadmap__card-title { font-size: 17px; }
  .cc-roadmap__card-desc { font-size: 13px; }
  .cc-roadmap__nav-btn { width: 40px; height: 40px; }

  /* --- Packs: 1 col stack --- */
  .cc-packs__grid { flex-direction: column; align-items: stretch; gap: 24px; }
  .cc-pack-card { max-width: 100%; min-width: 0; }
  .cc-pack-card__image { height: 200px; }
  .cc-pack-card__name { font-size: 19px; }
  .cc-pack-card__price { font-size: 19px; }
  .cc-pack-card__floating-badge { padding: 6px 14px; }
  .cc-pack-card__floating-badge .cc-floating-badge__text { font-size: 13px; }

  /* --- Trust: 1 col horizontal cards --- */
  .cc-trust__grid { grid-template-columns: 1fr; gap: 10px; }
  .cc-trust-card { flex-direction: row; align-items: flex-start; padding: 16px; gap: 14px; border-radius: 14px; }
  .cc-trust-card__icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; }
  .cc-trust-card__title { font-size: 17px; margin-bottom: 4px; }
  .cc-trust-card__desc { font-size: 13px; }

  /* --- FAQ --- */
  .cc-faq__grid { flex-direction: column; gap: 24px; }
  .cc-faq__sidebar { width: 100%; position: static; border-radius: 16px; padding: 16px; }
  .cc-faq__sidebar-image { width: 100%; aspect-ratio: 16/9; border-radius: 10px; }
  .cc-faq__sidebar-title { font-size: 20px; }
  .cc-faq__question { padding: 16px; }
  .cc-faq__question-text { font-size: 15px; }
  .cc-faq__toggle { width: 34px; height: 34px; }
  .cc-faq__answer-inner { padding: 0 16px 16px; font-size: 14px; }
  .cc-faq__item { border-radius: 12px; }

  /* --- CTA Final --- */
  .cc-cta-final__banner { min-height: 300px; padding: 40px 20px; border-radius: 18px; }
  .cc-cta-final__banner-title { font-size: 26px; }
  .cc-cta-final__banner-desc { font-size: 14px; }

  /* --- Footer trust bar --- */
  .cc-topbar-trust { padding: 40px 0; }
  .cc-topbar-trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; justify-items: center; }
  .cc-topbar-trust__item { width: 100%; }
  .cc-topbar-trust__icon { width: 42px; height: 42px; border-radius: 12px; }
  .cc-topbar-trust__title { font-size: 15px; }
  .cc-topbar-trust__desc { font-size: 12px; }

  /* --- Footer --- */
  .cc-footer { padding: 48px 0 24px; }
  .cc-footer__grid { flex-direction: column; gap: 32px; }
  .cc-footer__brand { width: 100%; }
  .cc-footer__logo-ms, .cc-footer__logo-motors { font-size: 26px; }
  .cc-footer__brand-desc { font-size: 13px; }
  .cc-footer__newsletter { width: 100%; }
  .cc-footer__col { gap: 12px; }
  .cc-footer__col-title { font-size: 10px; }
  .cc-footer__col-link { font-size: 14px; }
  .cc-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 32px; padding-top: 16px; }
  .cc-footer__copyright { font-size: 12px; }
  .cc-footer__legal { font-size: 11px; }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE (max-width: 390px)
   ============================================================ */

@media (max-width: 390px) {
  /* --- Typo encore plus petit --- */
  .cc-heading { font-size: 26px; line-height: 28px; }
  .cc-script { font-size: 40px; top: calc(100% - 10px); }
  .cc-heading-wrapper { padding-bottom: 22px; }
  .cc-swoosh { width: 140px; height: 16px; top: 30px; }
  .cc-container { padding: 0 12px; }
  .cc-section { padding: 40px 0; }

  /* --- Boutons --- */
  .cc-btn-primary { font-size: 15px; padding: 14px 20px; gap: 6px; }
  .cc-btn-primary svg { width: 18px; }

  /* --- Voitures --- */
  .cc-car-card { padding: 12px; gap: 12px; border-radius: 14px; }
  .cc-car-card__image-wrap { border-radius: 10px; }
  .cc-car-card__name { font-size: 20px; }
  .cc-car-spec__label { font-size: 12px; }
  .cc-car-spec__value { font-size: 14px; }
  .cc-car-card__footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cc-car-card__value-badge { font-size: 11px; padding: 6px 12px; }

  /* --- Participations --- */
  .cc-participations__table-title { font-size: 15px; }
  .cc-participations__table-intro { font-size: 14px; }
  .cc-participations__col-label { font-size: 9px; }
  .cc-participations__col-label--name,
  .cc-participations__row-name-col { width: 50%; }
  .cc-participations__row-name { font-size: 12px; }
  .cc-participations__row-number { font-size: 10px; }
  .cc-participations__row-email { font-size: 11px; word-break: break-all; }
  .cc-participations__avatar { width: 20px; height: 20px; }
  .cc-participations__row { padding: 8px 10px; border-radius: 8px; }

  /* --- Roadmap --- */
  .cc-roadmap__card { min-width: 240px; }
  .cc-roadmap__card-image { border-radius: 10px; }
  .cc-roadmap__step-badge { font-size: 10px; padding: 6px 10px; }

  /* --- Packs --- */
  .cc-pack-card { padding: 20px 12px 12px; border-radius: 14px; gap: 10px; }
  .cc-pack-card__image { height: 170px; border-radius: 10px; }
  .cc-pack-card__name { font-size: 17px; }
  .cc-pack-card__price { font-size: 17px; }
  .cc-pack-card__desc { font-size: 13px; }
  .cc-pack-card__shipping-text { font-size: 12px; }

  /* --- Trust: 1 col horizontal (already set at 768px) --- */
  .cc-trust-card__title { font-size: 15px; }
  .cc-trust-card__desc { font-size: 12px; }

  /* --- FAQ --- */
  .cc-faq__sidebar { padding: 12px; border-radius: 14px; }
  .cc-faq__sidebar-title { font-size: 18px; }
  .cc-faq__question { padding: 14px 12px; }
  .cc-faq__question-text { font-size: 14px; }
  .cc-faq__toggle { width: 30px; height: 30px; }
  .cc-faq__item { border-radius: 10px; }

  /* --- CTA --- */
  .cc-cta-final__banner { min-height: 260px; padding: 32px 16px; border-radius: 14px; }
  .cc-cta-final__banner-title { font-size: 22px; }
  .cc-cta-final__banner-desc { font-size: 13px; }

  /* --- Footer trust --- */
  .cc-topbar-trust { padding: 32px 0; }
  .cc-topbar-trust__grid { grid-template-columns: 1fr; gap: 20px; }

  /* --- Footer --- */
  .cc-footer { padding: 36px 0 20px; }
  .cc-footer__logo-ms, .cc-footer__logo-motors { font-size: 22px; }
  .cc-footer__social { width: 38px; height: 38px; }
  .cc-footer__newsletter-form { height: 42px; }
}

/* ============================================================
   ANIMATIONS: SCROLL REVEAL
   ============================================================ */

.cc-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for children */
.cc-reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cc-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.cc-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.cc-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.cc-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* ============================================================
   ANIMATIONS: SPEC BARS (Voitures)
   ============================================================ */

/* Animation disabled — inline widths used directly */
.cc-car-spec__bar-fill {
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   ANIMATIONS: PARTICIPATION ROWS STAGGER
   ============================================================ */

.cc-participations__row {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: translateX(0); }
.cc-participations__table-rows.is-visible .cc-participations__row:nth-child(9) { transition-delay: 0.61s; opacity: 1; transform: translateX(0); }

/* ============================================================
   ANIMATIONS: CTA BUTTON GLOW PULSE
   ============================================================ */

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 27px #FF4E9E47; }
  50% { box-shadow: 0 0 42px #FF4E9E70, 0 0 80px #FF4E9E25; }
}

.cc-btn-primary {
  animation: glow-pulse 3s ease-in-out infinite;
}

.cc-btn-primary:hover {
  animation: none;
  box-shadow: 0 0 42px #FF4E9E90;
}

/* ============================================================
   ANIMATIONS: ROADMAP PROGRESS BAR
   ============================================================ */

.cc-roadmap__progress-fill {
  width: 0;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.cc-roadmap__progress.is-visible .cc-roadmap__progress-fill {
  width: var(--progress-width);
}

/* ============================================================
   ANIMATIONS: TRUST CARDS HOVER LIFT
   ============================================================ */

.cc-trust-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cc-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: #3A3F5C;
}

/* ============================================================
   ANIMATIONS: FAQ ACCORDION SMOOTH
   ============================================================ */

.cc-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.cc-faq__item.is-open .cc-faq__answer {
  grid-template-rows: 1fr;
}

.cc-faq__answer-inner {
  overflow: hidden;
}

.cc-faq__toggle svg {
  transition: transform 0.3s ease;
}

.cc-faq__item.is-open .cc-faq__toggle svg {
  transform: rotate(45deg);
}

/* ============================================================
   ACCESSIBILITY: FOCUS VISIBLE
   ============================================================ */

.cc-btn-primary:focus-visible,
.cc-btn-secondary:focus-visible,
.cc-faq__question:focus-visible,
.cc-roadmap__nav-btn:focus-visible,
.cc-footer__social:focus-visible,
.cc-footer__newsletter-submit:focus-visible,
.cc-faq__sidebar-cta:focus-visible {
  outline: 2px solid var(--cc-cyan);
  outline-offset: 2px;
}

/* ============================================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .cc-topbar__track {
    animation-duration: 0s;
  }

  .cc-scroll-indicator {
    animation: none;
    opacity: 0.6;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .cc-topbar,
  .cc-hero__bg,
  .cc-cta-final__banner-bg,
  .cc-footer {
    display: none;
  }

  .concours-page {
    background: white;
    color: black;
  }
}


/* ============================================================
   HERO GRID / LAYOUT / BUYBOX / PACK CARDS
   Added: 2026-06-17
   ============================================================ */

/* ---------- Hero Grid ---------- */
.cc-hero__grid {
  display: flex;
  flex-direction: row;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 56px 64px;
  align-items: flex-start;
}

.cc-hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* ---------- Carousel ---------- */
.cc-carousel {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #15151C;
  border: 1px solid rgba(255,255,255,0.09);
}

.cc-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cc-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.cc-carousel__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cc-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 14, 24, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
}

.cc-carousel__btn:hover {
  background: rgba(255, 46, 126, 0.25);
  border-color: #FF2E7E;
}

.cc-carousel__btn[data-dir="prev"],
.cc-carousel__btn:first-of-type {
  left: 12px;
}

.cc-carousel__btn[data-dir="next"],
.cc-carousel__btn:last-of-type {
  right: 12px;
}

.cc-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.cc-carousel__dots button,
.cc-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.cc-carousel__dots button.active,
.cc-carousel__dot.active,
.cc-carousel__dots button[aria-current="true"] {
  background: #FF2E7E;
  transform: scale(1.25);
}

/* ---------- Countdown ---------- */
.cc-countdown {
  background: #15151C;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 20px 24px;
}

.cc-countdown__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-countdown__label {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.cc-countdown__grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.cc-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 10px 8px;
}

.cc-countdown__value {
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cc-countdown__name {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

.cc-countdown__sep {
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  padding-bottom: 16px;
}

/* ---------- Steps ---------- */
.cc-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-steps__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-steps__label {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2DE6E0;
}

.cc-steps__title {
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.cc-steps__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-steps__card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #15151C;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 18px 20px;
  gap: 16px;
}

.cc-steps__card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 48px;
}

.cc-steps__card-left span:first-child {
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

.cc-steps__card-left span:last-child {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #FF2E7E;
  line-height: 1;
}

.cc-steps__card-sep {
  width: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  flex-shrink: 0;
  align-self: stretch;
}

.cc-steps__card-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.cc-steps__card-right strong,
.cc-steps__card-right .cc-steps__card-title {
  font-family: "Mona Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.cc-steps__card-right p,
.cc-steps__card-right .cc-steps__card-desc {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  margin: 0;
}

/* ---------- Buybox ---------- */
.cc-buybox {
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cc-buybox__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-buybox__eyebrow {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2DE6E0;
}

.cc-buybox__title {
  font-family: "Mona Sans", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.cc-buybox__subtitle {
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.cc-buybox__step--packs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-buybox__step-label {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

/* ---------- Packs Container ---------- */
.cc-packs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- Pack Card ---------- */
.cc-pack {
  position: relative;
  background: #15151C;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 16px;
  padding-top: 24px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.cc-pack:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.cc-pack--popular {
  border: 1.5px solid #FF2E7E;
  box-shadow: #FF2E7E55 0px 0px 0px 1px, #FF2E7E45 0px 18px 50px -14px;
}

.cc-pack--popular:hover {
  border-color: #FF2E7E;
}

.cc-pack--selected {
  border-color: #2DE6E0;
  box-shadow: 0 0 0 1px #2DE6E055, 0 12px 40px -10px #2DE6E030;
}

/* Pack Ribbon */
.cc-pack__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF2E7E, #FF6B9D);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}

/* Pack Inner */
.cc-pack__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Pack Image */
.cc-pack__img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0C0E18;
}

.cc-pack__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.cc-pack:hover .cc-pack__img {
  transform: scale(1.04);
}

/* Pack Participations Row */
.cc-pack__participations {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.cc-pack__participations-x {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  color: #FF2E7E;
  line-height: 1;
}

.cc-pack__dice {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.cc-pack__die--active {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, #FF2E7E, #FF6B9D);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-pack__die--inactive {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Pack Body */
.cc-pack__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-pack__name-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.cc-pack__checkbox {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.cc-pack--selected .cc-pack__checkbox,
.cc-pack.active .cc-pack__checkbox {
  border-color: #2DE6E0;
  background: #2DE6E0;
}

.cc-pack__name {
  font-family: "Mona Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex: 1;
}

.cc-pack__pricing {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  margin-left: auto;
}

.cc-pack__price {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.cc-pack__compare {
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

.cc-pack__desc {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* Pack Badges */
.cc-pack__badge--in-stock,
.cc-pack__badge--out-of-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  width: fit-content;
}

.cc-pack__badge--in-stock {
  background: rgba(45, 230, 224, 0.1);
  color: #2DE6E0;
}

.cc-pack__badge--out-of-stock {
  background: rgba(255, 46, 126, 0.1);
  color: #FF2E7E;
}

/* Pack Tags */
.cc-pack__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cc-pack__tag {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Pack Expanded Area */
.cc-pack__expanded {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cc-slideDown 0.3s ease;
}

@keyframes cc-slideDown {
  from { opacity: 0; max-height: 0; transform: translateY(-8px); }
  to   { opacity: 1; max-height: 600px; transform: translateY(0); }
}

.cc-pack__step-sep {
  height: 1px;
  background: rgba(255,255,255,0.07);
  border: none;
  margin: 0;
}

/* Garments Select */
.cc-pack__garments {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-pack__garments select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.cc-pack__garments select:focus {
  outline: none;
  border-color: #FF2E7E;
}

/* Pack Recap */
.cc-pack__recap {
  background: #10121C;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-pack__recap-header {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.cc-pack__recap-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-pack__recap-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.cc-pack__recap-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Mona Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Participation Image */
.cc-pack__participation-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.cc-pack__participation-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Validate CTA */
.cc-pack__validate-cta {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF2E7E, #FF6B9D);
  color: #fff;
  font-family: "Mona Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cc-pack__validate-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Pack CTA Button (CHOISIR LE STARTER) */
.cc-pack__cta-btn {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: "Mona Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cc-pack__cta-btn:hover {
  background: rgba(255, 46, 126, 0.12);
  border-color: #FF2E7E;
}

.cc-pack--selected .cc-pack__cta-btn,
.cc-pack.active .cc-pack__cta-btn {
  background: linear-gradient(135deg, #FF2E7E, #FF6B9D);
  border-color: transparent;
}

/* Pack Check Indicator */
.cc-pack__check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2DE6E0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s, transform 0.25s;
}

.cc-pack--selected .cc-pack__check,
.cc-pack.active .cc-pack__check {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Confidence / Trust Section ---------- */
.cc-confidence,
.cc-trust {
  background: #10121C;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 20px;
}

/* ---------- RESPONSIVE: Mobile (<768px) ---------- */
@media (max-width: 767px) {
  .cc-hero__grid {
    flex-direction: column;
    padding: 32px 16px 40px;
    gap: 28px;
  }

  .cc-buybox {
    width: 100%;
    gap: 24px;
  }

  .cc-buybox__title {
    font-size: 24px;
  }

  .cc-countdown__value {
    font-size: 22px;
  }

  .cc-countdown__unit {
    min-width: 44px;
    padding: 8px 6px;
  }

  .cc-countdown__sep {
    font-size: 18px;
  }

  .cc-steps__card {
    padding: 14px 16px;
  }

  .cc-steps__card-left span:last-child {
    font-size: 26px;
  }

  .cc-pack {
    padding: 14px;
    padding-top: 20px;
    border-radius: 14px;
  }

  .cc-pack__name {
    font-size: 15px;
  }

  .cc-pack__price {
    font-size: 18px;
  }

  .cc-pack__ribbon {
    font-size: 10px;
    padding: 3px 12px;
  }
}

/* ---------- RESPONSIVE: Tablet (768-1023px) ---------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .cc-hero__grid {
    padding: 40px 32px 48px;
    gap: 28px;
  }

  .cc-buybox {
    width: 300px;
  }

  .cc-buybox__title {
    font-size: 24px;
  }
}


/* ============================================================
   PROGRESSION PALIERS — pixel-perfect from Paper
   ============================================================ */

.cc-progression {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}

.cc-progression__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cc-progression__header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cc-progression__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 13px;
  text-transform: uppercase;
  color: #6E7088;
}

.cc-progression__title {
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
  color: #F4F4F8;
}

.cc-progression__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 5px 11px;
  background-color: #0C2E2E;
  border: 1px solid #2DE6E059;
}

.cc-progression__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #2DE6E0;
}

.cc-progression__badge-text {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 14px;
  color: #2DE6E0;
}

/* Rail */
.cc-progression__rail {
  display: flex;
  height: 28px;
  width: 100%;
  flex-shrink: 0;
}

.cc-progression__node {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  position: relative;
}

.cc-progression__bar {
  position: absolute;
  left: 50%;
  right: -50%;
  top: 50%;
  height: 3px;
  border-radius: 2px;
  background-color: #FFFFFF14;
  translate: 0 -50%;
  overflow: clip;
}

.cc-progression__node--locked .cc-progression__bar {
  display: none;
}

.cc-progression__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #2DE6E0 0%, #FF2D8B 100%);
}

.cc-progression__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.cc-progression__dot--teal {
  width: 26px;
  height: 26px;
  background-color: #2DE6E0;
  box-shadow: #2DE6E026 0px 0px 0px 4px;
}

.cc-progression__dot--pink {
  width: 26px;
  height: 26px;
  background-color: #0C0E18;
  border: 2px solid #FF2D8B;
  box-shadow: #FF2D8B33 0px 0px 0px 4px, #FF2D8B80 0px 0px 16px;
}

.cc-progression__dot--locked {
  width: 24px;
  height: 24px;
  background-color: #1C2032;
  border: 1px solid #FFFFFF24;
}

/* Cards row */
.cc-progression__cards {
  display: flex;
  width: 100%;
}

.cc-progression__card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  padding-inline: 6px;
  gap: 7px;
}

.cc-progression__card-img {
  display: flex;
  flex-direction: column;
  height: 104px;
  justify-content: flex-end;
  border-radius: 8px;
  overflow: clip;
  position: relative;
  flex-shrink: 0;
  border: 1px solid #FFFFFF1A;
}

.cc-progression__card--unlocked .cc-progression__card-img {
  border-color: #2DE6E059;
  box-shadow: #2DE6E020 0px 8px 24px;
}

.cc-progression__card--current .cc-progression__card-img {
  border-color: #FF2D8B;
  box-shadow: #FF2D8B33 0px 10px 28px;
}

.cc-progression__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-progression__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,14,24,0) 25%, rgba(12,14,24,0.92) 100%);
}

.cc-progression__card-badge {
  display: flex;
  align-items: center;
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 4px;
  padding: 3px 7px;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cc-progression__card-badge--teal {
  background-color: #0C2E2EF2;
  border: 1px solid #2DE6E080;
  color: #2DE6E0;
}

.cc-progression__card-badge--pink {
  background: linear-gradient(135deg, #FF2D8B 0%, #D01F6B 100%);
  box-shadow: #FF2D8B66 0px 3px 12px;
  color: #FFFFFF;
}

.cc-progression__card-badge--locked {
  background-color: #1C2032F2;
  border: 1px solid #FFFFFF24;
  color: #A0A2B8;
}

.cc-progression__card-info {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 1px;
  position: relative;
}

.cc-progression__card-name {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 16px;
  color: #F4F4F8;
}

.cc-progression__card-name--muted { color: #A0A2B8; }

.cc-progression__card-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: #2DE6E0;
}

.cc-progression__card-price--muted { color: #6E7088; }

.cc-progression__card-sub {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
}

.cc-progression__card-sub--teal { color: #2DE6E0; }
.cc-progression__card-sub--pink { color: #FF4FA0; }
.cc-progression__card-sub--muted { color: #6E7088; }

/* Carousel fixes — pixel-perfect from Paper */
.cc-carousel {
  width: 100%;
  border-radius: 22px;
  overflow: visible;
}

.cc-carousel__track {
  position: relative;
}

.cc-carousel__slide {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: clip;
  border: 1px solid #FFFFFF14;
}

.cc-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0C0E18CC;
  backdrop-filter: blur(4px);
  border: 1px solid #FFFFFF33;
  color: white;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.cc-carousel__btn--prev { left: 14px; }
.cc-carousel__btn--next { right: 14px; }

.cc-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

/* Thumbnail strip below carousel */
.cc-carousel + .cc-thumbs,
.cc-carousel__thumbs {
  display: flex;
  width: 100%;
  gap: 12px;
  margin-top: 14px;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .cc-progression__cards {
    flex-direction: column;
    gap: 12px;
  }
  .cc-progression__card {
    padding-inline: 0;
  }
  .cc-progression__card-img {
    height: 140px;
  }
  .cc-progression__rail {
    display: none;
  }
}


/* ============================================================
   PACK CARDS — PIXEL-PERFECT OVERRIDE FROM PAPER DESIGN
   ============================================================ */

/* Card container */
.cc-pack .cc-pack__inner {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 18px !important;
  padding: 16px !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  gap: 14px !important;
  align-self: stretch !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF17 !important;
  overflow: hidden !important;
}

/* Popular pack override */
.cc-pack--popular .cc-pack__inner {
  border: 1.5px solid #FF2E7E !important;
  box-shadow: #FF2E7E55 0px 0px 0px 1px, #FF2E7E45 0px 18px 50px -14px !important;
}

/* Featured pack (pack 1) - same as default */
.cc-pack--featured .cc-pack__inner {
  border: 1px solid #FFFFFF17 !important;
  box-shadow: none !important;
}

/* Pack image wrapper */
.cc-pack__img-wrap {
  display: flex !important;
  align-items: flex-end !important;
  width: 100% !important;
  height: 152px !important;
  border-radius: 13px !important;
  overflow: clip !important;
  flex-shrink: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
  border: 1px solid #FFFFFF0F !important;
}

.cc-pack__img-wrap .cc-pack__img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

/* Stock badge overlay at bottom of image */
.cc-pack__badge {
  position: absolute !important;
  bottom: 10px !important;
  left: 10px !important;
  top: auto !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  padding: 5px 10px !important;
  gap: 7px !important;
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 14px !important;
  z-index: 2 !important;
}

.cc-pack__badge--in-stock {
  background-color: #0B0B0F99 !important;
  border: 1px solid #2DE6E066 !important;
  color: #2DE6E0 !important;
}

.cc-pack__badge--in-stock::before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background-color: #2DE6E0 !important;
  flex-shrink: 0 !important;
}

.cc-pack__badge--out-of-stock {
  background-color: #0B0B0F99 !important;
  border: 1px solid #FF2E7E66 !important;
  color: #FF2E7E !important;
}

.cc-pack__badge--out-of-stock::before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background-color: #FF2E7E !important;
  flex-shrink: 0 !important;
}

/* Participation counter row */
.cc-pack__participations {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  border-radius: 13px !important;
  padding: 11px 15px 11px 13px !important;
  background: linear-gradient(180deg, rgba(255,46,126,0.15) 0%, rgba(255,46,126,0.07) 100%) !important;
  border: 1px solid #FF2E7E66 !important;
  box-shadow: #FF2E7E40 0px 4px 18px -8px !important;
}

.cc-pack__participations-x {
  font-family: "Anton", sans-serif !important;
  font-size: 46px !important;
  font-weight: 400 !important;
  line-height: 40px !important;
  background: linear-gradient(180deg, #FF5DA0 0%, #D01F6B 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.cc-pack__participations-text-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.cc-pack__participations-text {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 16px !important;
  color: #FFFFFF !important;
}

.cc-pack__participations-sub {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 14px !important;
  color: #A1A1AD !important;
}

/* Dice/chips */
.cc-pack__dice {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  width: 86px !important;
  max-width: 86px !important;
  gap: 2px !important;
  flex-shrink: 0 !important;
}

.cc-pack__die {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
}

.cc-pack__die--active {
  background-color: #FF2E7E !important;
  opacity: 0.8 !important;
}

.cc-pack__die--inactive {
  background-color: #2A2A36 !important;
  opacity: 0.4 !important;
}

/* Pack body */
.cc-pack__body {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  padding-inline: 2px !important;
  gap: 13px !important;
}

/* Name row */
.cc-pack__name-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.cc-pack__checkbox {
  width: 22px !important;
  height: 22px !important;
  border-radius: 7px !important;
  flex-shrink: 0 !important;
  background-color: #0E0B10 !important;
  border: 1.5px solid #FFFFFF33 !important;
  margin-right: 11px !important;
}

.cc-pack__name {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  line-height: 26px !important;
  color: #F5F5F7 !important;
  flex: 1 !important;
  margin: 0 !important;
}

.cc-pack__pricing {
  display: flex !important;
  align-items: baseline !important;
  gap: 7px !important;
}

.cc-pack__price {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 26px !important;
  color: #F5F5F7 !important;
}

.cc-pack__compare {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 26px !important;
  color: #6B6B78 !important;
}

.cc-pack__compare s {
  text-decoration: line-through !important;
}

/* Description */
.cc-pack__desc {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  color: #A1A1AD !important;
  margin: 0 !important;
}

/* Separator line */
.cc-pack__body > hr,
.cc-pack__body > .cc-pack__desc + * {
  /* Thin separator */
}

/* Shipping badge */
.cc-pack__tags {
  display: none !important;
}

/* Shipping info row */
.cc-pack__body > .cc-pack__shipping,
.cc-pack__recap-line--shipping {
  display: flex !important;
  align-items: center !important;
}

/* Livraison pill */
.cc-pack__cta-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  border-radius: 13px !important;
  gap: 7px !important;
  padding: 20px 15px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  border: 1px solid #FFFFFF1F !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.cc-pack__cta-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: #FF4E9E70 0px 4px 35px !important;
}

.cc-pack__cta-btn svg {
  flex-shrink: 0 !important;
}

.cc-pack__cta-btn {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 24px !important;
  letter-spacing: -0.01em !important;
  color: #FFFFFF !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
}

/* Popular ribbon */
.cc-pack__ribbon {
  position: absolute !important;
  top: -1px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 3 !important;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 4px 14px !important;
  border-radius: 0 0 8px 8px !important;
  background: linear-gradient(135deg, #FF2E7E 0%, #D01F6B 100%) !important;
  color: #FFFFFF !important;
  white-space: nowrap !important;
}

/* Selection check circle */
.cc-pack__check {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  opacity: 0.3 !important;
  color: #FFFFFF !important;
}

.cc-pack[aria-checked="true"] .cc-pack__check,
.cc-pack.cc-pack--selected .cc-pack__check {
  opacity: 1 !important;
  color: #2DE6E0 !important;
}

/* Ensure pack card is relatively positioned */
.cc-pack {
  position: relative !important;
}

/* Packs container */
.cc-packs {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
}

/* ============================================================
   BUYBOX HEADER — PIXEL-PERFECT
   ============================================================ */

.cc-buybox__header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 6px !important;
  padding-bottom: 8px !important;
}

.cc-buybox__eyebrow {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #6E7088 !important;
  margin: 0 !important;
}

.cc-buybox__title {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 28px !important;
  color: #F4F4F8 !important;
  margin: 0 !important;
  text-transform: none !important;
}

.cc-buybox__subtitle {
  font-family: "Archivo", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  color: #A0A2B8 !important;
  margin: 0 !important;
  max-width: 320px !important;
}

.cc-buybox__step-label {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #6E7088 !important;
  text-align: center !important;
  margin: 0 0 8px !important;
}


/* ============================================================
   EXPANDED PACK AREA + CTA BUTTONS — PIXEL-PERFECT FROM PAPER
   ============================================================ */

/* Step separator lines */
.cc-pack__step-sep {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding-top: 14px !important;
  padding-bottom: 4px !important;
}

.cc-pack__step-sep-line {
  flex: 1 !important;
  height: 1px !important;
  background-color: #FFFFFF17 !important;
}

.cc-pack__step-sep-text {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 16px !important;
  color: #6B6B78 !important;
  white-space: nowrap !important;
}

/* Step heading (PERSONNALISE TON PACK / VALIDE TA COMMANDE) */
.cc-pack__expanded .cc-pack__step-sep + .cc-pack__step-heading,
.cc-pack__step-sep + h3,
.cc-pack__step-sep + [class*="step-heading"] {
  font-family: "Anton", sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 30px !important;
  color: #F5F5F7 !important;
  text-align: center !important;
  margin: 0 !important;
}

/* Expanded area container */
.cc-pack__expanded {
  display: flex !important;
  flex-direction: column !important;
  gap: 13px !important;
  width: 100% !important;
  padding-top: 4px !important;
}

/* Tags (Recommandé, Livraison -50%) */
.cc-pack__tags {
  display: flex !important;
  align-items: flex-start !important;
  gap: 4px !important;
  width: fit-content !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
}

.cc-pack__tag {
  display: flex !important;
  align-items: center !important;
  border-radius: 9px !important;
  padding: 7px 12px !important;
  gap: 7px !important;
  width: fit-content !important;
  background-color: #2DE6E01F !important;
  border: 1px solid #2DE6E04D !important;
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  color: #2DE6E0 !important;
}

/* Size selector */
.cc-pack__garments {
  width: 100% !important;
}

.cc-pack__size-select {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  background-color: #1E1E27 !important;
  border: 1px solid #FFFFFF17 !important;
  color: #F5F5F7 !important;
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236B6B78' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  cursor: pointer !important;
}

.cc-pack__size-select:focus {
  outline: none !important;
  border-color: #FF2E7E !important;
}

/* Recap card */
.cc-pack__recap {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin-top: 14px !important;
  border-radius: 18px !important;
  padding: 18px 16px !important;
  gap: 14px !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF17 !important;
}

.cc-pack__recap-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.cc-pack__recap-title {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  line-height: 18px !important;
  color: #F5F5F7 !important;
}

.cc-pack__recap-subtitle {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 16px !important;
  color: #6B6B78 !important;
}

/* Recap lines */
.cc-pack__recap-lines {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.cc-pack__recap-line {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  gap: 13px !important;
}

.cc-pack__recap-line-info {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  gap: 3px !important;
}

.cc-pack__recap-line-name {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 18px !important;
  color: #F5F5F7 !important;
}

.cc-pack__recap-line-size,
.cc-pack__recap-line-detail {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  color: #6B6B78 !important;
}

.cc-pack__recap-line-prices {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  flex-shrink: 0 !important;
  gap: 1px !important;
}

.cc-pack__recap-line-price {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
  color: #2DE6E0 !important;
}

.cc-pack__recap-line-original {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  color: #6B6B78 !important;
}

.cc-pack__recap-line-original s {
  text-decoration: line-through !important;
}

/* Recap total */
.cc-pack__recap-total {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding-top: 14px !important;
  border-top: 1px solid #FFFFFF17 !important;
}

.cc-pack__recap-total-label {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  color: #F5F5F7 !important;
}

.cc-pack__recap-total-prices {
  display: flex !important;
  align-items: baseline !important;
  gap: 7px !important;
}

.cc-pack__recap-total-amount {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 26px !important;
  color: #FF2E7E !important;
}

.cc-pack__recap-total-compare {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  color: #6B6B78 !important;
}

.cc-pack__recap-total-compare s {
  text-decoration: line-through !important;
}

/* Participation image */
.cc-pack__participation-img {
  width: 100% !important;
  border-radius: 18px !important;
  overflow: clip !important;
  margin-top: 8px !important;
}

.cc-pack__participation-img img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 18px !important;
}

/* CTA "CHOISIR LE STARTER" - main pack CTA (horizontal) */
.cc-pack__cta-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  border-radius: 13px !important;
  gap: 7px !important;
  padding: 20px 15px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  border: 1px solid #FFFFFF1F !important;
  text-decoration: none !important;
  cursor: pointer !important;
  font-family: "Mona Sans", sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 24px !important;
  letter-spacing: -0.01em !important;
  color: #FFFFFF !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.cc-pack__cta-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: #FF4E9E70 0px 4px 35px !important;
}

/* CTA "SÉCURISER MA PLACE" - expanded validate CTA (vertical, with subtitle) */
.cc-pack__validate-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 100% !important;
  border-radius: 13px !important;
  gap: 4px !important;
  padding: 12px 15px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  border: 1px solid #FFFFFF1F !important;
  cursor: pointer !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  color: #FFFFFF !important;
  font-family: "Mona Sans", sans-serif !important;
}

.cc-pack__validate-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: #FF4E9E70 0px 4px 35px !important;
}

.cc-pack__validate-cta svg {
  width: 24px !important;
  height: 24px !important;
}

.cc-pack__validate-text {
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 24px !important;
  letter-spacing: -0.01em !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
}

.cc-pack__validate-price {
  font-weight: 900 !important;
}

/* Reassurance block below CTA */
.cc-pack__expanded .cc-reassurance,
.cc-pack__body .cc-reassurance {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin-top: 12px !important;
  border-radius: 16px !important;
  overflow: clip !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF14 !important;
}

/* Separator inside recap */
.cc-pack__recap hr,
.cc-pack__recap-lines + hr {
  width: 100% !important;
  height: 1px !important;
  background-color: #FFFFFF17 !important;
  border: none !important;
  margin: 0 !important;
}

/* Fix badge position: should be inside the image, not in the body */
.cc-pack__badge--stock {
  position: absolute !important;
  bottom: 10px !important;
  left: 10px !important;
  top: auto !important;
  right: auto !important;
  z-index: 2 !important;
}

/* Image wrap must be positioned for badge */
.cc-pack__img-wrap {
  position: relative !important;
}

/* Hide duplicate badges that are outside the image */
.cc-pack__body > .cc-pack__badge {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
}

/* ============================================================
   POKER CHIPS (DICE) — SVG BACKGROUND LIKE HD
   ============================================================ */

.cc-pack__die {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 1 !important;
}

.cc-pack__die--active {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='10' cy='10' rx='8' ry='9.5' fill='%23FFFFFF' fill-opacity='0.15'/%3E%3Cellipse cx='10' cy='10' rx='8' ry='9.5' stroke='%23FFFFFF' stroke-opacity='0.3' stroke-width='0.8'/%3E%3Cellipse cx='10' cy='10' rx='5.5' ry='6.5' stroke='%23FFFFFF' stroke-opacity='0.2' stroke-width='0.5' stroke-dasharray='2 1.5'/%3E%3Cellipse cx='10' cy='4' rx='4.5' ry='1' fill='%23FFFFFF' fill-opacity='0.1'/%3E%3C/svg%3E") !important;
  opacity: 0.9 !important;
}

.cc-pack__die--inactive {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='10' cy='10' rx='8' ry='9.5' fill='%23FFFFFF' fill-opacity='0.04'/%3E%3Cellipse cx='10' cy='10' rx='8' ry='9.5' stroke='%23FFFFFF' stroke-opacity='0.1' stroke-width='0.8'/%3E%3Cellipse cx='10' cy='10' rx='5.5' ry='6.5' stroke='%23FFFFFF' stroke-opacity='0.06' stroke-width='0.5' stroke-dasharray='2 1.5'/%3E%3C/svg%3E") !important;
  opacity: 0.5 !important;
}

/* ============================================================
   STEP 2 — GARMENT SELECTOR (DESIGN + TAILLE) — FROM PAPER 6P-0
   ============================================================ */

.cc-pack__garments {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  gap: 12px !important;
  background-color: #1A1A24 !important;
  border-radius: 16px !important;
  padding: 18px !important;
  border: 1px solid #FFFFFF12 !important;
}

/* Garment header row (number + name + "Design + taille") */
.cc-pack__garments::before {
  display: none !important;
}

/* Size select dropdown */
.cc-pack__size-select {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF1A !important;
  color: #F5F5F7 !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236B6B78' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  cursor: pointer !important;
  transition: border-color 0.15s ease !important;
}

.cc-pack__size-select:focus {
  outline: none !important;
  border-color: #FF2E7E !important;
  box-shadow: #FF2E7E33 0px 0px 0px 2px !important;
}

.cc-pack__size-select option {
  background-color: #15151C !important;
  color: #F5F5F7 !important;
}

/* ============================================================
   RECAP CARD REFINEMENTS
   ============================================================ */

/* Recap icon squares */
.cc-pack__recap-line::before {
  content: '' !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
  background-color: #1E1E27 !important;
  border: 1px solid #FFFFFF12 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 7.5L12 3l8.5 4.5v9L12 21l-8.5-4.5z' stroke='%236B6B78' stroke-width='1.5'/%3E%3Cpath d='M3.5 7.5L12 12m0 0l8.5-4.5M12 12v9' stroke='%236B6B78' stroke-width='1.5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.cc-pack__recap-line--shipping::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='6' width='15' height='10' rx='1' stroke='%236B6B78' stroke-width='1.2'/%3E%3Cpath d='M16 9h3l3 4v3h-6V9z' stroke='%236B6B78' stroke-width='1.2'/%3E%3Ccircle cx='7' cy='17' r='2' stroke='%236B6B78' stroke-width='1.2'/%3E%3Ccircle cx='19' cy='17' r='2' stroke='%236B6B78' stroke-width='1.2'/%3E%3C/svg%3E") !important;
}

/* Participation counter left: flex gap fix */
.cc-pack__participations .cc-pack__participations-x + .cc-pack__participations-text-wrap {
  margin-left: 10px !important;
}

/* ============================================================
   REASSURANCE BLOCK UNDER CTA (9R-0) — PIXEL-PERFECT
   ============================================================ */

/* The reassurance block sits below the validate CTA inside expanded pack */
/* It uses existing trust badges from cc-submit__trust or needs dedicated selectors */

/* Override: make sure tags are visible (were hidden by earlier rule) */
.cc-pack__tags {
  display: flex !important;
  align-items: flex-start !important;
  gap: 4px !important;
  width: fit-content !important;
  justify-content: flex-start !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
}

.cc-pack__tag {
  display: flex !important;
  align-items: center !important;
  border-radius: 9px !important;
  padding: 7px 12px !important;
  gap: 7px !important;
  width: fit-content !important;
  background-color: #2DE6E01F !important;
  border: 1px solid #2DE6E04D !important;
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  color: #2DE6E0 !important;
  white-space: nowrap !important;
}

/* SVG icon inside tag */
.cc-pack__tag svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
  color: #2DE6E0 !important;
  stroke: #2DE6E0 !important;
}

/* ============================================================
   REASSURANCE CARD UNDER CTA — STARS + HUISSIER
   ============================================================ */

/* Wrapper: dark card with 2 rows separated by line */
.cc-pack__reassurance,
.cc-pack__expanded > .cc-reassurance {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin-top: 12px !important;
  border-radius: 16px !important;
  overflow: clip !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF14 !important;
}

/* Row 1: Stars + rating */
.cc-pack__reassurance-row,
.cc-reassurance__row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 14px 16px !important;
  gap: 10px !important;
}

/* Stars container */
.cc-pack__reassurance-stars,
.cc-reassurance__stars {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.cc-pack__reassurance-stars svg,
.cc-reassurance__stars svg {
  color: #FF2E7E !important;
  fill: #FF2E7E !important;
}

.cc-pack__reassurance-rating,
.cc-reassurance__rating {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
  color: #F5F5F7 !important;
}

/* Separator */
.cc-pack__reassurance-sep,
.cc-reassurance__sep {
  width: 100% !important;
  height: 1px !important;
  flex-shrink: 0 !important;
  background-color: #FFFFFF12 !important;
}

/* Row 2: Huissier */
.cc-pack__reassurance-legal,
.cc-reassurance__legal {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px 16px !important;
  gap: 11px !important;
}

.cc-pack__reassurance-legal svg,
.cc-reassurance__legal svg {
  flex-shrink: 0 !important;
  color: #A1A1AD !important;
  stroke: #A1A1AD !important;
}

.cc-pack__reassurance-legal-text,
.cc-reassurance__legal-text {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 16px !important;
  color: #A1A1AD !important;
}

/* Also style existing submit trust badges that serve as reassurance */
.cc-submit__trust {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin-top: 12px !important;
  border-radius: 16px !important;
  overflow: clip !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF14 !important;
}

.cc-submit__trust-item {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px 16px !important;
  gap: 11px !important;
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 16px !important;
  color: #A1A1AD !important;
  border-bottom: 1px solid #FFFFFF12 !important;
}

.cc-submit__trust-item:last-child {
  border-bottom: none !important;
}

.cc-submit__trust-item svg {
  flex-shrink: 0 !important;
  color: #A1A1AD !important;
}

/* ============================================================
   TRUST BLOCK (CE-0) + CHECKBOX VISIBILITY FIX
   ============================================================ */

.cc-trust-block {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 18px !important;
  padding: 20px !important;
  gap: 14px !important;
  background-color: #10121C !important;
  border: 1px solid #FFFFFF12 !important;
  margin-top: 14px !important;
}

.cc-trust-block__header {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.cc-trust-block__label {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  line-height: 13px !important;
  text-transform: uppercase !important;
  color: #6E7088 !important;
  white-space: nowrap !important;
}

.cc-trust-block__line {
  flex: 1 !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%) !important;
}

.cc-trust-block__card {
  display: flex !important;
  align-items: center !important;
  border-radius: 13px !important;
  padding: 13px 14px !important;
  gap: 12px !important;
  background-color: #FFFFFF06 !important;
  border: 1px solid #FFFFFF0F !important;
}

.cc-trust-block__icon {
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
}

.cc-trust-block__icon--teal {
  background-color: #2DE6E017 !important;
  border: 1px solid #2DE6E03D !important;
}

.cc-trust-block__icon--pink {
  background-color: #FF2D8B17 !important;
  border: 1px solid #FF2D8B3D !important;
}

.cc-trust-block__text {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  gap: 2px !important;
}

.cc-trust-block__title {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
  color: #F4F4F8 !important;
}

.cc-trust-block__desc {
  font-family: "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  color: #A0A2B8 !important;
}

.cc-trust-block__reviews {
  display: flex !important;
  flex-direction: column !important;
  padding-top: 2px !important;
  gap: 10px !important;
}

.cc-trust-block__review {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 13px !important;
  padding: 13px 14px !important;
  gap: 7px !important;
  background-color: #FFFFFF06 !important;
  border: 1px solid #FFFFFF0F !important;
}

.cc-trust-block__stars {
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
}

.cc-trust-block__quote {
  font-family: "Archivo", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 19px !important;
  color: #C9CBDC !important;
  margin: 0 !important;
}

.cc-trust-block__author {
  font-family: "Archivo", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 14px !important;
  color: #6E7088 !important;
}

/* CHECKBOX — more visible before selection (user request) */
.cc-pack__checkbox {
  background-color: #1E1E2A !important;
  border: 1.5px solid #FFFFFF44 !important;
}

.cc-pack.selected .cc-pack__checkbox,
.cc-pack[aria-checked="true"] .cc-pack__checkbox {
  background-color: #FF2E7E !important;
  border-color: #FF2E7E !important;
}

/* CTA button non-expanded — more visible (not black on black) */
.cc-pack__cta-btn {
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  color: #FFFFFF !important;
}

/* When pack is NOT selected/expanded, show outline CTA instead */
.cc-pack:not(.selected):not([aria-checked="true"]) .cc-pack__cta-btn {
  background: transparent !important;
  border: 2px solid #FF2E7E !important;
  color: #FF2E7E !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.cc-pack:not(.selected):not([aria-checked="true"]) .cc-pack__cta-btn:hover {
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  color: #FFFFFF !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
}

/* ============================================================
   CTA BUTTONS FIX — TWO DISTINCT BUTTONS
   ============================================================ */

/* Button 1: "CHOISIR LE STARTER" — opens the card (cc-pack__cta-btn)
   ALWAYS pink gradient, horizontal, single line
   Visible when card is collapsed, hidden when expanded */
.cc-pack__cta-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: row !important;
  width: 100% !important;
  border-radius: 13px !important;
  gap: 7px !important;
  padding: 20px 15px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  border: 1px solid #FFFFFF1F !important;
  text-decoration: none !important;
  cursor: pointer !important;
  font-family: "Mona Sans", sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 24px !important;
  letter-spacing: -0.01em !important;
  color: #FFFFFF !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.cc-pack__cta-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: #FF4E9E70 0px 4px 35px !important;
}

/* Remove the outline override for non-selected packs */
.cc-pack:not(.selected):not([aria-checked="true"]) .cc-pack__cta-btn {
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  border: 1px solid #FFFFFF1F !important;
  color: #FFFFFF !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
}

/* When pack is selected/expanded, hide this button */
.cc-pack.selected .cc-pack__cta-btn {
  display: none !important;
}

/* Button 2: "SECURISER MA PLACE" — actual add-to-cart (cc-pack__validate-cta)
   Pink gradient, VERTICAL (column), title + subtitle
   Only visible when card is expanded */
.cc-pack__validate-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 100% !important;
  border-radius: 13px !important;
  gap: 4px !important;
  padding: 12px 15px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  border: 1px solid #FFFFFF1F !important;
  cursor: pointer !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  color: #FFFFFF !important;
  font-family: "Mona Sans", sans-serif !important;
}

.cc-pack__validate-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: #FF4E9E70 0px 4px 35px !important;
}

.cc-pack__validate-cta svg {
  width: 24px !important;
  height: 24px !important;
}

.cc-pack__validate-text {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  justify-content: center !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 24px !important;
  letter-spacing: -0.01em !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
}

/* Subtitle under the CTA text */
.cc-pack__validate-cta::after {
  content: attr(data-subtitle);
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  opacity: 0.6 !important;
  color: #FFFFFF !important;
}

/* ============================================================
   VALIDATE CTA — RESPONSIVE FIX
   ============================================================ */

/* Reset all previous conflicting rules */
button.cc-pack__validate-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  border-radius: 13px !important;
  gap: 4px !important;
  padding: 14px 12px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  border: 1px solid #FFFFFF1F !important;
  cursor: pointer !important;
  color: #FFFFFF !important;
  font-family: "Mona Sans", sans-serif !important;
  overflow: hidden !important;
  word-break: break-word !important;
}

button.cc-pack__validate-cta .cc-pack__validate-text {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 20px !important;
  letter-spacing: -0.01em !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
  white-space: normal !important;
  text-align: center !important;
  flex-wrap: wrap !important;
  max-width: 100% !important;
}

button.cc-pack__validate-cta svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
}

@media (min-width: 768px) {
  button.cc-pack__validate-cta {
    padding: 12px 15px !important;
  }
  button.cc-pack__validate-cta .cc-pack__validate-text {
    font-size: 18px !important;
    line-height: 22px !important;
  }
}

@media (min-width: 1024px) {
  button.cc-pack__validate-cta .cc-pack__validate-text {
    font-size: 20px !important;
    line-height: 24px !important;
  }
}

@media (max-width: 767px) {
  button.cc-pack__validate-cta {
    padding: 14px 10px !important;
    border-radius: 11px !important;
  }
  button.cc-pack__validate-cta .cc-pack__validate-text {
    font-size: 14px !important;
    line-height: 18px !important;
    gap: 4px !important;
  }
  button.cc-pack__validate-cta svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 390px) {
  button.cc-pack__validate-cta .cc-pack__validate-text {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}

/* ============================================================
   SIMPLE REASSURANCE (9R-0) — STARS + HUISSIER ONLY
   ============================================================ */

.cc-pack__reassurance-simple {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin-top: 12px !important;
  border-radius: 16px !important;
  overflow: clip !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF14 !important;
}

.cc-pack__reassurance-simple__row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 14px 16px !important;
  gap: 10px !important;
}

.cc-pack__reassurance-simple__stars {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.cc-pack__reassurance-simple__rating {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
  color: #F5F5F7 !important;
  white-space: nowrap !important;
}

.cc-pack__reassurance-simple__sep {
  width: 100% !important;
  height: 1px !important;
  background-color: #FFFFFF12 !important;
}

.cc-pack__reassurance-simple__legal {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px 16px !important;
  gap: 11px !important;
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 16px !important;
  color: #A1A1AD !important;
}

.cc-pack__reassurance-simple__legal svg {
  flex-shrink: 0 !important;
}

/* Hide the old trust block if it somehow still renders */
.cc-trust-block {
  display: none !important;
}
.cc-pack__reassurance {
  display: none !important;
}

/* ============================================================
   SECTION HEADER SPACING FIX — GLOBAL
   ============================================================ */

.cc-section-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 16px !important;
}

.cc-heading-wrapper {
  margin-bottom: 8px !important;
}

.cc-section-desc {
  margin-top: 8px !important;
  max-width: 560px !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  color: #A0A2B8 !important;
}

/* Heading itself */
.cc-heading {
  margin: 0 !important;
  padding: 0 !important;
}

.cc-section-desc {
  margin: 0 !important;
  padding: 0 !important;
}

/* SPACING FIX — heading wrapper to desc */
.cc-heading-wrapper {
  margin-bottom: 20px !important;
}

.cc-section-header .cc-section-desc {
  margin-top: 12px !important;
}

/* GLOBAL SPACING — heading to paragraph — ALL sections */
.cc-heading-wrapper + p,
.cc-heading-wrapper + .cc-section-desc,
.cc-heading-wrapper ~ p.cc-section-desc,
h2.cc-heading + p,
.cc-section-header > p {
  margin-top: 20px !important;
}

.cc-heading-wrapper + p:first-of-type,
.cc-section-header > p:first-of-type {
  margin-top: 20px !important;
}

/* FIX — trust section header spacing (no badge, heading directly followed by desc) */
.cc-trust .cc-section-header {
  gap: 20px !important;
}

.cc-trust .cc-heading-wrapper {
  margin-bottom: 4px !important;
}

/* ============================================================
   PARTICIPATIONS TABLE — MATCH PAPER DESIGN
   ============================================================ */

/* Hide emails — Paper design only shows name + number */
.cc-participations__row-email {
  display: none !important;
}

/* Row layout: horizontal with avatar, name, number */
.cc-participations__row {
  display: flex !important;
  align-items: center !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  gap: 10px !important;
}

.cc-participations__row--highlight {
  background-color: #1E1E28 !important;
  border: 1px solid #FFFFFF0F !important;
  margin-bottom: 6px !important;
}

.cc-participations__row--faded {
  margin-bottom: 4px !important;
}

.cc-participations__row-name-col {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
}

/* Avatar circle — gradient for highlighted rows */
.cc-participations__avatar {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  background-color: #2A2A36 !important;
}

.cc-participations__avatar--active {
  background: linear-gradient(135deg, #FF5DA0 0%, #FF8E42 100%) !important;
}

/* Name */
.cc-participations__row-name {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
  color: #F4F4F8 !important;
}

.cc-participations__row-name--other {
  color: #6E7088 !important;
  font-weight: 500 !important;
}

/* Number tag */
.cc-participations__row-number {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 14px !important;
  color: #FF2E7E !important;
}

/* Hide check indicator on pack cards */
.cc-pack__check {
  display: none !important;
}

/* ============================================================
   COIN/CHIP ICONS — EXACT SVG FROM PAPER DESIGN
   ============================================================ */

.cc-pack__die {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 1 !important;
}

.cc-pack__die--active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cg%3E%3Cpath d='m11,1.25h-4c-.4141,0-.75.336-.75.75s.3359.75.75.75h4c.5839,0,1.201.656,1.677,1.75h-2.932c-.4141,0-.75.336-.75.75s.3359.75.75.75h3.421c.1602.676.27,1.434.313,2.25h-3.229c-.4141,0-.75.336-.75.75s.3359.75.75.75h3.229c-.429.816-.1531,1.574-.3134,2.25h-3.421c-.4141,0-.75.336-.75.75s.3359.75.75.75h2.932c-.4755,1.094-1.093,1.75-1.677,1.75h-4c-.4141,0-.75.336-.75.75s.3359.75.75.75h4c2.28,0,4-3.332,4-7.75s-1.72-7.75-4-7.75Z' fill='%23FFFFFF' opacity='0.4'/%3E%3Cpath d='m7,1.25c-2.28,0-4,3.332-4,7.75s1.72,7.75,4,7.75,4-3.332,4-7.75S9.28,1.25,7,1.25Zm.75,9.5c0,.4141-.3359.75-.75.75s-.75-.3359-.75-.75v-3.5c0-.4141.336-.75.75-.75s.75.336.75.75v3.5Z' fill='%23FFFFFF'/%3E%3C/g%3E%3C/svg%3E") !important;
  opacity: 1 !important;
}

.cc-pack__die--inactive {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cg opacity='0.2'%3E%3Cpath d='m11,1.25h-4c-.4141,0-.75.336-.75.75s.3359.75.75.75h4c.5839,0,1.201.656,1.677,1.75h-2.932c-.4141,0-.75.336-.75.75s.3359.75.75.75h3.421c.1602.676.27,1.434.313,2.25h-3.229c-.4141,0-.75.336-.75.75s.3359.75.75.75h3.229c-.429.816-.1531,1.574-.3134,2.25h-3.421c-.4141,0-.75.336-.75.75s.3359.75.75.75h2.932c-.4755,1.094-1.093,1.75-1.677,1.75h-4c-.4141,0-.75.336-.75.75s.3359.75.75.75h4c2.28,0,4-3.332,4-7.75s-1.72-7.75-4-7.75Z' fill='%23FFFFFF' opacity='0.4'/%3E%3Cpath d='m7,1.25c-2.28,0-4,3.332-4,7.75s1.72,7.75,4,7.75,4-3.332,4-7.75S9.28,1.25,7,1.25Zm.75,9.5c0,.4141-.3359.75-.75.75s-.75-.3359-.75-.75v-3.5c0-.4141.336-.75.75-.75s.75.336.75.75v3.5Z' fill='%23FFFFFF'/%3E%3C/g%3E%3C/svg%3E") !important;
  opacity: 1 !important;
}

/* ============================================================
   NAME ROW RESPONSIVE FIX — PC VIEW
   ============================================================ */

.cc-pack__name-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}

.cc-pack__checkbox {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  flex-shrink: 0 !important;
}

.cc-pack__name {
  flex: 1 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 18px !important;
  margin: 0 !important;
}

.cc-pack__pricing {
  display: flex !important;
  align-items: baseline !important;
  gap: 5px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.cc-pack__price {
  font-size: 18px !important;
  white-space: nowrap !important;
}

.cc-pack__compare {
  font-size: 13px !important;
  white-space: nowrap !important;
}

@media (min-width: 1024px) {
  .cc-pack__name {
    font-size: 21px !important;
  }
  .cc-pack__price {
    font-size: 21px !important;
  }
  .cc-pack__compare {
    font-size: 15px !important;
  }
}

/* Step separator — transparent background */
.cc-pack__step-sep {
  background-color: transparent !important;
  background: transparent !important;
}

.cc-pack__step-sep-text {
  background-color: transparent !important;
  background: transparent !important;
}

/* Step title — VALIDE TA COMMANDE / PERSONNALISE TON PACK */
.cc-pack__step-title {
  font-family: "Anton", sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 30px !important;
  color: #F5F5F7 !important;
  text-align: center !important;
  margin: 0 !important;
  width: 100% !important;
  padding-bottom: 4px !important;
}

/* ============================================================
   VALIDATE CTA — SECURISER MA PLACE (34B-0 exact)
   ============================================================ */

button.cc-pack__validate-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 13px !important;
  gap: 4px !important;
  padding: 12px 15px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  box-shadow: #FF4E9E47 0px 0px 27px !important;
  border: 1px solid #FFFFFF1F !important;
  cursor: pointer !important;
  color: #FFFFFF !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.cc-pack__validate-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.cc-pack__validate-title {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 24px !important;
  letter-spacing: -0.01em !important;
  color: #FFFFFF !important;
  text-shadow: #FFFFFF66 0px -2px 10px, #00000033 0px 1px 2px !important;
}

.cc-pack__validate-sub {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  color: #FFFFFF !important;
  opacity: 0.6 !important;
  font-style: italic !important;
}

@media (max-width: 767px) {
  .cc-pack__validate-title {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .cc-pack__validate-sub {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

/* ============================================================
   RECAP LINE ICONS — PRODUCT IMAGES (46x46)
   ============================================================ */

/* Base icon square */
.cc-pack__recap-line::before {
  content: "" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
  background-color: #1E1E27 !important;
  border: 1px solid #FFFFFF12 !important;
  background-size: 24px 24px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Product lines: package icon */
.cc-pack__recap-line:not(.cc-pack__recap-line--shipping):not(.cc-pack__recap-line--bonus)::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 7.5L12 3l8.5 4.5v9L12 21l-8.5-4.5z' stroke='%236B6B78' stroke-width='1.5'/%3E%3Cpath d='M3.5 7.5L12 12m0 0l8.5-4.5M12 12v9' stroke='%236B6B78' stroke-width='1.5'/%3E%3C/svg%3E") !important;
}

/* Shipping line: truck icon */
.cc-pack__recap-line--shipping::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='6' width='15' height='10' rx='1' stroke='%236B6B78' stroke-width='1.2'/%3E%3Cpath d='M16 9h3l3 4v3h-6V9z' stroke='%236B6B78' stroke-width='1.2'/%3E%3Ccircle cx='7' cy='17' r='2' stroke='%236B6B78' stroke-width='1.2'/%3E%3Ccircle cx='19' cy='17' r='2' stroke='%236B6B78' stroke-width='1.2'/%3E%3C/svg%3E") !important;
}

/* Bonus line: gift icon */
.cc-pack__recap-line--bonus::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='8' width='18' height='4' rx='1' stroke='%232DE6E0' stroke-width='1.2'/%3E%3Cpath d='M12 8v13M3 12h18v7a2 2 0 01-2 2H5a2 2 0 01-2-2v-7z' stroke='%232DE6E0' stroke-width='1.2'/%3E%3Cpath d='M7.5 8C7.5 8 7 4 9.5 4s3 4 3 4M16.5 8c0 0 .5-4-2-4s-3 4-3 4' stroke='%232DE6E0' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

/* Validate title — single line */
.cc-pack__validate-row {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

.cc-pack__validate-title {
  white-space: nowrap !important;
  font-size: 17px !important;
}

@media (min-width: 768px) {
  .cc-pack__validate-title {
    font-size: 20px !important;
  }
}

/* ============================================================
   FAQ SECTION — LAYOUT + MARGINS + RESPONSIVE
   ============================================================ */

.cc-faq .cc-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-inline: 16px !important;
}

.cc-faq__layout {
  display: flex !important;
  gap: 32px !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-top: 32px !important;
}

/* Sidebar */
.cc-faq__sidebar {
  width: 380px !important;
  min-width: 380px !important;
  flex-shrink: 0 !important;
  position: sticky !important;
  top: 100px !important;
}

.cc-faq__sidebar-card {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 18px !important;
  overflow: clip !important;
  background-color: #15151C !important;
  border: 1px solid #FFFFFF14 !important;
}

.cc-faq__sidebar-img-placeholder {
  width: 100% !important;
  height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #1A1A24 !important;
}

.cc-faq__sidebar-body {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.cc-faq__sidebar-title {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #F4F4F8 !important;
  margin: 0 !important;
}

.cc-faq__sidebar-desc {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  color: #A0A2B8 !important;
  margin: 0 !important;
}

.cc-faq__sidebar-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: 4px !important;
}

.cc-faq__sidebar-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 20px !important;
  border-radius: 10px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  color: #FFFFFF !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: transform 0.15s ease !important;
}

.cc-faq__sidebar-cta:hover {
  transform: translateY(-1px) !important;
}

.cc-faq__sidebar-legal {
  font-family: "Archivo", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 15px !important;
  color: #6E7088 !important;
  margin: 0 !important;
}

/* FAQ list */
.cc-faq__list {
  flex: 1 !important;
  min-width: 0 !important;
}

.cc-faq__category {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #FF2E7E !important;
  margin: 24px 0 8px !important;
}

.cc-faq__category:first-child {
  margin-top: 0 !important;
}

.cc-faq__item {
  border-bottom: 1px solid #FFFFFF12 !important;
}

.cc-faq__question {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 16px 0 !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  gap: 16px !important;
  text-align: left !important;
}

.cc-faq__question-text {
  font-family: "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  color: #F4F4F8 !important;
}

.cc-faq__chevron {
  flex-shrink: 0 !important;
  color: #6E7088 !important;
  transition: transform 0.2s ease !important;
}

.cc-faq__question[aria-expanded="true"] .cc-faq__chevron {
  transform: rotate(180deg) !important;
}

.cc-faq__answer {
  overflow: hidden !important;
  max-height: 0 !important;
  transition: max-height 0.3s ease !important;
}

.cc-faq__answer p {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 22px !important;
  color: #A0A2B8 !important;
  margin: 0 !important;
  padding-bottom: 16px !important;
}

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

@media (max-width: 1023px) {
  .cc-faq__sidebar {
    width: 320px !important;
    min-width: 320px !important;
  }
}

@media (max-width: 767px) {
  .cc-faq__layout {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .cc-faq__sidebar {
    width: 100% !important;
    min-width: 0 !important;
    position: static !important;
  }

  .cc-faq__sidebar-img-placeholder {
    height: 160px !important;
  }

  .cc-faq .cc-container {
    padding-inline: 16px !important;
  }

  .cc-faq__question-text {
    font-size: 14px !important;
  }
}

/* FAQ question button — responsive fix */
button.cc-faq__question {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 16px 4px !important;
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #FFFFFF12 !important;
  cursor: pointer !important;
  gap: 12px !important;
  text-align: left !important;
  overflow: hidden !important;
}

button.cc-faq__question .cc-faq__question-text {
  flex: 1 !important;
  min-width: 0 !important;
  word-break: break-word !important;
  white-space: normal !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  color: #F4F4F8 !important;
}

button.cc-faq__question .cc-faq__chevron {
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background-color: #1E1E27 !important;
  border: 1px solid #FFFFFF14 !important;
  color: #A0A2B8 !important;
}

@media (max-width: 767px) {
  button.cc-faq__question .cc-faq__question-text {
    font-size: 14px !important;
    line-height: 19px !important;
  }
  button.cc-faq__question {
    padding: 14px 0 !important;
    gap: 10px !important;
  }
}

/* ============================================================
   PARTICIPATION TABLE — FULL STYLING FROM PAPER
   ============================================================ */

/* Table card wrapper */
.cc-participations__table-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  border-radius: 18px !important;
  overflow: clip !important;
  background-color: #12141E !important;
  border: 1px solid #FFFFFF14 !important;
  padding: 20px !important;
  gap: 16px !important;
}

/* Table header: lock icon + title + badge */
.cc-participations__table-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.cc-participations__table-header-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.cc-participations__lock-icon {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
  background-color: #1E1E27 !important;
  border: 1px solid #FFFFFF12 !important;
  color: #A0A2B8 !important;
}

.cc-participations__table-title {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 20px !important;
  color: #F4F4F8 !important;
  text-transform: uppercase !important;
}

.cc-participations__table-subtitle {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  line-height: 14px !important;
  color: #6E7088 !important;
  text-transform: uppercase !important;
}

.cc-participations__table-badge {
  display: flex !important;
  align-items: center !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  background-color: #0C2E2E !important;
  border: 1px solid #2DE6E059 !important;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: #2DE6E0 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

/* Intro text */
.cc-participations__table-intro {
  font-family: "Anton", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 26px !important;
  color: #FF2E7E !important;
  font-style: italic !important;
}

/* Column headers */
.cc-participations__table-columns {
  width: 100% !important;
}

.cc-participations__table-cols {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 8px !important;
}

.cc-participations__col-label {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #6E7088 !important;
}

/* Hide EMAIL column label (not in Paper design) */
.cc-participations__col-label:not(.cc-participations__col-label--name) {
  display: none !important;
}

/* Table fade at bottom */
.cc-participations__table-fade {
  width: 100% !important;
  height: 54px !important;
  background: linear-gradient(180deg, transparent 0%, #12141E 100%) !important;
  margin-top: -54px !important;
  position: relative !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Grid layout: rules left, table right on desktop */
.cc-participations__grid {
  display: flex !important;
  gap: 32px !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-top: 32px !important;
}

.cc-participations__rules {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.cc-participations__table-wrapper {
  width: 400px !important;
  min-width: 400px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 767px) {
  .cc-participations__grid {
    flex-direction: column !important;
  }
  .cc-participations__table-wrapper {
    width: 100% !important;
    min-width: 0 !important;
  }
  /* Symétrie des marges : la card a déjà 20px de padding, on retire le double-indent */
  .cc-participations__table-columns { padding: 0 !important; }
  .cc-participations__table-rows { padding: 0 !important; }
}

/* Hero section — reduce top margin */
.cc-hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.cc-hero .cc-container {
  padding-top: 16px !important;
}

.cc-hero__grid {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ============================================================
   CAR SPEC BARS — GAUGE FILLS
   ============================================================ */

.cc-car-spec__bar-track {
  width: 100% !important;
  height: 4px !important;
  border-radius: 2px !important;
  background-color: #FFFFFF14 !important;
  overflow: hidden !important;
  margin-top: 6px !important;
}

.cc-car-spec__bar-fill {
  height: 100% !important;
  border-radius: 2px !important;
  transition: width 0.6s ease !important;
}

/* Car 1 (RS3) — teal gradient */
.cc-car-spec__bar-fill--1 {
  background: linear-gradient(90deg, #2DE6E0 0%, #1FA8A3 100%) !important;
}

/* Car 2 (RS6) — pink gradient */
.cc-car-spec__bar-fill--2 {
  background: linear-gradient(90deg, #FF2E7E 0%, #FF5DA0 100%) !important;
}

/* Car 3 (G63) — gray gradient (locked) */
.cc-car-spec__bar-fill--3 {
  background: linear-gradient(90deg, #6E7088 0%, #A0A2B8 100%) !important;
}

/* Spec row layout */
.cc-car-spec {
  width: 100% !important;
}

.cc-car-spec__row {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.cc-car-spec__label {
  font-family: "Archivo", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #A0A2B8 !important;
}

.cc-car-spec__value {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #F4F4F8 !important;
}

/* Separator between specs */
.cc-car-spec__sep {
  width: 100% !important;
  height: 1px !important;
  background-color: #FFFFFF0F !important;
  margin: 8px 0 !important;
}

/* Specs container */
.cc-car-card__specs {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 16px 0 !important;
}

/* ============================================================
   CHANCES SECTION — PIXEL-PERFECT FROM PAPER HQ-0
   ============================================================ */

/* Show emails on desktop (Paper shows them) */
@media (min-width: 768px) {
  .cc-participations__row-email {
    display: block !important;
    font-family: "Archivo", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #6E7088 !important;
  }
  .cc-participations__row-email--faded {
    color: #4A4C5C !important;
  }
  .cc-participations__row {
    justify-content: space-between !important;
  }
}

/* Grid: rules left, table right */
.cc-participations__grid {
  display: flex !important;
  gap: 40px !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-top: 40px !important;
}

.cc-participations__rules {
  flex: 0 0 40% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  align-self: center !important;
}

.cc-participations__table-wrapper {
  flex: 1 !important;
  min-width: 0 !important;
  width: auto !important;
}

/* Rule cards */
.cc-participations__rule {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.cc-participations__rule-icon {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  flex-shrink: 0 !important;
}

.cc-participations__rule-icon--cyan,
.cc-participations__rule-icon--teal {
  background-color: #2DE6E017 !important;
  border: 1px solid #2DE6E03D !important;
  color: #2DE6E0 !important;
}

.cc-participations__rule-icon--pink {
  background-color: #FF2D8B17 !important;
  border: 1px solid #FF2D8B3D !important;
  color: #FF2D8B !important;
}

.cc-participations__rule-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.cc-participations__rule-title {
  font-family: "Anton", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: #F4F4F8 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}

.cc-participations__rule-desc {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  color: #A0A2B8 !important;
  margin: 0 !important;
}

/* CTA "Choisir mon pack" */
.cc-participations__cta,
.cc-participations__rules a[class*="cta"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 14px 24px !important;
  border-radius: 12px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  color: #FFFFFF !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: transform 0.15s ease !important;
  width: fit-content !important;
  margin-top: 8px !important;
}

.cc-participations__cta:hover {
  transform: translateY(-1px) !important;
}

/* Participation rows — better styling */
.cc-participations__row--highlight {
  background-color: #1A1A24 !important;
  border: 1px solid #FFFFFF0F !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  margin-bottom: 6px !important;
}

.cc-participations__row--faded {
  padding: 8px 14px !important;
  margin-bottom: 4px !important;
  opacity: 1 !important;
}

/* Column headers visible on desktop */
@media (min-width: 768px) {
  .cc-participations__table-columns {
    display: block !important;
  }
  .cc-participations__table-cols {
    display: flex !important;
    padding: 0 14px 8px !important;
  }
  .cc-participations__col-label {
    display: block !important;
  }
  .cc-participations__col-label--name {
    flex: 1 !important;
  }
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
  .cc-participations__grid {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .cc-participations__rules {
    flex: none !important;
    width: 100% !important;
  }
  .cc-participations__table-wrapper {
    width: 100% !important;
  }
}

/* ============================================================
   FAQ SECTION — PIXEL-PERFECT FROM PAPER RM-0
   ============================================================ */

/* Layout: sidebar left, FAQ right */
.cc-faq__layout {
  display: flex !important;
  gap: 40px !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-top: 40px !important;
}

/* Sidebar */
.cc-faq__sidebar {
  width: 340px !important;
  min-width: 340px !important;
  flex-shrink: 0 !important;
  position: sticky !important;
  top: 100px !important;
}

.cc-faq__sidebar-card {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 18px !important;
  overflow: clip !important;
  background-color: #12141E !important;
  border: 1px solid #FFFFFF14 !important;
}

.cc-faq__sidebar-img-placeholder {
  width: 100% !important;
  height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #1A1A24 !important;
  overflow: clip !important;
}

.cc-faq__sidebar-img-placeholder img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.cc-faq__sidebar-body {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.cc-faq__sidebar-title {
  font-family: "Anton", sans-serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 26px !important;
  color: #F4F4F8 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}

.cc-faq__sidebar-desc {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  color: #A0A2B8 !important;
  margin: 0 !important;
}

.cc-faq__sidebar-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: 4px !important;
}

.cc-faq__sidebar-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  background: linear-gradient(173deg, #FF5DA0 22%, #E0247A 78%) !important;
  color: #FFFFFF !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: transform 0.15s ease !important;
}

.cc-faq__sidebar-cta:hover {
  transform: translateY(-1px) !important;
}

/* Secondary CTA "Voir le reglement" — outline style */
.cc-faq__sidebar-actions a:nth-child(2),
.cc-faq__sidebar-actions .cc-faq__sidebar-cta-secondary {
  background: transparent !important;
  border: 1px solid #FFFFFF33 !important;
  color: #F4F4F8 !important;
}

.cc-faq__sidebar-legal {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 15px !important;
  color: #6E7088 !important;
  margin: 0 !important;
  margin-top: 4px !important;
}

/* FAQ list */
.cc-faq__list {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

/* Category labels */
.cc-faq__category {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #FF2E7E !important;
  margin: 16px 0 4px !important;
  padding: 0 !important;
}

.cc-faq__category:first-child {
  margin-top: 0 !important;
}

/* FAQ items as cards */
.cc-faq__item {
  border: none !important;
  border-bottom: none !important;
  background-color: #12141E !important;
  border-radius: 14px !important;
  border: 1px solid #FFFFFF0F !important;
  overflow: hidden !important;
}

/* Question button */
button.cc-faq__question {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 16px 18px !important;
  background: none !important;
  border: none !important;
  border-bottom: none !important;
  cursor: pointer !important;
  gap: 14px !important;
  text-align: left !important;
}

button.cc-faq__question .cc-faq__question-text {
  flex: 1 !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  color: #F4F4F8 !important;
}

/* Chevron: circle with + / - */
button.cc-faq__question .cc-faq__chevron {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background-color: #1E1E27 !important;
  border: 1px solid #FFFFFF14 !important;
  color: #6E7088 !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

/* When open: pink circle with - */
button.cc-faq__question[aria-expanded="true"] .cc-faq__chevron {
  background-color: #FF2E7E !important;
  border-color: #FF2E7E !important;
  color: #FFFFFF !important;
  transform: none !important;
}

/* Answer area */
.cc-faq__answer {
  overflow: hidden !important;
}

.cc-faq__answer p {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 22px !important;
  color: #A0A2B8 !important;
  margin: 0 !important;
  padding: 0 18px 16px !important;
}

/* Mobile: stack */
@media (max-width: 767px) {
  .cc-faq__layout {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .cc-faq__sidebar {
    width: 100% !important;
    min-width: 0 !important;
    position: static !important;
  }
}

/* ============================================================
   CAR SPEC BARS — FORCE VISIBLE (override any existing rules)
   ============================================================ */

.cc-voitures__grid .cc-car-card .cc-car-spec__bar-track {
  width: 100% !important;
  height: 4px !important;
  border-radius: 2px !important;
  background-color: #FFFFFF14 !important;
  overflow: hidden !important;
  margin-top: 6px !important;
  display: block !important;
}

.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill {
  height: 4px !important;
  border-radius: 2px !important;
  display: block !important;
  min-height: 4px !important;
}

.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill.cc-car-spec__bar-fill--1 {
  background: linear-gradient(90deg, #2DE6E0 0%, #1FA8A3 100%) !important;
}

.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill.cc-car-spec__bar-fill--2 {
  background: linear-gradient(90deg, #FF2E7E 0%, #FF5DA0 100%) !important;
}

.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill.cc-car-spec__bar-fill--3 {
  background: linear-gradient(90deg, #6E7088 0%, #A0A2B8 100%) !important;
}

/* ============================================================
   CAR SPEC BARS — PIXEL-PERFECT FROM PAPER (6px, pill, fade-in gradient)
   ============================================================ */

div.cc-car-spec__bar-track {
  width: 100% !important;
  height: 6px !important;
  border-radius: 999px !important;
  background-color: #FFFFFF12 !important;
  overflow: clip !important;
  margin-top: 6px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

div.cc-car-spec__bar-fill {
  height: 100% !important;
  border-radius: 999px !important;
  display: block !important;
  min-height: 6px !important;
  transition: width 0.8s ease !important;
}

/* RS3 (car 1) — teal, fade from 20% to 100% */
div.cc-car-spec__bar-fill.cc-car-spec__bar-fill--1 {
  background: linear-gradient(90deg, rgba(45, 230, 224, 0.2) 0%, rgba(45, 230, 224, 1) 100%) !important;
}

/* RS6 (car 2) — pink, fade from 20% to 100% */
div.cc-car-spec__bar-fill.cc-car-spec__bar-fill--2 {
  background: linear-gradient(90deg, rgba(255, 46, 126, 0.2) 0%, rgba(255, 46, 126, 1) 100%) !important;
}

/* G63 (car 3) — neutral gray, fade from 20% to 100% */
div.cc-car-spec__bar-fill.cc-car-spec__bar-fill--3 {
  background: linear-gradient(90deg, rgba(200, 200, 210, 0.2) 0%, rgba(200, 200, 210, 1) 100%) !important;
}

/* ============================================================
   CAR SPEC UNITS — COLORED PER CARD
   ============================================================ */

.cc-car-spec__value {
  display: flex !important;
  align-items: baseline !important;
  gap: 2px !important;
  font-family: "Mona Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #F5F5F7 !important;
}

.cc-car-spec__unit {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Car 1 (RS3) — teal unit */
.cc-car-spec__unit--1 {
  color: #2DE6E0 !important;
}

/* Car 2 (RS6) — pink unit */
.cc-car-spec__unit--2 {
  color: #FF4E9E !important;
}

/* Car 3 (G63) — gray unit */
.cc-car-spec__unit--3 {
  color: #C8C8D2 !important;
}

/* ============================================================
   CAR SPEC BARS — FINAL FIX: USE INLINE WIDTH, NO ANIMATION RESET
   ============================================================ */

.cc-car-spec__bar-fill,
.cc-car-spec__bar-fill[style],
div.cc-car-spec__bar-fill,
.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill,
.cc-car-card .cc-car-spec__bar-fill,
.cc-car-card.is-visible .cc-car-spec__bar-fill {
  /* Let inline style width work */
  height: 6px !important;
  min-height: 6px !important;
  border-radius: 999px !important;
  display: block !important;
}

/* RS3 teal gradient */
.cc-car-spec__bar-fill--1,
div.cc-car-spec__bar-fill.cc-car-spec__bar-fill--1,
.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill.cc-car-spec__bar-fill--1 {
  background: linear-gradient(90deg, rgba(45,230,224,0.2) 0%, rgba(45,230,224,1) 100%) !important;
}

/* RS6 pink gradient */
.cc-car-spec__bar-fill--2,
div.cc-car-spec__bar-fill.cc-car-spec__bar-fill--2,
.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill.cc-car-spec__bar-fill--2 {
  background: linear-gradient(90deg, rgba(255,46,126,0.2) 0%, rgba(255,46,126,1) 100%) !important;
}

/* G63 gray gradient */
.cc-car-spec__bar-fill--3,
div.cc-car-spec__bar-fill.cc-car-spec__bar-fill--3,
.cc-voitures__grid .cc-car-card .cc-car-spec__bar-fill.cc-car-spec__bar-fill--3 {
  background: linear-gradient(90deg, rgba(200,200,210,0.2) 0%, rgba(200,200,210,1) 100%) !important;
}

/* Track */
.cc-car-spec__bar-track,
div.cc-car-spec__bar-track {
  width: 100% !important;
  height: 6px !important;
  border-radius: 999px !important;
  background-color: #FFFFFF12 !important;
  overflow: visible !important;
  display: block !important;
  flex-shrink: 0 !important;
  margin-top: 6px !important;
}

/* ============================================================
   CAR CARD FOOTER — PIXEL-PERFECT FROM PAPER G5-0
   ============================================================ */

.cc-car-card__footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding-top: 12px !important;
  border-top: 1px solid #FFFFFF0F !important;
  margin-top: 4px !important;
}

.cc-car-card__value-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.cc-car-card__value-label {
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 13px !important;
  color: #A1A1AD !important;
}

.cc-car-card__value-price {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 22px !important;
  color: #FFFFFF !important;
}

/* Badge styles per car */
.cc-car-card__value-badge {
  display: flex !important;
  align-items: center !important;
  border-radius: 9px !important;
  padding: 7px 12px !important;
  font-family: "Inter", "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 15px !important;
  white-space: nowrap !important;
}

/* RS3 "Offerte" — green */
.cc-car-card__value-badge--green {
  background-color: #0E1A12 !important;
  border: 1px solid #2BD47733 !important;
  color: #6FE39A !important;
}

/* RS6 "Des 15 000 articles" — pink solid */
.cc-car-card__value-badge--pink {
  background-color: #FF2E7E !important;
  box-shadow: #FF2E7E55 0px 6px 18px !important;
  color: #FFFFFF !important;
  border: none !important;
}

/* G63 "Des 30 000 articles" — outline gray */
.cc-car-card__value-badge--outline {
  background-color: #13141C !important;
  border: 1px solid #FFFFFF14 !important;
  color: #B6B6C0 !important;
}

/* ============================================================
   HEADER VISIBILITY ON CONCOURS PAGE
   ============================================================ */

/* Make header visible on dark bg — add semi-transparent dark background */
.concours-page ~ .shopify-section-header,
body:has(.concours-page) .shopify-section-header,
body:has(.cc-hero) .shopify-section-header,
body:has(.concours-page) #shopify-section-header-group,
body:has(.cc-hero) [id*="header-group"] {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

body:has(.concours-page) .header,
body:has(.cc-hero) .header {
  background-color: rgba(12, 14, 24, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid #FFFFFF12 !important;
}

/* Ensure header text/icons are visible on dark bg */
body:has(.concours-page) .header *,
body:has(.cc-hero) .header * {
  color: #F4F4F8 !important;
}

body:has(.concours-page) .header svg,
body:has(.cc-hero) .header svg {
  color: #F4F4F8 !important;
  stroke: #F4F4F8 !important;
}

/* ============================================================
   PARTICIPATION TABLE ROWS — PIXEL-PERFECT FROM PAPER IL-0
   ============================================================ */

/* Table card */
.cc-participations__table-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  border-radius: 18px !important;
  background-color: #12141E !important;
  border: 1px solid #FFFFFF14 !important;
  padding: 20px !important;
  gap: 16px !important;
  overflow: visible !important;
}

/* Rows container */
.cc-participations__table-rows {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
}

/* Highlight rows — pink border, visible */
.cc-participations__row.cc-participations__row--highlight {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  background-color: #1A1A26 !important;
  border: 1px solid #FF2E7E44 !important;
  margin-bottom: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Name col */
.cc-participations__row .cc-participations__row-name-col {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 1 !important;
}

/* Avatar */
.cc-participations__row .cc-participations__avatar {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  background-color: #2A2A36 !important;
}

.cc-participations__row .cc-participations__avatar--active {
  background: linear-gradient(135deg, #FF5DA0 0%, #2DE6E0 100%) !important;
}

/* Name */
.cc-participations__row .cc-participations__row-name {
  font-family: "Archivo", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 19px !important;
  color: #F4F4F8 !important;
}

/* Number */
.cc-participations__row .cc-participations__row-number {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #FF2E7E !important;
  margin-left: 4px !important;
}

/* Email */
.cc-participations__row .cc-participations__row-email {
  display: block !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #6E7088 !important;
  flex-shrink: 0 !important;
}

/* Faded rows */
.cc-participations__row.cc-participations__row--faded {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 16px !important;
  border: none !important;
  background: transparent !important;
  visibility: visible !important;
}

.cc-participations__row--faded .cc-participations__row-name--other {
  color: #6E7088 !important;
  font-weight: 500 !important;
}

.cc-participations__row--faded .cc-participations__row-email--faded {
  display: block !important;
  color: #4A4C5C !important;
}

/* Fix opacity on faded rows (inline style uses wrong values) */
.cc-participations__row--faded[style*="opacity: 50"] {
  opacity: 0.5 !important;
}

.cc-participations__row--faded[style*="opacity: 20"] {
  opacity: 0.2 !important;
}

/* ============================================================
   FAQ ANSWER — MARGINS + RESPONSIVE
   ============================================================ */

.cc-faq__answer {
  padding: 0 !important;
}

.cc-faq__answer p {
  font-family: "Archivo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 22px !important;
  color: #A0A2B8 !important;
  margin: 0 !important;
  padding: 0 18px 18px !important;
  max-width: 100% !important;
  word-break: break-word !important;
}

/* Question items — better spacing */
.cc-faq__item {
  background-color: #12141E !important;
  border-radius: 14px !important;
  border: 1px solid #FFFFFF0F !important;
  overflow: hidden !important;
  margin-bottom: 8px !important;
}

.cc-faq__item + .cc-faq__item {
  margin-top: 0 !important;
}

/* Question button spacing */
button.cc-faq__question {
  padding: 16px 18px !important;
}

/* Mobile */
@media (max-width: 767px) {
  .cc-faq__answer p {
    font-size: 13px !important;
    line-height: 20px !important;
    padding: 0 14px 14px !important;
  }
  
  button.cc-faq__question {
    padding: 14px !important;
  }
  
  .cc-faq__item {
    border-radius: 12px !important;
    margin-bottom: 6px !important;
  }
}

/* Trust section — no border-radius on section */
.cc-trust,
section.cc-trust,
.cc-section.cc-trust {
  border-radius: 0 !important;
}

/* Trust section — no border, no outline */
.cc-trust,
section.cc-trust,
.cc-section.cc-trust {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Inactive dice — reduce opacity more, no visible outline */
.cc-pack__die--inactive {
  opacity: 0.15 !important;
  filter: brightness(0.3) !important;
}

/* ============================================================
   HEADER — FORCE VISIBLE ON ALL PAGES
   ============================================================ */

/* The header-component is rendered by the theme layout */
header-component,
.header--sticky {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force dark background for color-scheme-3 */
.header__layout.color-scheme-3,
.header__layout-desktop.color-scheme-3,
.header__layout-mobile.color-scheme-3 {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

/* Ensure header is not overlapped by concours sections */
.concours-page,
.cc-hero,
.cc-section,
section[class*="cc-"] {
  position: relative !important;
  z-index: 1 !important;
}

/* Header container z-index */
[id*="header-group"],
.shopify-section-group-header-group {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
}

/* Participations section — no border, no outline, no lines around */
.cc-participations,
section.cc-participations,
.cc-section.cc-participations {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* FAQ toggle — JS controls inline styles directly */

/* FAQ ANSWER — OPEN STATE OVERRIDE */
.cc-faq__item.is-open > .cc-faq__answer {
  max-height: 500px !important;
  overflow: visible !important;
}

/* ============================================================
   CAROUSEL — MAIN IMAGE + THUMBNAIL STRIP (Paper 4-0)
   ============================================================ */

/* Only show active slide */
.cc-carousel__slide {
  display: none !important;
}

.cc-carousel__slide--active {
  display: block !important;
}

/* Main image container */
.cc-carousel__slide img.cc-carousel__img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  border: 1px solid #FFFFFF14 !important;
}

/* Thumbnail strip */
.cc-carousel__thumbs {
  display: flex !important;
  width: 100% !important;
  gap: 12px !important;
  margin-top: 14px !important;
}

.cc-carousel__thumb {
  flex: 1 1 0 !important;
  height: 92px !important;
  border-radius: 11px !important;
  overflow: clip !important;
  cursor: pointer !important;
  background: none !important;
  border: 2px solid transparent !important;
  padding: 0 !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
  position: relative !important;
}

.cc-carousel__thumb--active {
  border-color: #FF2D8B !important;
  box-shadow: #FF2D8B33 0px 0px 0px 3px !important;
}

.cc-carousel__thumb:hover:not(.cc-carousel__thumb--active) {
  border-color: #FFFFFF44 !important;
}

.cc-carousel__thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Inactive dice — visible but subtle */
.cc-pack__die.cc-pack__die--inactive {
  opacity: 0.35 !important;
  filter: none !important;
}

/* ============================================================
   CAROUSEL FIX — disable translateX, use show/hide only
   ============================================================ */

/* Kill the old translateX carousel — force track to not move */
.cc-carousel__track {
  transform: none !important;
  display: block !important;
  width: 100% !important;
  transition: none !important;
}

/* All slides hidden by default */
.cc-carousel__slide {
  display: none !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

/* Active slide visible */
.cc-carousel__slide--active {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Image fills the slide */
.cc-carousel__slide img.cc-carousel__img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  border: 1px solid #FFFFFF14 !important;
  display: block !important;
}

/* Hide dots (we use thumbs instead) */
.cc-carousel__dots {
  display: none !important;
}


/* Horizontal packs grid */
.cc-packs--horizontal {
  display: flex !important;
  gap: 20px !important;
  width: 100% !important;
  margin-top: 40px !important;
}

.cc-packs--horizontal > .cc-pack {
  flex: 1 1 0 !important;
  min-width: 0 !important;
}

@media (max-width: 767px) {
  .cc-packs--horizontal {
    flex-direction: column !important;
  }
}

/* PACKS HORIZONTAL — force row on desktop */
.cc-packs-section .cc-packs--horizontal {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  width: 100% !important;
}

.cc-packs-section .cc-packs--horizontal > .cc-pack {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: 33.33% !important;
}

@media (max-width: 767px) {
  .cc-packs-section .cc-packs--horizontal {
    flex-direction: column !important;
  }
  .cc-packs-section .cc-packs--horizontal > .cc-pack {
    max-width: 100% !important;
  }
}

/* ============================================================
   CAROUSEL HERO — IMAGE TAILLE REELLE SUR MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .cc-carousel__slide {
    aspect-ratio: auto !important;
    height: auto !important;
  }
  .cc-carousel__slide img.cc-carousel__img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    display: block !important;
  }
}

/* ============================================================
   PARTICIPATIONS BLOCK — RESPONSIVE MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .cc-pack__participations {
    gap: 8px !important;
    padding: 10px 12px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  /* "X7" — réduit pour laisser de la place */
  .cc-pack__participations-x {
    font-size: 28px !important;
    line-height: 26px !important;
    flex-shrink: 0 !important;
  }

  /* Texte — prend l'espace restant */
  .cc-pack__participations-text-wrap {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin-left: 6px !important;
  }

  .cc-pack__participations-text {
    font-size: 12px !important;
    line-height: 14px !important;
  }

  .cc-pack__participations-sub {
    font-size: 10px !important;
    line-height: 12px !important;
  }

  /* Dés — taille réduite, largeur fixe pour 4+3 */
  .cc-pack__dice {
    width: 70px !important;
    max-width: 70px !important;
    gap: 2px !important;
    flex-shrink: 0 !important;
  }

  .cc-pack__die {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ============================================================
   PARTICIPATION IMG — SVG FALLBACK
   ============================================================ */
.cc-pack__participation-svg {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 12px !important;
}

/* ============================================================
   RECAP — MASQUER LIGNE LIVRAISON
   ============================================================ */
.cc-pack__recap-line--shipping {
  display: none !important;
}

/* ============================================================
   CTA BUTTON — TEXTE PLUS PETIT SUR MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .cc-pack__cta-btn {
    font-size: 14px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* ============================================================
   SECTION HEADER — RESPONSIVE MOBILE (texte ne sort pas)
   ============================================================ */
@media (max-width: 767px) {
  .cc-section-header {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .cc-heading-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .cc-heading {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    font-size: 28px !important;
    line-height: 32px !important;
  }
  .cc-script {
    max-width: 100% !important;
    font-size: 30px !important;
  }
  .cc-swoosh {
    max-width: 100% !important;
  }
  .cc-section-desc {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Empêche le script (position:absolute + white-space:nowrap) de créer un scroll horizontal */
  .cc-section-header {
    overflow-x: hidden !important;
  }
}

/* ============================================================
   PACK IMAGE — TAILLE REELLE (PAS DE CROP)
   ============================================================ */
.cc-pack__img-wrap {
  height: auto !important;
  overflow: hidden !important;
  aspect-ratio: auto !important;
}

.cc-pack__img-wrap .cc-pack__img {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  object-fit: fill !important;
  display: block !important;
}

/* ============================================================
   RECAP BUNDLE — RESPONSIVE MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .cc-pack__recap {
    padding: 14px 12px !important;
    gap: 10px !important;
    border-radius: 14px !important;
  }

  /* Header */
  .cc-pack__recap-title {
    font-size: 13px !important;
    line-height: 16px !important;
  }
  .cc-pack__recap-subtitle {
    font-size: 11px !important;
  }

  /* Lines */
  .cc-pack__recap-lines {
    gap: 10px !important;
  }
  .cc-pack__recap-line {
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .cc-pack__recap-line-info {
    min-width: 0 !important;
  }
  .cc-pack__recap-line-name {
    font-size: 12px !important;
    line-height: 16px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .cc-pack__recap-line-size,
  .cc-pack__recap-line-detail {
    font-size: 11px !important;
    line-height: 14px !important;
  }
  .cc-pack__recap-line-price {
    font-size: 13px !important;
    line-height: 16px !important;
    white-space: nowrap !important;
  }

  /* Total */
  .cc-pack__recap-total {
    padding-top: 10px !important;
  }
  .cc-pack__recap-total-label {
    font-size: 14px !important;
  }
  .cc-pack__recap-total-amount {
    font-size: 18px !important;
    line-height: 22px !important;
  }
}

/* ============================================================
   PARTICIPATIONS CARD — RESPONSIVE MOBILE
   ============================================================ */
@media (max-width: 767px) {
  /* Spécificité double (.cc-participations .cc-participations__grid) pour
     écraser align-items: flex-start !important hors media query */
  .cc-participations .cc-participations__grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px !important;
    width: 100% !important;
  }
  .cc-participations .cc-participations__rules {
    flex: none !important;
    width: 100% !important;
  }
  .cc-participations .cc-participations__table-wrapper {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Card : pas de padding global — chaque élément gère le sien */
  .cc-participations__table-card {
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }

  /* Header : pleine largeur, padding horizontal uniforme */
  .cc-participations__table-header {
    padding: 14px 16px !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
  }
  .cc-participations__table-header-left {
    gap: 8px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
  .cc-participations__lock-icon {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }
  .cc-participations__table-title {
    font-size: 13px !important;
    line-height: 17px !important;
  }
  .cc-participations__table-subtitle {
    font-size: 9px !important;
  }
  .cc-participations__table-badge {
    font-size: 9px !important;
    padding: 4px 8px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* Intro : même indentation que header */
  .cc-participations__table-intro {
    font-size: 13px !important;
    line-height: 18px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    padding: 10px 16px 4px !important;
  }

  /* Colonnes header : aligné sur 16px */
  .cc-participations__table-cols {
    padding: 8px 16px 6px !important;
  }

  /* Rows wrapper */
  .cc-participations__table-rows {
    padding: 4px 16px 12px !important;
  }

  /* Rows individuelles */
  .cc-participations__row--highlight,
  .cc-participations__row--faded {
    padding: 10px 12px !important;
    min-width: 0 !important;
  }

  /* Nom + avatar */
  .cc-participations__row .cc-participations__row-name-col {
    width: auto !important;
    flex: 1 1 0 !important;
    max-width: 55% !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
    gap: 8px !important;
  }
  .cc-participations__row .cc-participations__avatar {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }
  .cc-participations__row .cc-participations__row-name {
    font-size: 13px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  .cc-participations__row .cc-participations__row-number {
    font-size: 11px !important;
    flex-shrink: 0 !important;
  }

  /* Email */
  .cc-participations__row .cc-participations__row-email {
    font-size: 11px !important;
    flex-shrink: 0 !important;
    max-width: 42% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

/* ============================================================
   PARTICIPATIONS TABLE CARD — RESET MOBILE DEFINITIF
   Spécificité double pour écraser tous les blocs précédents
   ============================================================ */
@media (max-width: 767px) {

  /* Grid : colonne + stretch */
  .cc-participations .cc-participations__grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px !important;
    width: 100% !important;
  }
  .cc-participations .cc-participations__rules {
    flex: none !important;
    width: 100% !important;
  }
  .cc-participations .cc-participations__table-wrapper {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Card : sans padding propre, chaque enfant gère le sien */
  .cc-participations .cc-participations__table-card {
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 0 !important;
    border-radius: 14px !important;
  }

  /* Header : pleine largeur, badge sur la même ligne */
  .cc-participations .cc-participations__table-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding: 14px 16px !important;
    gap: 10px !important;
  }
  .cc-participations .cc-participations__table-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .cc-participations .cc-participations__lock-icon {
    width: 30px !important;
    height: 30px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }
  .cc-participations .cc-participations__table-title {
    font-size: 12px !important;
    line-height: 1.3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  .cc-participations .cc-participations__table-subtitle {
    font-size: 9px !important;
  }
  .cc-participations .cc-participations__table-badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* Intro */
  .cc-participations .cc-participations__table-intro {
    padding: 10px 16px 4px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
  }

  /* Colonnes header */
  .cc-participations .cc-participations__table-columns {
    padding: 0 16px !important;
  }
  .cc-participations .cc-participations__table-cols {
    display: flex !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cc-participations .cc-participations__col-label--name {
    flex: 0 0 55% !important;
    width: auto !important;
    font-size: 9px !important;
  }
  .cc-participations .cc-participations__col-label:not(.cc-participations__col-label--name) {
    flex: 1 !important;
    font-size: 9px !important;
  }

  /* Rows wrapper */
  .cc-participations .cc-participations__table-rows {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 4px 16px 12px !important;
  }

  /* Row individuelle */
  .cc-participations .cc-participations__row {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
  }

  /* Colonne nom */
  .cc-participations .cc-participations__row-name-col {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 0 0 55% !important;
    width: auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .cc-participations .cc-participations__avatar {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    flex-shrink: 0 !important;
  }
  .cc-participations .cc-participations__row-name {
    font-size: 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  .cc-participations .cc-participations__row-number {
    font-size: 10px !important;
    flex-shrink: 0 !important;
  }

  /* Colonne email — restaure display:none du Paper design */
  .cc-participations .cc-participations__row-email {
    display: block !important;
    flex: 1 !important;
    min-width: 0 !important;
    font-size: 11px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  /* Colonne nom : fill restant quand email visible */
  .cc-participations .cc-participations__row-name-col {
    flex: 0 0 auto !important;
    width: 55% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
}
