/** Shopify CDN: Minification failed

Line 423:0 Unexpected "}"

**/
/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #0A0A0A; --white: #FDFCFA;
  --cream: #F5F1EB; --cream-dark: #EAE4D8;
  --gold: #B89A5E; --gray: #8A857F; --gray-d: #5C5852;
  --border: rgba(10,10,10,0.09); --border-m: rgba(10,10,10,0.16);
  --red: #A93226;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--ff-sans); font-weight: 300; font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: .5px; background: var(--gold); }
.eyebrow--light { color: var(--gold); }
.eyebrow--light::before { background: var(--gold); }
.rte h1,.rte h2,.rte h3 { font-family: var(--ff-serif); font-weight: 300; margin-bottom: 1rem; }
.rte p { color: var(--gray); margin-bottom: 1rem; line-height: 1.85; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--black); color: var(--white);
  font-family: var(--ff-sans); font-size: 11px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  padding: 17px 40px; border-radius: 50px; border: none; cursor: pointer; transition: opacity .22s;
}
.btn-primary:hover { opacity: .82; }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-light {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--black);
  font-family: var(--ff-sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  padding: 17px 40px; border-radius: 50px; transition: opacity .2s;
}
.btn-light:hover { opacity: .88; }
.btn-outline {
  background: transparent; color: var(--black);
  border: .5px solid var(--border-m); border-radius: 50px;
  font-family: var(--ff-sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 40px; cursor: pointer; transition: border-color .2s; width: 100%; text-align: center; display: block;
}
.btn-outline:hover { border-color: var(--black); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: .5px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
}
.header-logo { font-family: var(--ff-serif); font-size: 20px; letter-spacing: .34em; text-transform: uppercase; }
.header-nav { display: flex; gap: 40px; }
.header-nav a { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); transition: color .2s; }
.header-nav a:hover { color: var(--black); }
.header-cart {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gray-d); padding: 8px 18px;
  border: .5px solid var(--border-m); border-radius: 50px; transition: all .2s; display: flex; align-items: center; gap: 6px;
}
.header-cart:hover { color: var(--black); border-color: var(--black); }
.cart-count {
  background: var(--black); color: var(--white);
  width: 18px; height: 18px; border-radius: 50%; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* ── HERO ── */
.s-hero { display: grid; grid-template-columns: 50% 50%; min-height: 91vh; align-items: center; }
.s-hero__left { padding: 72px 56px 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.s-hero__title { font-family: var(--ff-serif); font-size: clamp(42px, 4.8vw, 68px); font-weight: 300; line-height: 1.06; letter-spacing: -.01em; margin-bottom: 24px; }
.s-hero__sub { font-size: 14px; line-height: 1.9; color: var(--gray); max-width: 380px; margin-bottom: 44px; }
.s-hero__right { background: var(--cream); height: 100%; min-height: 91vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.s-hero__right::before { content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: var(--cream-dark); opacity: .5; }
.s-hero__img-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.s-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: drop-shadow(0 16px 40px rgba(0,0,0,.12)); }
.s-hero__badge { position: absolute; bottom: 44px; right: 40px; background: var(--black); color: var(--white); border-radius: 50px; padding: 11px 20px; text-align: center; z-index: 2; }
.badge-label { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.s-hero__badge strong { font-family: var(--ff-serif); font-size: 22px; font-weight: 300; display: block; }

/* ── TRUST BAR ── */
.s-trust { display: flex; justify-content: center; gap: 52px; padding: 20px 40px; border-bottom: .5px solid var(--border); }
.s-trust__item { display: flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); }
.trust-dot { color: var(--gold); }

/* ── FEATURES ── */
.s-features { padding: 96px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.s-features__title { font-family: var(--ff-serif); font-size: clamp(26px, 2.8vw, 40px); font-weight: 300; line-height: 1.18; margin-bottom: 20px; }
.s-features__desc { font-size: 14px; line-height: 1.9; color: var(--gray); margin-bottom: 36px; }
.s-features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feat-card { background: var(--cream); border-radius: 18px; padding: 22px 20px; border: .5px solid var(--border); transition: box-shadow .2s; }
.feat-card:hover { box-shadow: 0 6px 24px rgba(10,10,10,.07); }
.feat-icon { font-size: 18px; margin-bottom: 9px; }
.feat-title { font-family: var(--ff-serif); font-size: 16px; font-weight: 400; margin-bottom: 5px; }
.feat-text { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ── REVIEWS ── */
.s-reviews { padding: 88px 64px; background: var(--cream); }
.s-reviews__head { text-align: center; margin-bottom: 52px; }
.s-reviews__title { font-family: var(--ff-serif); font-size: clamp(26px, 3vw, 40px); font-weight: 300; margin-bottom: 12px; }
.s-reviews__sub { font-size: 13px; color: var(--gray); }
.s-reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 36px; }
.review-card { background: var(--white); border-radius: 20px; padding: 26px 22px; border: .5px solid var(--border); display: flex; flex-direction: column; gap: 14px; transition: box-shadow .22s; }
.review-card:hover { box-shadow: 0 8px 28px rgba(10,10,10,.07); }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 12px; }
.review-text { font-family: var(--ff-serif); font-size: 17px; font-weight: 300; font-style: italic; color: var(--black); line-height: 1.65; flex: 1; }
.review-author { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: .5px solid var(--border); }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 13px; color: var(--gray-d); flex-shrink: 0; }
.review-name { font-size: 11.5px; color: var(--black); font-weight: 400; }
.review-city { font-size: 11px; color: var(--gray); }
.s-reviews__stats { display: flex; justify-content: center; align-items: center; gap: 40px; padding: 28px 40px; background: var(--white); border-radius: 20px; border: .5px solid var(--border); }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--ff-serif); font-size: 36px; font-weight: 300; line-height: 1; color: var(--gold); }
.stat-label { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }
.stat-sep { width: .5px; height: 44px; background: var(--border-m); }

/* ── CTA BAND ── */
.s-cta { background: var(--black); color: var(--white); padding: 96px 64px; text-align: center; }
.s-cta .eyebrow { justify-content: center; }
.s-cta__title { font-family: var(--ff-serif); font-size: clamp(30px, 3.6vw, 50px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.s-cta__sub { font-size: 14px; color: rgba(255,255,255,.4); margin-bottom: 44px; }

/* ── PRODUCT PAGE ── */
.s-product { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px; align-items: center; }
.prod-img-main { background: var(--cream); border-radius: 24px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 10px; border: .5px solid var(--border); }
.prod-img-main img { width: 72%; height: 72%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.1)); }
.prod-thumbs { display: flex; gap: 8px; }
.prod-thumb { width: 64px; height: 64px; background: var(--cream); border-radius: 12px; border: .5px solid var(--border); overflow: hidden; cursor: pointer; }
.prod-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.prod-vendor { font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.prod-title { font-family: var(--ff-serif); font-size: clamp(28px, 3.4vw, 46px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.prod-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 24px; }
.prod-stars span { font-size: 12px; color: var(--gray); letter-spacing: 0; margin-left: 6px; font-family: var(--ff-sans); }
.prod-pricing { background: var(--cream); border-radius: 18px; padding: 20px 24px; margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; border: .5px solid var(--border); }
.prod-compare { font-size: 32px; color: var(--gray); text-decoration: line-through; margin-bottom: 2px; }
.prod-price { font-family: var(--ff-serif); font-size: 20px; font-weight: 300; line-height: 1; letter-spacing: -.02em; }
.prod-badge { background: var(--black); color: var(--white); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 50px; }
.prod-urgency { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--red); margin-bottom: 22px; }
.urgency-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }
.prod-variant-select { width: 100%; padding: 12px 16px; border: .5px solid var(--border-m); border-radius: 50px; font-family: var(--ff-sans); font-size: 13px; background: var(--white); margin-bottom: 12px; }
.prod-reassure { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 20px 0; }
.prod-reassure div { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); padding: 9px 11px; background: var(--cream); border-radius: 11px; border: .5px solid var(--border); }
.prod-desc { border-top: .5px solid var(--border); padding-top: 24px; margin-top: 8px; font-size: 13px; line-height: 1.9; color: var(--gray); }

/* ── CART ── */
.s-cart { padding: 64px 80px; max-width: 800px; margin: 0 auto; }
.s-cart__title { font-family: var(--ff-serif); font-size: 38px; font-weight: 300; margin-bottom: 40px; }
.s-cart__empty { text-align: center; padding: 80px 0; }
.s-cart__empty p { color: var(--gray); margin-bottom: 28px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: .5px solid var(--border); }
.cart-item__img { width: 80px; height: 80px; background: var(--cream); border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cart-item__img img { width: 80%; height: 80%; object-fit: contain; }
.cart-item__title { font-family: var(--ff-serif); font-size: 18px; font-weight: 300; margin-bottom: 4px; }
.cart-item__price { font-size: 12px; color: var(--gray); }
.cart-item__total { font-family: var(--ff-serif); font-size: 20px; font-weight: 300; }
.cart-footer { padding-top: 28px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 13px; }
.cart-total span:first-child { letter-spacing: .14em; text-transform: uppercase; color: var(--gray); }
.cart-total span:last-child { font-family: var(--ff-serif); font-size: 32px; font-weight: 300; }

/* ── PAGE ── */
.s-page { padding: 64px 80px; max-width: 780px; margin: 0 auto; }
.s-page h1 { font-family: var(--ff-serif); font-size: 38px; font-weight: 300; margin-bottom: 28px; }
.s-page__body { font-size: 14px; line-height: 1.85; color: var(--gray); }

/* ── 404 ── */
.s-404 { padding: 120px 64px; text-align: center; }
.s-404 h1 { font-family: var(--ff-serif); font-size: 48px; font-weight: 300; margin-bottom: 16px; }
.s-404 p { color: var(--gray); margin-bottom: 36px; }

/* ── FOOTER ── */
.site-footer { padding: 36px 64px; display: flex; justify-content: space-between; align-items: center; border-top: .5px solid var(--border); }
.footer-logo { font-family: var(--ff-serif); font-size: 16px; letter-spacing: .32em; text-transform: uppercase; opacity: .28; }
.footer-copy { font-size: 11px; color: var(--gray); }

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .header-inner { padding: 16px 20px; }
  .header-nav { display: none; }
  .s-hero { grid-template-columns: 1fr; }
  .s-hero__left { padding: 48px 24px; }
  .s-hero__right { min-height: 60vw; }
  .s-hero__img-wrap { width: 220px; height: 220px; }
  .s-hero__right::before { width: 270px; height: 270px; }
  .s-trust { flex-wrap: wrap; gap: 12px; padding: 18px 20px; }
  .s-features { grid-template-columns: 1fr; padding: 52px 24px; gap: 36px; }
  .s-reviews { padding: 52px 24px; }
  .s-reviews__grid { grid-template-columns: 1fr; }
  .s-reviews__stats { flex-direction: column; gap: 20px; }
  .stat-sep { width: 44px; height: .5px; }
  .s-cta { padding: 72px 24px; }
  .s-product { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }
  .site-footer { flex-direction: column; gap: 10px; text-align: center; padding: 28px 20px; }
  .s-cart { padding: 32px 20px; }
  .s-page { padding: 40px 20px; }
}

/* ── ANNOUNCEMENT BAR ── */
.s-announce {
  background: var(--black);
  color: var(--white);
  padding: 0 64px;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 200;
}
.s-announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.s-announce__logo {
  font-family: var(--ff-serif);
  font-size: 17px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
  flex-shrink: 0;
}
.s-announce__items {
  display: flex;
  align-items: center;
  gap: 36px;
}
.s-announce__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.s-announce__item a {
  color: inherit;
  transition: color .2s;
}
.s-announce__item:hover,
.s-announce__item a:hover {
  color: var(--white);
}
.s-announce__dot {
  color: var(--gold);
  font-size: 7px;
  flex-shrink: 0;
}
.s-announce__cart {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 7px 16px;
  border: .5px solid rgba(255,255,255,.18);
  border-radius: 50px;
  transition: all .2s;
  flex-shrink: 0;
}
.s-announce__cart:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.s-announce__cart-count {
  background: var(--gold);
  color: var(--black);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ajuster le header pour qu'il ne soit plus sticky (la barre l'est déjà) */
.site-header { position: relative; }

@media (max-width: 880px) {
  .s-announce { padding: 0 20px; }
  .s-announce__items { display: none; }
  .s-announce__logo { font-size: 15px; }
}

/* ── TOPBAR ── */
.s-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: .5px solid rgba(255,255,255,.08);
}
.s-topbar__logo {
  font-family: var(--ff-serif);
  font-size: 18px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.s-topbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.s-topbar__link {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.s-topbar__link:hover { color: var(--white); }
.s-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.s-topbar__cart {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.s-topbar__cart:hover { color: var(--white); }
.s-topbar__count {
  background: var(--gold);
  color: var(--black);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s-topbar__cta {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  transition: opacity .2s;
  font-weight: 400;
}
.s-topbar__cta:hover { opacity: .88; }

@media (max-width: 880px) {
  .s-topbar { padding: 0 20px; height: 50px; }
  .s-topbar__nav { display: none; }
  .s-topbar__logo { font-size: 15px; letter-spacing: .28em; }
}
.prod-gallery{position:relative;overflow:hidden;border-radius:24px;background:var(--cream)}
.prod-slides{display:flex;transition:transform 0.4s ease}
.prod-slide{min-width:100%;aspect-ratio:1;display:flex;align-items:center;justify-content:center}
.prod-slide img{width:1000%;height:100%;object-fit:cover}
.prod-prev,.prod-next{position:absolute;top:50%;transform:translateY(-50%);background:var(--white);border:none;border-radius:50%;width:40px;height:40px;cursor:pointer;font-size:16px;box-shadow:0 2px 8px rgba(0,0,0,.1)}
.prod-prev{left:12px}
.prod-next{right:12px}
.prod-dots{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);display:flex;gap:6px}
.prod-dot{width:7px;height:7px;border-radius:50%;background:rgba(10,10,10,.2)}
.prod-dot.active{background:var(--black)}
.how-it-works { padding: 80px 40px; text-align: center; background: var(--cream); }
.how-label { font-size: 11px; letter-spacing: .3em; color: var(--gray); margin-bottom: 12px; }
.how-title { font-family: var(--ff-serif); font-size: clamp(28px, 4vw, 48px); font-weight: 300; margin-bottom: 60px; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.how-step { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.how-number { font-family: var(--ff-serif); font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1; }
.how-step h3 { font-family: var(--ff-serif); font-size: 20px; font-weight: 300; }
.how-step p { font-size: 14px; color: var(--gray); line-height: 1.6; }
@media (max-width: 768px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
.how-step { background: white; border-radius: 16px; padding: 32px 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.s-trust { overflow: hidden; white-space: nowrap; }
.s-trust__track { display: inline-flex; animation: marquee 20s linear infinite; }
.s-trust__item { padding: 0 40px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (max-width: 768px) {
  .s-hero__mobile-img { display: block; width: 100%; margin: 24px 0; border-radius: 16px; overflow: hidden; }
  .s-hero__mobile-img img { width: 100%; height: auto; object-fit: cover; }
  .s-hero__right { display: none; }
}
@media (min-width: 769px) {
  .s-hero__mobile-img { display: none; }
}
.s-features { text-align: center; display: flex; flex-direction: column; align-items: center; }
.s-features .btn-primary { display: inline-block; margin-top: 40px; }
.jdgm-widget { padding: 0 20px; box-sizing: border-box; width: 100% !important; max-width: 100% !important; }
}
