/** Shopify CDN: Minification failed

Line 473:25 Expected ":"

**/
/* ── Charm Builder ─────────────────────────────────────────────────────────── */

/* Isolation totale : rien ne dépasse la largeur de la page */
.cb-page,
.cb-page * {
  box-sizing: border-box;
  max-width: 100%;
}

:root {
  --cb-gold: #c8a96e;
  --cb-gold-light: #f0e0b0;
  --cb-gold-dark: #9a7340;
  --cb-text: #1a1a1a;
  --cb-text-muted: #6b6b6b;
  --cb-border: #e5e5e5;
  --cb-white: #ffffff;
  --cb-error: #c0392b;
  --cb-radius: 8px;
  --cb-transition: 0.15s ease;
  /* Button brand colors */
  --cb-btn-bg: #8B1A3A;
  --cb-btn-text: #F5E6D3;
}

/* ── Page wrapper ──────────────────────────────────────────────────────────── */

.cb-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  /* clip sans créer de nouveau scroll container — ne perturbe pas le thème */
  overflow-x: clip;
}

/* ── Layout 2 colonnes 50/50 ───────────────────────────────────────────────── */

.cb-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Gallery — desktop : grille 2×2 sticky ─────────────────────────────────── */

.cb-gallery {
  position: sticky;
  top: 1.5rem;
  min-width: 0;
  /* position: relative ajouté en mobile pour les dots overlay */
}

.cb-gallery__track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.cb-gallery__slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--cb-radius);
  display: block;
}

/* Dots masqués sur desktop */
.cb-gallery__dots { display: none; }

.cb-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background var(--cb-transition);
}

.cb-gallery__dot--active { background: var(--cb-text); }

/* ── Options column ────────────────────────────────────────────────────────── */

.cb-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}


/* ── Product header ────────────────────────────────────────────────────────── */

.cb-product-header__title {
  font-family: 'Catamaran', var(--font-heading-family, sans-serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.15;
  color: var(--cb-text);
}

.cb-product-header__prices {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}

.cb-product-header__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.cb-product-header__label {
  font-weight: 700;
  color: var(--cb-text);
  min-width: 3.5rem;
}

.cb-product-header__amount {
  font-weight: 700;
  color: #8B1A3A;
  font-size: 0.9rem;
}

.cb-product-header__compare {
  color: var(--cb-text-muted);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.cb-product-header__offer {
  font-size: 0.92rem;
  color: var(--cb-text);
  margin: 0 0 0.25rem;
  line-height: 1.5;
}

/* ── Pinterest pill ────────────────────────────────────────────────────────── */

.pinterest-promo-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 0.75rem;
}

.pinterest-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cline x1='0' y1='0' x2='8' y2='8' stroke='%238B1A3A' stroke-width='0.4' stroke-opacity='0.18'/%3E%3Cline x1='8' y1='0' x2='0' y2='8' stroke='%238B1A3A' stroke-width='0.4' stroke-opacity='0.18'/%3E%3C/svg%3E");
  background-size: 6px 6px;
  border-radius: 14px;
  border: 1.5px solid #8B1A3A;
  text-decoration: none;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(139,26,58,0.15), 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.pinterest-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(139,26,58,0.25); }

.pp-stars { display: flex; align-items: center; gap: 1px; }
.pp-stars svg { width: 15px; height: 15px; fill: #8B1A3A; }
.pp-text { font-size: 13px; font-weight: 600; white-space: nowrap; color: #3a3a3a; }
.pp-brand { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: #e60023; border-radius: 50%; }
.pp-brand svg { width: 14px; height: 14px; fill: white; }

/* ── BOGO line ─────────────────────────────────────────────────────────────── */

.cb-bogo-line {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cb-gold-dark);
  margin: 0 0 0.65rem;
  letter-spacing: 0.01em;
}

/* ── Delivery badge ────────────────────────────────────────────────────────── */

.delivery-guarantee-badge {
  background: #FCF0F4;
  border: 1.5px dashed #8B1A3F;
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 0.75rem;
}

.dgb-icon { min-width: 34px; display: flex; align-items: center; }

@keyframes dgb-drive {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(3px); }
}

.dgb-icon svg { animation: dgb-drive 1.6s ease-in-out infinite; }

.dgb-text { font-size: 14px; color: #2a2a2a; line-height: 1.55; }
.dgb-text strong { color: #6B1230; font-weight: 600; }
.dgb-link { color: #8B1A3F; font-size: 13px; font-weight: 500; text-decoration: none; }
.dgb-link:hover { text-decoration: underline; }

/* ── Payment icons ─────────────────────────────────────────────────────────── */

.cb-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.cb-payment-icons svg,
.cb-payment-icons img {
  height: 28px;
  width: auto;
  border-radius: 4px;
  border: 1px solid var(--cb-border);
}

/* ── Accordion ─────────────────────────────────────────────────────────────── */

.cb-accordion {
  margin-top: 0.75rem;
  border-top: 1px solid var(--cb-border);
}

.cb-accordion__item {
  border-bottom: 1px solid var(--cb-border);
}

.cb-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-family: 'Catamaran', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cb-text);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}

.cb-accordion__summary::-webkit-details-marker { display: none; }

.cb-accordion__summary::after {
  content: '›';
  font-size: 1.2rem;
  line-height: 1;
  color: var(--cb-text-muted);
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.cb-accordion__item[open] .cb-accordion__summary::after {
  transform: rotate(-90deg);
}

.cb-accordion__body {
  padding-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--cb-text);
  line-height: 1.65;
}

.cb-accordion__body p { margin: 0 0 0.75rem; }
.cb-accordion__body p:last-child { margin-bottom: 0; }

.cb-accordion__body ul,
.cb-accordion__body ol {
  padding-left: 1.25rem;
  margin: 0 0 0.75rem;
}

.cb-accordion__body li { margin-bottom: 0.35rem; }

.cb-accordion__body a {
  color: var(--cb-btn-bg);
  text-decoration: underline;
}

/* Mention chaîne incluse — sous la grille lockets */
.cb-chain-included {
  font-size: 0.82rem;
  color: var(--cb-text-muted);
  margin: 0.65rem 0 -0.5rem;
}

.cb-chain-included strong {
  color: var(--cb-text);
}

/* ── Section ───────────────────────────────────────────────────────────────── */

.cb-section {
  border-top: 1px solid var(--cb-border);
  padding-top: 1.1rem;
}

.cb-section__title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 0.85rem;
  color: var(--cb-text);
}

.cb-required { color: var(--cb-error); }

.cb-section__error {
  font-size: 0.8rem;
  color: var(--cb-error);
  margin: -0.4rem 0 0.6rem;
}

/* ── 5-column grid ─────────────────────────────────────────────────────────── */

.cb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

/* ── Card base ─────────────────────────────────────────────────────────────── */

.cb-card {
  background: var(--cb-white);
  border: 1.5px solid var(--cb-border);
  border-radius: var(--cb-radius);
  overflow: visible; /* needed for tooltip */
  position: relative;
  transition: border-color var(--cb-transition), box-shadow var(--cb-transition);
}

/* Tooltip au survol */
.cb-card::after {
  content: attr(data-product-title);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(20, 20, 20, 0.88);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;
  max-width: 220px;
}

.cb-card:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cb-card:hover { border-color: var(--cb-gold); }

.cb-card--selected {
  border-color: var(--cb-gold) !important;
  box-shadow: 0 0 0 2px var(--cb-gold-light);
}

.cb-card--has-free {
  border-color: var(--cb-gold) !important;
}

.cb-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ── Qty stepper ───────────────────────────────────────────────────────────── */

.cb-card__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 5px;
  gap: 2px;
}

.cb-qty__btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--cb-border);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--cb-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--cb-transition), border-color var(--cb-transition);
  flex-shrink: 0;
}

.cb-qty__btn:hover:not(:disabled) {
  border-color: var(--cb-gold);
  background: var(--cb-gold-light);
}

.cb-qty__btn:disabled { opacity: 0.3; cursor: default; }

.cb-qty__value {
  min-width: 18px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── FREE badge ────────────────────────────────────────────────────────────── */

.cb-free-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--cb-gold);
  color: var(--cb-white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 5px;
  border-radius: 3px;
  pointer-events: none;
}

/* ── Chain section ─────────────────────────────────────────────────────────── */

.cb-section--chain .cb-section__title { margin-bottom: 0.65rem; }

/* Grille chaîne : même taille que lockets (5 col desktop, 4 mobile) mais 1 seule carte */
.cb-grid--chain {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Séparateur en pointillés au-dessus de la section chaîne */
.cb-section--dashed {
  border-top: none;
  padding-top: 0;
  margin-top: -1rem;  ← négatif pour contrer le gap
}

.cb-section--dashed::before {
  content: '';
  display: block;
  border-top: 1.5px dashed var(--cb-border);
  margin: 0 2rem 1.1rem;
}

/* ── BOGO progress bar ─────────────────────────────────────────────────────── */

.cb-bogo-progress { margin-bottom: 0.85rem; }

.cb-bogo-progress--bottom {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: none;
}

/* ── Titres de catégorie dans la grille de charms ─────────────────────────── */

.cb-charm-category-title {
  grid-column: 1 / -1;
  font-family: 'Catamaran', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cb-text-muted);
  text-transform: uppercase;
  padding: 0.5rem 0 0.25rem;
  margin-top: 0.25rem;
}


.cb-bogo-progress__bar {
  height: 4px;
  background: var(--cb-border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.cb-bogo-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cb-gold-dark), var(--cb-gold));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.cb-bogo-progress__text {
  font-size: 0.78rem;
  color: var(--cb-text-muted);
  margin: 0;
}

/* ── Summary bar (bas de page, non sticky) ─────────────────────────────────── */

.cb-summary-bar {
  border-top: 1px solid var(--cb-border);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-summary-bar__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cb-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cb-summary-list__empty {
  font-size: 0.82rem;
  color: var(--cb-text-muted);
  font-style: italic;
}

.cb-summary-list__item {
  font-size: 0.85rem;
  color: var(--cb-text);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cb-summary-list__item-name { flex: 1; }

.cb-summary-list__item-price { color: var(--cb-text-muted); white-space: nowrap; }

.cb-summary-bar__heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cb-text-muted);
  margin: 0 0 0.6rem;
}

.cb-summary-bar__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  border-top: 1px solid var(--cb-border);
  margin-top: 0.25rem;
}

.cb-summary-bar__total-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cb-text);
}

.cb-summary-bar__total-prices {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cb-price-original {
  color: var(--cb-text-muted);
  font-size: 0.9rem;
}

.cb-price-total {
  font-size: 1.2rem;
  font-weight: 700;
}

/* ── Add to cart button ────────────────────────────────────────────────────── */

.cb-btn-cart {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #F5E6D3;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;

  background-color: #8B1A3A;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cline x1='0' y1='0' x2='8' y2='8' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.13'/%3E%3Cline x1='8' y1='0' x2='0' y2='8' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.13'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #a82248 0%, #8B1A3A 30%, #6e132d 55%, #8B1A3A 75%, #9c1e41 100%);
  background-size: 6px 6px, cover;

  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 -2px 0 rgba(0,0,0,0.35) inset,
    0 6px 20px rgba(80,10,30,0.60),
    0 2px 5px rgba(0,0,0,0.35);
}

.cb-btn-cart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: 15px 15px 0 0;
  pointer-events: none;
}

.cb-btn-cart:hover:not(:disabled) {
  background-color: #A02045;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.17) inset,
    0 -2px 0 rgba(0,0,0,0.3) inset,
    0 10px 28px rgba(80,10,30,0.70),
    0 3px 7px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.cb-btn-cart:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 3px 8px rgba(80,10,30,0.5);
}

.cb-btn-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cb-btn-cart-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cb-btn-cart__hint {
  font-size: 0.78rem;
  color: var(--cb-error);
  text-align: center;
  margin: 0;
  min-height: 1em;
}

/* ── Mobile ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .cb-page {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .cb-options {
    padding: 0 1rem;
  }

  .cb-product-header__title {
    font-size: 1.45rem !important;
  }


  .cb-layout {
    grid-template-columns: 1fr;
  }

  .cb-gallery {
    position: static;
  }

  .cb-gallery__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cb-gallery__track::-webkit-scrollbar { display: none; }

  .cb-gallery__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
  }

  .cb-gallery__slide img {
    aspect-ratio: 1;
    border-radius: var(--cb-radius);
  }

  /* Dots superposés sur la photo */
  .cb-gallery {
    position: relative;
  }

  .cb-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
  }

  .cb-gallery__dot {
    background: rgba(255,255,255,0.6);
  }

  .cb-gallery__dot--active {
    background: #fff;
  }

  .cb-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cb-product-header__title { font-size: 1.1rem; }
}

[hidden] { display: none !important; }
