/** Shopify CDN: Minification failed

Line 551:0 Unexpected "}"

**/
/*
 * Pack Découverte — Green Spa
 * Design premium inspiré Sapiens : clean, minimaliste, premium
 * ============================================================
 */

/* ── Variables ─────────────────────────────────────────── */
.packdecouverteverlou-section {
  --pd-primary:        #1C1C1C;
  --pd-primary-hover:  #000000;
  --pd-primary-light:  #F5F0E8;
  --pd-accent:         #C8A96E;
  --pd-accent-dark:    #A8864E;
  --pd-accent-light:   #F9F3E8;
  --pd-bg:             #F5F2ED;
  --pd-white:          #FFFFFF;
  --pd-text:           #1C1C1C;
  --pd-text-muted:     #8A8278;
  --pd-border:         #E2DDD6;
  --pd-border-focus:   #1C1C1C;
  --pd-success:        #1C1C1C;
  --pd-warning-bg:     #FFFBEB;
  --pd-warning-border: #FCD34D;
  --pd-warning-text:   #92400E;
  --pd-radius:         10px;
  --pd-radius-sm:      8px;
  --pd-radius-xs:      5px;
  --pd-shadow:         0 2px 16px rgba(0, 0, 0, 0.06);
  --pd-shadow-hover:   0 6px 28px rgba(0, 0, 0, 0.11);
  --pd-shadow-card:    0 1px 8px rgba(0, 0, 0, 0.05);
  --pd-font-serif:     Georgia, 'Times New Roman', serif;
  --pd-transition:     0.2s ease;
  --pd-ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
.packdecouverteverlou-section *,
.packdecouverteverlou-section *::before,
.packdecouverteverlou-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
  CORRECTIF CRITIQUE : certains de nos éléments ont display:flex/block dans
  leur règle CSS, ce qui écrase le display:none que le navigateur associe
  nativement à l'attribut HTML `hidden` (les styles auteur priment toujours
  sur les styles user-agent). Sans ce correctif, .pd-loading (display:flex)
  reste visible même quand hidden=true → spinner toujours affiché.
*/
.packdecouverteverlou-section [hidden] {
  display: none !important;
}

/* ── Accessibilité : focus clavier ──────────────────────── */
/*
  :focus-visible n'apparaît que pour la navigation clavier (Tab),
  pas pour les clics souris → meilleure UX.
*/
.packdecouverteverlou-section :focus-visible {
  outline: 2px solid var(--pd-primary);
  outline-offset: 3px;
  border-radius: var(--pd-radius-xs);
}

.packdecouverteverlou-section .pd-btn:focus-visible,
.packdecouverteverlou-section .pd-variant-pill:focus-visible {
  outline-offset: 4px;
}

.packdecouverteverlou-section .pd-product-card:focus-visible {
  outline-offset: -2px;
  border-color: var(--pd-primary);
}

/* Préférence reduced-motion : on désactive les animations */
@media (prefers-reduced-motion: reduce) {
  .packdecouverteverlou-section *,
  .packdecouverteverlou-section *::before,
  .packdecouverteverlou-section *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Root ───────────────────────────────────────────────── */
.pd-root {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  position: relative;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--pd-text);
  font-size: 15px;
  line-height: 1.5;
}

/* ── Section Hero ────────────────────────────────────────── */
.pd-section-hero {
  text-align: center;
  padding: 0 0 52px;
}

.pd-section-hero__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pd-accent);
  margin-bottom: 16px;
}

.pd-section-hero__title {
  font-family: var(--pd-font-serif);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 400;
  color: var(--pd-text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pd-section-hero__tagline {
  font-size: 15px;
  color: var(--pd-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  font-style: italic;
}

/* ── Stepper ────────────────────────────────────────────── */
.pd-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
}

.pd-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: opacity var(--pd-transition);
}

.pd-stepper__step:hover {
  opacity: 0.75;
}

.pd-stepper__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--pd-text-muted);
  background: var(--pd-white);
  transition: background var(--pd-transition),
              border-color var(--pd-transition),
              color var(--pd-transition),
              box-shadow var(--pd-transition);
}

.pd-stepper__step--active .pd-stepper__circle {
  background: var(--pd-primary);
  border-color: var(--pd-primary);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(28, 28, 28, 0.08);
}

.pd-stepper__step--done .pd-stepper__circle {
  background: var(--pd-accent);
  border-color: var(--pd-accent);
  color: #fff;
}

.pd-stepper__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--pd-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.pd-stepper__step--active .pd-stepper__label,
.pd-stepper__step--done .pd-stepper__label {
  color: var(--pd-text);
  font-weight: 600;
}

.pd-stepper__connector {
  flex: 0 0 80px;
  height: 1px;
  background: var(--pd-border);
  margin: 22px 16px 0;
  transition: background var(--pd-transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-stepper__or {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pd-bg, #F5F2ED);
  padding: 0 10px;
  font-size: 13px;
  font-family: var(--pd-font-serif);
  font-style: italic;
  color: var(--pd-text-muted);
  line-height: 1;
}

.pd-stepper--step2 .pd-stepper__connector {
  background: var(--pd-accent);
}

/* ── Steps ──────────────────────────────────────────────── */
.pd-step {
  display: none;
}

.pd-step--active {
  display: block;
  animation: pd-fadeIn 0.3s ease forwards;
}

@keyframes pd-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Pack Cards Grid ────────────────────────────────────── */
.pd-packs-container {
  display: grid;
  /* minmax(0, 1fr) : permet aux colonnes de rétrécir sous leur contenu.
     Avec 1fr seul, la largeur minimale implicite = contenu, ce qui cause
     un overflow horizontal quand les titres de produits sont longs. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 44px;
  align-items: stretch;
}

/* Niveau intermédiaire (tablette) : 2 colonnes */
@media (max-width: 1024px) {
  .pd-packs-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pd-packs-container {
    grid-template-columns: minmax(0, 1fr);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Pack Card ──────────────────────────────────────────── */
.pd-pack-card {
  background: var(--pd-white);
  border: 1.5px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--pd-transition),
              border-color var(--pd-transition),
              transform var(--pd-transition);
}

.pd-pack-card:hover {
  box-shadow: var(--pd-shadow-hover);
  transform: translateY(-3px);
}

.pd-pack-card--featured {
  border-color: var(--pd-accent);
  box-shadow: 0 4px 24px rgba(200, 169, 110, 0.18);
}

/* Image strip at top of pack card */
.pd-pack-card__strip {
  display: flex;
  height: 160px;
  border-radius: var(--pd-radius) var(--pd-radius) 0 0;
  overflow: hidden;
  background: var(--pd-bg);
  flex-shrink: 0;
}

.pd-pack-card__strip-img {
  flex: 1;
  object-fit: cover;
  height: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.pd-pack-card:hover .pd-pack-card__strip-img {
  transform: scale(1.05);
}

.pd-pack-card__strip-img + .pd-pack-card__strip-img {
  border-left: 2px solid #fff;
}

.pd-pack-card__strip-placeholder {
  flex: 1;
  background: var(--pd-border);
  opacity: 0.35;
}

/* Card body below the strip */
.pd-pack-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

/* Push price + CTA to the bottom so all cards align */
.pd-pack-card__body .pd-pack-price {
  margin-top: auto;
}

/* Badge floats above the strip */
.pd-pack-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pd-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.pd-pack-card__badge--gold {
  background: var(--pd-accent);
  color: #3D2B00;
  box-shadow: 0 2px 8px rgba(200, 169, 110, 0.4);
}

/* Eyebrow count label */
.pd-pack-card__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pd-accent);
  margin-bottom: 7px;
}

.pd-pack-card__title {
  font-family: var(--pd-font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--pd-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.pd-pack-card__subtitle {
  font-size: 13px;
  color: var(--pd-text-muted);
  margin-top: 6px;
  line-height: 1.45;
  font-style: italic;
}

/* Hide mini-thumbnails in pack card list (images are in the strip) */
.pd-pack-card .pd-pack-product-item__img,
.pd-pack-card .pd-pack-product-item__img-placeholder {
  display: none !important;
}

/* ── Product list inside pack card ─────────────────────── */
.pd-pack-product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-pack-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-pack-product-item__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--pd-radius-sm);
  background: var(--pd-bg);
  flex-shrink: 0;
  display: block;
}

.pd-pack-product-item__img-placeholder {
  width: 56px;
  height: 56px;
  border-radius: var(--pd-radius-sm);
  background: var(--pd-bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-border);
}

.pd-pack-product-item__info {
  flex: 1;
  min-width: 0;
}

.pd-pack-product-item__name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--pd-text);
}

.pd-pack-product-item__select {
  width: 100%;
  font-size: 12px;
  padding: 5px 8px;
  border: 1.5px solid var(--pd-border);
  border-radius: var(--pd-radius-xs);
  background: var(--pd-bg);
  color: var(--pd-text);
  cursor: pointer;
  transition: border-color var(--pd-transition);
  appearance: auto;
}

.pd-pack-product-item__select:focus {
  outline: none;
  border-color: var(--pd-border-focus);
}

.pd-pack-product-item__variant-only {
  font-size: 12px;
  color: var(--pd-text-muted);
}

/* ── Pack Price ─────────────────────────────────────────── */
.pd-pack-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-pack-price__original {
  font-size: 14px;
  color: var(--pd-text-muted);
  text-decoration: line-through;
}

.pd-pack-price__discounted {
  font-size: 26px;
  font-weight: 700;
  color: var(--pd-primary);
  font-family: var(--pd-font-serif);
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}

.pd-pack-price__original {
  font-variant-numeric: tabular-nums;
}

.pd-pack-price__savings {
  font-size: 10px;
  font-weight: 600;
  background: var(--pd-accent-light);
  color: var(--pd-accent-dark);
  padding: 3px 9px;
  border-radius: 3px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* ── Step 1 footer ──────────────────────────────────────── */
.pd-step1-footer {
  padding-top: 12px;
}

/* Mention légale en bas d'étape 1 */
.pd-step1-limit-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px auto 0;
  padding: 16px 24px;
  max-width: 680px;
  background: color-mix(in srgb, var(--pd-accent) 8%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--pd-accent) 35%, transparent);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pd-text);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.pd-step1-limit-notice svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--pd-accent);
}
}

/* "ou" separator */
.pd-step1-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pd-step1-or::before,
.pd-step1-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--pd-border);
}

.pd-step1-or__text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pd-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Card-style "à l'unité" option — traitement accent doré */
.pd-step1-unite-option {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: var(--pd-accent-light);
  border: 1.5px solid var(--pd-accent);
  border-radius: var(--pd-radius);
  padding: 22px 28px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all var(--pd-transition);
  color: var(--pd-text);
  box-shadow: 0 2px 12px rgba(200, 169, 110, 0.12);
}

.pd-step1-unite-option:hover {
  background: #F4ECD8;
  border-color: var(--pd-accent-dark);
  box-shadow: 0 6px 28px rgba(200, 169, 110, 0.22);
  transform: translateY(-2px);
}

.pd-step1-unite-option__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 110, 0.2);
  border-radius: var(--pd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-accent-dark);
}

.pd-step1-unite-option__body {
  flex: 1;
}

.pd-step1-unite-option__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 4px;
  font-family: var(--pd-font-serif);
  letter-spacing: -0.01em;
}

.pd-step1-unite-option__sub {
  font-size: 12px;
  color: var(--pd-accent-dark);
  line-height: 1.45;
}

.pd-step1-unite-option__arrow {
  flex-shrink: 0;
  color: var(--pd-accent-dark);
  transition: transform var(--pd-transition);
}

.pd-step1-unite-option:hover .pd-step1-unite-option__arrow {
  transform: translateX(6px);
}

/* ── Buttons ────────────────────────────────────────────── */
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--pd-transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  font-family: inherit;
}

.pd-btn--primary {
  background: var(--pd-primary);
  color: #fff;
  border-color: var(--pd-primary);
  width: 100%;
}

.pd-btn--primary:hover:not(:disabled) {
  background: var(--pd-primary-hover);
  border-color: var(--pd-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pd-btn--primary:active:not(:disabled) {
  transform: translateY(0);
}

.pd-btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pd-btn--ghost {
  background: transparent;
  color: var(--pd-primary);
  border-color: var(--pd-primary);
  width: 100%;
}

.pd-btn--ghost:hover {
  background: var(--pd-primary-light);
  transform: translateY(-1px);
}

.pd-btn-link {
  background: none;
  border: none;
  color: var(--pd-text-muted);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  transition: color var(--pd-transition);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-family: inherit;
}

.pd-btn-link:hover {
  color: var(--pd-primary);
}

.pd-back-btn {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--pd-text-muted);
  cursor: pointer;
  padding: 0;
  transition: color var(--pd-transition);
  font-family: inherit;
}

.pd-back-btn:hover {
  color: var(--pd-primary);
}

/* ── Step 2 Header ──────────────────────────────────────── */
.pd-step2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}

.pd-rule-notice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pd-accent-dark);
  background: var(--pd-accent-light);
  border: 1px solid rgba(200, 169, 110, 0.35);
  padding: 7px 16px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Product Grid ───────────────────────────────────────── */
.pd-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  padding-bottom: 200px;
}

@media (max-width: 768px) {
  .pd-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

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

/* ── Product Card ───────────────────────────────────────── */
.pd-product-card {
  background: var(--pd-white);
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  transition: all var(--pd-transition);
  cursor: pointer;
  user-select: none;
  position: relative;
}

.pd-product-card:hover {
  box-shadow: var(--pd-shadow-card);
  border-color: #CDC7BE;
}

.pd-product-card--selected {
  border-color: var(--pd-accent) !important;
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.2) !important;
}

/* Carte produit en rupture de stock */
.pd-product-card--oos {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.pd-product-card--oos .pd-product-card__img {
  filter: grayscale(40%);
}

.pd-product-card__oos-pill {
  display: inline-flex;
  padding: 4px 11px;
  border: 1.5px solid var(--pd-border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pd-text-muted);
  background: none;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  text-decoration: line-through;
}

.pd-product-card__oos-label {
  font-size: 11px;
  font-weight: 600;
  color: #c0392b;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Image */
.pd-product-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pd-bg);
}

.pd-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pd-product-card:hover .pd-product-card__img {
  transform: scale(1.05);
}

/* Check overlay */
.pd-product-card__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: var(--pd-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--pd-transition),
              transform var(--pd-ease-spring) 0.18s;
  box-shadow: 0 2px 8px rgba(26, 92, 58, 0.3);
  pointer-events: none;
}

.pd-product-card--selected .pd-product-card__check {
  opacity: 1;
  transform: scale(1);
}

/* Body */
.pd-product-card__body {
  padding: 10px 12px 12px;
}

.pd-product-card__name {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.3;
  color: var(--pd-text);
}

/* Variant pills */
.pd-variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

/* Les OOS sont des <span> pour éviter les règles button[disabled] du thème */
.pd-variant-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border: 1.5px solid var(--pd-border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  transition: all var(--pd-transition);
  color: var(--pd-text-muted);
  font-family: inherit;
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
}

.pd-variant-pill:hover {
  border-color: var(--pd-primary);
  color: var(--pd-primary);
  background: var(--pd-primary-light);
}

.pd-variant-pill--active {
  background: var(--pd-primary);
  border-color: var(--pd-primary);
  color: #fff;
}

/* OOS : rendu en <span>, pas de hover */
.pd-variant-pill--unavailable {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

.pd-variant-pill--unavailable:hover {
  border-color: var(--pd-border);
  color: var(--pd-text-muted);
  background: none;
}

/* Variante fixe (lock_variants activé) : affiche la variante sans sélection */
.pd-product-card__variant-fixed {
  display: inline-block;
  padding: 4px 11px;
  margin: 0 0 12px;
  border: 1.5px solid var(--pd-border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pd-text-muted);
  background: var(--pd-bg);
  letter-spacing: 0.01em;
}

/* Product price */
.pd-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.pd-product-card__price-discounted {
  font-size: 16px;
  font-weight: 700;
  color: var(--pd-primary);
  font-variant-numeric: tabular-nums;
}

.pd-product-card__price-original {
  font-size: 12px;
  color: var(--pd-text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

/* Quand le helper computePrice() détermine qu'il n'y a pas de remise,
   le JS pose hidden=true sur l'élément. Le sélecteur [hidden] est natif. */
.pd-product-card__price-original[hidden],
.pd-product-card__price-savings[hidden],
.pd-pack-price__savings[hidden] {
  display: none !important;
}

.pd-product-card__desc {
  font-size: 11px;
  color: var(--pd-text-muted);
  line-height: 1.45;
  margin: -6px 0 10px;
}

.pd-product-card__price-savings {
  font-size: 10px;
  font-weight: 700;
  color: var(--pd-success);
  background: #ECFDF5;
  padding: 2px 7px;
  border-radius: 100px;
}

/* ── Summary Bar (slim sticky footer) ──────────────────── */
.pd-summary-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--pd-border);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 500;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.07);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 60px;
}

.pd-summary-bar--visible {
  transform: translateY(0);
}

.pd-summary-bar__info {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pd-summary-bar__count {
  font-size: 12px;
  color: var(--pd-text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.pd-summary-bar__total {
  font-size: 18px;
  font-weight: 700;
  color: var(--pd-text);
  font-family: var(--pd-font-serif);
  letter-spacing: -0.3px;
  font-variant-numeric: tabular-nums;
}

.pd-summary-bar .pd-btn--primary {
  width: auto;
  min-width: 180px;
  padding: 11px 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media (max-width: 600px) {
  .pd-summary-bar {
    padding: 10px 16px;
    gap: 12px;
  }

  .pd-summary-bar__info {
    flex-direction: column;
    gap: 2px;
  }

  .pd-summary-bar .pd-btn--primary {
    min-width: 140px;
    padding: 10px 18px;
  }
}

/* ── Category Nav ───────────────────────────────────────── */
.pd-cat-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--pd-border);
  margin-bottom: 32px;
  position: sticky;
  top: 0;
  background: var(--pd-bg);
  z-index: 50;
  padding: 0;
}

/* Une ligne par gamme */
.pd-cat-nav__row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.pd-cat-nav__row::-webkit-scrollbar {
  display: none;
}

/* Séparateur entre les deux lignes (Corps / Visage) */
.pd-cat-nav__row + .pd-cat-nav__row {
  border-top: 1px solid var(--pd-border);
}

/* Label de gamme : puce colorée à gauche */
.pd-cat-nav__group-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pd-accent);
  background: var(--pd-accent-light);
  border: 1px solid color-mix(in srgb, var(--pd-accent) 30%, transparent);
  border-radius: 4px;
  padding: 3px 7px;
  margin: 0 12px 0 4px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* Boutons de catégorie */
.pd-cat-nav__item {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pd-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--pd-transition), border-color var(--pd-transition);
  font-family: inherit;
  margin-bottom: -1px;
  flex-shrink: 0;
}

.pd-cat-nav__item:hover {
  color: var(--pd-text);
}

.pd-cat-nav__item--active {
  color: var(--pd-text);
  border-bottom-color: var(--pd-accent);
  font-weight: 600;
}

/* ── Category Sections ──────────────────────────────────── */
.pd-cat-section {
  margin-bottom: 40px;
  scroll-margin-top: 120px; /* overridden dynamically in JS */
}

.pd-cat-title {
  font-family: var(--pd-font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--pd-text);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pd-border);
}

.pd-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.pd-products-grid--categorized {
  display: block;
}

@media (max-width: 768px) {
  .pd-cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .pd-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ── Warning ────────────────────────────────────────────── */
.pd-warning {
  background: var(--pd-warning-bg);
  border: 1px solid var(--pd-warning-border);
  border-radius: var(--pd-radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--pd-warning-text);
  margin-top: 12px;
  display: none;
  line-height: 1.45;
}

.pd-warning--visible {
  display: block;
  animation: pd-fadeIn 0.2s ease;
}

/* ── Success State ──────────────────────────────────────── */
.pd-success {
  text-align: center;
  padding: 80px 24px;
  /* PAS d'animation ici : elle se déclencherait au chargement de la page
     car l'élément est dans le DOM dès le début (hidden != display:none).
     L'animation est appliquée via .pd-success--visible depuis JS. */
}

.pd-success--visible {
  animation: pd-fadeIn 0.4s ease;
}

.pd-success__inner {
  max-width: 480px;
  margin: 0 auto;
}

.pd-success__icon {
  width: 76px;
  height: 76px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--pd-success);
  border: 2px solid #BBF7D0;
}

.pd-success h3 {
  font-family: var(--pd-font-serif);
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--pd-text);
}

.pd-success p {
  color: var(--pd-text-muted);
  margin: 0 0 36px;
  font-size: 15px;
}

.pd-success__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pd-success__actions .pd-btn {
  width: auto;
  min-width: 180px;
}

/* Correctif [hidden] pour les éléments portalled hors de la section :
   .pd-loading a display:flex en CSS auteur → écrase le display:none
   natif de [hidden]. La règle .packdecouverteverlou-section [hidden]
   ne couvre plus ces éléments une fois déplacés dans <body>. */
.pd-loading[hidden] {
  display: none !important;
}

/* ── Loading overlay (full viewport, portalled to body) ──── */
.pd-loading {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
}

.pd-loading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: 24px;
}

.pd-loading__logo {
  width: 130px;
  height: auto;
  display: block;
  opacity: 0.88;
}

.pd-loading__text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pd-text-muted, #8A8278);
}

.pd-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--pd-primary, #1C1C1C);
  border-radius: 50%;
  animation: pd-spin 0.75s linear infinite;
}

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

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .pd-root {
    padding: 36px 16px 80px;
  }

  .pd-stepper__connector {
    flex: 0 0 48px;
  }

  .pd-pack-card__title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .pd-step2-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pd-pack-price__discounted {
    font-size: 22px;
  }
}

/* ── Shopify Theme Editor helpers ───────────────────────── */
/*
  BUG CORRIGÉ : les variables CSS sont définies sur .packdecouverteverlou-section
  mais .shopify-section est son PARENT dans le DOM → les variables ne
  remontent pas. On cible directement .packdecouverteverlou-section pour le fond.
*/
.packdecouverteverlou-section {
  background: #F7F5F0; /* = --pd-bg */
  /* Empêche les cards de déborder horizontalement (ex: titres de produits longs) */
  overflow-x: clip;
}

/* ── Empty state (aucun produit configuré) ──────────────── */
.pd-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--pd-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pd-empty-state p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

/* ── Toast d'erreur ─────────────────────────────────────── */
.pd-toast {
  position: fixed;
  bottom: 80px; /* au-dessus de la summary bar */
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1C1C1C;
  color: #fff;
  padding: 12px 20px 12px 16px;
  border-radius: var(--pd-radius-sm);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: min(480px, calc(100vw - 32px));
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.pd-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.pd-toast svg {
  flex-shrink: 0;
  color: #FCA5A5;
}

.pd-toast__message {
  flex: 1;
  line-height: 1.45;
}

.pd-toast__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color var(--pd-transition);
}

.pd-toast__close:hover {
  color: #fff;
}