:root{
  --green-deep:#122c1c;
  --green-dark:#0d2417;
  --green-mid:#1f4a2f;
  --green-accent:#2e6b42;
  --cream:#f4efe3;
  --cream-2:#eee7d6;
  --ink:#0d0f0d;
  --paper:#faf8f2;
  --line:rgba(244,239,227,.18);
  --line-dark:rgba(13,15,13,.12);
  --muted:#8a9186;
  --muted-dark:#5c6259;
  --rose:#c98fa0;
}

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

html{
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  min-width:0;
  font-family:'Work Sans',sans-serif;
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}

h1,
h2,
h3,
h4{
  font-family:'Fraunces',serif;
  font-weight:500;
  letter-spacing:-.01em;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

button,
select,
input{
  font:inherit;
}

::selection{
  background:var(--green-dark);
  color:var(--cream);
}


/* =========================================================
   ANIMATIONS AU SCROLL
   ========================================================= */

.reveal-on-scroll{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .7s ease,
    transform .7s ease;
  will-change:opacity,transform;
}

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

.reveal-delay-1{
  transition-delay:.08s;
}

.reveal-delay-2{
  transition-delay:.16s;
}

.reveal-delay-3{
  transition-delay:.24s;
}

.reveal-delay-4{
  transition-delay:.32s;
}

@media(prefers-reduced-motion:reduce){

  .reveal-on-scroll{
    opacity:1;
    transform:none;
    transition:none;
  }

}

.wrap{
  width:min(100%,1240px);
  margin-inline:auto;
  padding-inline:48px;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:600;
}

.eyebrow::before{
  content:'';
  width:22px;
  height:1px;
  background:currentColor;
  opacity:.5;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 28px;
  min-height:48px;
  border:1px solid transparent;
  cursor:pointer;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  white-space:nowrap;
  transition:all .25s ease;
}

.btn-primary{
  background:var(--cream);
  color:var(--green-dark);
}

.btn-primary:hover{
  background:#fff;
  transform:translateY(-1px);
}

.btn-outline-dark{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}

.btn-outline-dark:hover{
  background:var(--ink);
  color:var(--cream);
}

.btn-outline-light{
  background:transparent;
  border-color:var(--line);
  color:var(--cream);
}

.btn-outline-light:hover{
  background:rgba(244,239,227,.08);
  border-color:var(--cream);
}

.btn-block-dark{
  width:100%;
  background:var(--green-dark);
  color:var(--cream);
}

.btn-block-dark:hover{
  background:var(--ink);
}

.btn-arrow{
  margin-left:2px;
  transition:transform .25s ease;
}

.btn-primary:hover .btn-arrow{
  transform:translateX(3px);
}

.hero-rose-btn{
  padding:14px 22px;
  border:1px solid var(--rose);
  background:rgba(201,143,160,.08);
  color:#fff;
  letter-spacing:.08em;
}

.hero-rose-btn:hover{
  background:var(--rose);
  border-color:var(--rose);
  color:#fff;
  transform:translateY(-2px);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header{
  position:absolute;
  inset:0 0 auto 0;
  z-index:100;
  width:100%;
  transition:
    background .3s ease,
    box-shadow .3s ease,
    backdrop-filter .3s ease,
    transform .3s ease;
}

.site-header.is-sticky{
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:rgba(7,20,13,.88);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 10px 32px rgba(0,0,0,.16);
}

.premium-nav{
  width:100%;
  max-width:1600px;
  min-height:104px;
  margin:0 auto;
  padding:18px 34px;
  display:grid;
  grid-template-columns:minmax(190px,250px) minmax(380px,1fr) minmax(330px,410px);
  align-items:center;
  gap:24px;
  color:var(--cream);
  transition:
    min-height .3s ease,
    padding .3s ease;
}

.site-header.is-sticky .premium-nav{
  min-height:76px;
  padding-top:10px;
  padding-bottom:10px;
}

.brand-clean{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  max-width:230px;
  min-width:0;
}

.brand-clean img{
  width:min(100%,215px)!important;
  height:auto!important;
  object-fit:contain;
  transition:width .3s ease;
}

.site-header.is-sticky .brand-clean img{
  width:170px!important;
}

.premium-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(18px,2.4vw,40px);
  min-width:0;
}

.premium-links a{
  font-size:11px;
  letter-spacing:.13em;
  text-transform:uppercase;
  font-weight:600;
  white-space:nowrap;
  color:rgba(244,239,227,.92);
}

.premium-links a:hover{
  color:#fff;
}

.premium-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  min-width:0;
}

.rose-header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border:1px solid var(--rose);
  color:#f0a3ba;
  background:rgba(7,20,13,.55);
  font-size:10px;
  letter-spacing:.11em;
  text-transform:uppercase;
  font-weight:700;
  white-space:nowrap;
  transition:.2s ease;
}

.rose-header-cta:hover{
  background:rgba(201,143,160,.12);
}

.header-cart{
  position:static!important;
  flex:0 0 auto;
  border:none!important;
  background:transparent!important;
  box-shadow:none!important;
  padding:8px 0!important;
  color:var(--cream)!important;
  white-space:nowrap;
}

.header-cart .cart-count{
  background:var(--cream);
  color:var(--green-dark);
}

.mobile-menu-toggle,
.mobile-menu{
  display:none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;
  min-height:760px;
  color:var(--cream);
  overflow:hidden;
  display:flex;
  align-items:center;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-gradient{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      100deg,
      rgba(6,16,10,.94) 0%,
      rgba(8,20,13,.72) 38%,
      rgba(8,20,13,.28) 62%,
      transparent 85%
    ),
    linear-gradient(
      0deg,
      rgba(4,10,6,.55) 0%,
      transparent 22%,
      transparent 78%,
      rgba(4,10,6,.35) 100%
    );
}

.hero-inner{
  position:relative;
  z-index:2;
  width:min(100%,760px);
  padding:180px 48px 70px;
}

.hero-copy .eyebrow{
  color:var(--rose);
  margin-bottom:22px;
  font-size:12px;
  letter-spacing:.28em;
}

.hero-copy .eyebrow::before{
  width:30px;
  background:var(--rose);
  opacity:.9;
}

.hero h1{
  max-width:700px;
  margin-bottom:26px;
  font-size:clamp(44px,4.4vw,68px);
  line-height:1.06;
  letter-spacing:-.015em;
  text-shadow:0 2px 24px rgba(0,0,0,.35);
}

.hero-break{
  display:inline;
}

.hero p.lede{
  max-width:560px;
  margin-bottom:36px;
  font-size:clamp(14px,1.3vw,18px);
  line-height:1.65;
  color:rgba(244,239,227,.82);
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:0;
}

.countdown-wrap{
  display:none;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits-strip{
  background:linear-gradient(
    90deg,
    #10281b 0%,
    #153624 55%,
    #10281b 100%
  );
  color:var(--cream);
  border-top:1px solid rgba(244,239,227,.16);
  border-bottom:1px solid rgba(244,239,227,.16);
}

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

.benefit{
  min-width:0;
  min-height:145px;
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  gap:18px;
  align-items:start;
  padding:30px 28px;
  border-right:1px solid rgba(244,239,227,.16);
  transition:
    background .25s ease,
    transform .25s ease,
    border-color .25s ease;
}

.benefit:last-child{
  border-right:none;
}

.benefit-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  color:#fff;
  font-size:24px;
  transition:
    border-color .25s ease,
    background .25s ease,
    transform .25s ease;
}

.benefit h3{
  margin-bottom:9px;
  font-family:'Work Sans',sans-serif;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--cream);
}

.benefit p{
  max-width:260px;
  font-size:12px;
  line-height:1.7;
  color:rgba(244,239,227,.72);
  overflow-wrap:anywhere;
}

@media(hover:hover){

  .benefit:hover{
    background:rgba(255,255,255,.035);
    transform:translateY(-3px);
  }

  .benefit:hover .benefit-icon{
    border-color:rgba(255,255,255,.45);
    background:rgba(255,255,255,.05);
    transform:scale(1.04);
  }

}


/* =========================================================
   OCTOBRE ROSE
   ========================================================= */

.capsule-rose{
  position:relative;
  overflow:hidden;
  padding:100px 0 110px;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(201,143,160,.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #fbf9f4 0%,
      #faf5f5 52%,
      #f8ebef 100%
    );
}

.capsule-rose::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:var(--rose);
}

.rose-wrap{
  width:min(100%,1180px);
}

.rose-intro{
  width:100%;
  max-width:820px;
  margin:0 auto;
  text-align:center;
}

.rose-section-kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:18px;
  color:#c65f7e;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.rose-section-kicker::before{
  content:'';
  width:34px;
  height:1px;
  background:var(--rose);
}

.rose-section-title{
  margin-bottom:18px;
  color:var(--green-dark);
  font-size:clamp(42px,5vw,64px);
  line-height:1;
}

.rose-section-copy{
  max-width:720px;
  margin:0 auto;
  color:var(--muted-dark);
  font-size:15px;
  line-height:1.75;
}

.rose-highlights{
  width:min(100%,760px);
  margin:42px auto 50px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px;
}

.rose-highlight{
  text-align:center;
}

.rose-highlight-icon{
  width:50px;
  height:50px;
  margin:0 auto 13px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--rose);
  border-radius:50%;
  color:#d8587d;
  font-size:24px;
}

.rose-highlight-title{
  margin-bottom:5px;
  color:#cf5579;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
}

.rose-highlight-text{
  color:var(--muted-dark);
  font-size:12px;
  line-height:1.5;
}

.rose-products{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.rose-product-card{
  min-width:0;
  overflow:hidden;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(13,36,23,.12);
  border-radius:12px;
  box-shadow:0 18px 50px rgba(18,44,28,.08);
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

@media(hover:hover){

  .rose-product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 26px 65px rgba(18,44,28,.13);
  }

}

.rose-product-image{
  width:100%;
  aspect-ratio:3/4;
  overflow:hidden;
  background:#f4d0da;
  cursor:zoom-in;
}

.rose-product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.rose-product-image-hover{
  position:relative;
}

.rose-image-base,
.rose-image-hover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain!important;
  object-position:center!important;
  transition:
    opacity .45s ease,
    transform .55s ease;
}

.rose-image-base{
  z-index:1;
  opacity:1;
}

.rose-image-hover{
  z-index:2;
  opacity:0;
}

.rose-view-badge{
  position:absolute;
  top:14px;
  right:14px;
  z-index:4;
  min-width:48px;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:999px;
  background:rgba(255,255,255,.84);
  color:#c65378;
  font-size:9px;
  font-weight:700;
  letter-spacing:.12em;
  text-align:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:opacity .25s ease;
}

.rose-view-badge-face{
  opacity:0;
}

@media(hover:hover){

  .rose-product-image-hover:hover .rose-image-base{
    opacity:0;
  }

  .rose-product-image-hover:hover .rose-image-hover{
    opacity:1;
    transform:scale(1.012);
  }

  .rose-product-image-hover:hover .rose-view-badge-dos{
    opacity:0;
  }

  .rose-product-image-hover:hover .rose-view-badge-face{
    opacity:1;
  }

}

.rose-product-content{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px;
  gap:26px;
  padding:24px;
}

.rose-product-info{
  min-width:0;
}

.rose-product-badge{
  display:inline-flex;
  margin-bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(201,143,160,.14);
  color:#cf5579;
  font-size:9px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.rose-product-info h3{
  margin-bottom:10px;
  color:var(--green-dark);
  font-size:25px;
  line-height:1.1;
}

.rose-product-info p{
  max-width:300px;
  margin-bottom:20px;
  color:var(--muted-dark);
  font-size:13px;
  line-height:1.65;
}

.rose-size-link{
  padding:0;
  border:0;
  background:none;
  color:var(--green-dark);
  cursor:pointer;
  font-size:10px;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:underline;
}

.rose-product-options{
  min-width:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  align-content:start;
}

.rose-option label{
  display:block;
  margin-bottom:6px;
  color:var(--ink);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:600;
}

.rose-select{
  width:100%;
  height:42px;
  padding:0 11px;
  border:1px solid rgba(13,36,23,.18);
  background:#fff;
  color:var(--ink);
  outline:none;
  font-size:12px;
}

.rose-select:focus{
  border-color:var(--rose);
}

.rose-preorder-button{
  grid-column:1/-1;
  min-height:46px;
  margin-top:4px;
  padding:0 18px;
  border:0;
  border-radius:3px;
  background:#d86f8d;
  color:#fff;
  cursor:pointer;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:700;
  transition:
    background .2s ease,
    transform .2s ease;
}

.rose-preorder-button:hover{
  background:#c85f7e;
  transform:translateY(-1px);
}

.rose-engagement{
  width:100%;
  margin-top:22px;
  padding:20px 26px;
  display:flex;
  align-items:center;
  gap:16px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(201,143,160,.25);
  border-radius:10px;
}

.rose-engagement-icon{
  flex:0 0 auto;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--rose);
  border-radius:50%;
  color:#cf5579;
  font-size:22px;
}

.rose-engagement-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:3px;
}

.rose-engagement-copy strong{
  color:var(--green-dark);
  font-family:'Fraunces',serif;
  font-size:17px;
  font-weight:500;
}

.rose-engagement-copy span{
  color:var(--muted-dark);
  font-size:12px;
  line-height:1.55;
}


/* =========================================================
   OCTOBRE ROSE — CARTES PRODUITS FORMAT PORTRAIT
   ========================================================= */

.rose-product-card{
  display:flex;
  flex-direction:column;
}

.rose-product-image{
  min-height:0;
}

.rose-image-base,
.rose-image-hover{
  padding:0;
  background:#f4d0da;
}

.rose-product-content{
  flex:1;
  align-items:start;
}

.rose-product-info h3{
  font-size:23px;
}

.rose-preorder-button{
  background:#d86f8d;
}

@media(max-width:980px){
  .rose-products{
    max-width:900px;
  }
}

@media(max-width:720px){
  .rose-product-image{
    aspect-ratio:2/3;
  }
}


/* =========================================================
   ESPRIT
   ========================================================= */

.esprit{
  background:var(--cream);
  padding:110px 0;
}

.esprit-inner{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:50px;
}

.esprit .eyebrow{
  color:var(--muted-dark);
}

.esprit h2{
  max-width:640px;
  margin-bottom:26px;
  color:var(--green-dark);
  font-size:clamp(26px,3.4vw,40px);
  line-height:1.18;
}

.esprit p{
  max-width:520px;
  color:var(--muted-dark);
  font-size:15px;
  line-height:1.75;
}


/* =========================================================
   COLLECTIONS
   ========================================================= */

.collections{
  background:var(--ink);
  color:var(--cream);
}

.collections-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.collection-panel{
  min-width:0;
  position:relative;
  padding:70px 48px;
  border-right:1px solid var(--line);
  text-align:center;
}

.collection-panel:last-child{
  border-right:none;
}

.collection-visual{
  position:relative;
  width:min(100%,360px);
  aspect-ratio:4/5;
  margin:0 auto 34px;
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
}

.collection-visual img.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  opacity:0;
  transition:opacity 1s ease;
}

.collection-visual img.slide.active{
  opacity:1;
}

.collection-panel h3{
  margin-bottom:10px;
  font-size:24px;
}

.collection-panel p{
  max-width:380px;
  margin:0 auto 28px;
  color:rgba(244,239,227,.6);
  font-size:14px;
  line-height:1.65;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products{
  padding:100px 0;
}

.products.alt{
  background:var(--cream-2);
}

.products-head{
  margin-bottom:44px;
}

.products-head h2{
  color:var(--green-dark);
  font-size:clamp(22px,2.6vw,30px);
  text-transform:uppercase;
  letter-spacing:.02em;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.product-card{
  min-width:0;
  background:var(--paper);
  border:1px solid var(--line-dark);
}

.product-visual{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  border-bottom:1px solid var(--line-dark);
  cursor:zoom-in;
}

.product-visual-hover{
  position:relative;
}

.product-image-base,
.product-image-hover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
  transition:
    opacity .45s ease,
    transform .55s ease;
}

.product-image-base{
  z-index:1;
  opacity:1;
}

.product-image-hover{
  z-index:2;
  opacity:0;
}

@media(hover:hover){

  .product-visual-hover:hover .product-image-base{
    opacity:0;
  }

  .product-visual-hover:hover .product-image-hover{
    opacity:1;
    transform:scale(1.015);
  }

}

/* Repère visuel face / dos */
.product-view-indicator{
  position:absolute;
  top:16px;
  right:16px;
  z-index:5;
  min-width:54px;
  height:30px;
  padding:0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.34);
  border-radius:999px;
  background:rgba(7,20,13,.76);
  color:var(--cream);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 8px 22px rgba(0,0,0,.14);
  pointer-events:none;
}

.product-view-indicator span{
  position:absolute;
  font-size:9px;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.product-view-back{
  opacity:1;
  transform:translateY(0);
}

.product-view-front{
  opacity:0;
  transform:translateY(7px);
}

@media(hover:hover){

  .product-visual-hover:hover .product-view-back{
    opacity:0;
    transform:translateY(-7px);
  }

  .product-visual-hover:hover .product-view-front{
    opacity:1;
    transform:translateY(0);
  }

}

.product-body{
  min-width:0;
  padding:22px;
}

.product-body .cat{
  margin-bottom:6px;
  color:var(--muted-dark);
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.product-body h4{
  margin-bottom:8px;
  color:var(--green-dark);
  font-size:19px;
}

.product-body p{
  min-height:40px;
  margin-bottom:18px;
  color:var(--muted-dark);
  font-size:13px;
  line-height:1.6;
}

.size-select,
.variant-select{
  width:100%;
  margin-bottom:10px;
  padding:10px 12px;
  border:1px solid var(--line-dark);
  background:#fff;
  color:var(--ink);
  font-family:'Work Sans',sans-serif;
  font-size:13px;
}

.size-link{
  display:inline-block;
  margin-bottom:12px;
  padding:0;
  border:none;
  background:none;
  color:var(--green-dark);
  font-family:'Work Sans',sans-serif;
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:underline;
  cursor:pointer;
}

.buy-buttons{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.buy-buttons .btn{
  width:100%;
  padding:11px 16px;
  font-size:11px;
  white-space:normal;
  line-height:1.35;
}


/* =========================================================
   LIENS CROISÉS COLLECTIONS
   ========================================================= */

.collection-crosslink{
  margin-top:34px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  border:1px solid var(--line-dark);
  background:rgba(255,255,255,.52);
}

.collection-crosslink-copy{
  min-width:0;
  max-width:680px;
}

.collection-crosslink-kicker{
  display:block;
  margin-bottom:5px;
  color:var(--muted-dark);
  font-size:9px;
  letter-spacing:.13em;
  text-transform:uppercase;
  font-weight:700;
}

.collection-crosslink-copy strong{
  display:block;
  margin-bottom:5px;
  color:var(--green-dark);
  font-family:'Fraunces',serif;
  font-size:20px;
  font-weight:500;
}

.collection-crosslink-copy p{
  color:var(--muted-dark);
  font-size:12px;
  line-height:1.6;
}

.collection-crosslink-btn{
  flex:0 0 auto;
  min-height:42px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid var(--green-dark);
  color:var(--green-dark);
  font-size:10px;
  letter-spacing:.09em;
  text-transform:uppercase;
  font-weight:700;
  transition:.22s ease;
}

.collection-crosslink-btn span{
  transition:transform .22s ease;
}

.collection-crosslink-btn:hover{
  background:var(--green-dark);
  color:var(--cream);
}

.collection-crosslink-btn:hover span{
  transform:translateX(3px);
}

.collection-crosslink-light{
  background:rgba(250,248,242,.62);
}

@media(max-width:720px){


  .why-lap{
    padding:68px 0;
  }

  .why-lap-head{
    margin-bottom:30px;
  }

  .why-lap-grid{
    grid-template-columns:1fr;
  }

  .reassurance-grid{
    grid-template-columns:1fr;
  }

  .reassurance-item,
  .reassurance-item:nth-child(2){
    border-right:none;
    border-bottom:1px solid rgba(244,239,227,.12);
  }

  .reassurance-item:last-child{
    border-bottom:none;
  }

  .collection-crosslink{
    margin-top:24px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .collection-crosslink-btn{
    width:100%;
  }
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing{
  background:var(--cream);
  padding:110px 0;
  text-align:center;
}

.pricing .eyebrow{
  justify-content:center;
  margin-bottom:14px;
  color:var(--muted-dark);
}

.pricing h2{
  margin-bottom:10px;
  color:var(--green-dark);
  font-size:clamp(24px,3vw,34px);
}

.pricing .sub{
  max-width:460px;
  margin:0 auto 56px;
  color:var(--muted-dark);
  font-size:14px;
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  max-width:960px;
  margin:0 auto;
  text-align:left;
}

.price-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  padding:34px 28px;
  background:var(--paper);
  border:1px solid var(--line-dark);
}

.price-card.featured{
  position:relative;
  border-color:var(--green-dark);
  box-shadow:0 18px 40px rgba(18,44,28,.12);
}

.price-card .badge{
  position:absolute;
  top:-13px;
  right:24px;
  padding:6px 12px;
  background:var(--green-dark);
  color:var(--cream);
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.price-card .plabel{
  margin-bottom:14px;
  color:var(--muted-dark);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.price-card .pamount{
  margin-bottom:16px;
  color:var(--green-dark);
  font-family:'Fraunces',serif;
  font-size:36px;
}

.price-card .pdesc{
  flex-grow:1;
  margin-bottom:20px;
  color:var(--muted-dark);
  font-size:13px;
  line-height:1.6;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials{
  background:var(--green-dark);
  color:var(--cream);
  padding:90px 0;
}

.testimonials-head{
  text-align:center;
  margin-bottom:56px;
}

.testimonials-head h2{
  margin-bottom:8px;
  color:var(--cream);
  font-size:clamp(22px,2.6vw,30px);
}

.testimonials-head p{
  color:rgba(244,239,227,.65);
  font-size:14px;
  font-style:italic;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:32px;
  align-items:stretch;
}

.testimonial{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:36px 28px;
  border:1px solid rgba(244,239,227,.18);
  text-align:center;
}

.testimonial .stars{
  margin-bottom:16px;
  color:#e8c15c;
  font-size:15px;
  letter-spacing:3px;
}

.testimonial p.quote{
  margin-bottom:16px;
  color:rgba(244,239,227,.85);
  font-size:14px;
  font-style:italic;
  line-height:1.7;
}

.testimonial .author{
  color:var(--cream);
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.testimonial .verified{
  margin-top:2px;
  color:rgba(244,239,227,.55);
  font-size:11px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-premium{
  padding:70px 0;
  background:#07140d;
  color:var(--cream);
  border-bottom:1px solid rgba(244,239,227,.12);
}

.contact-premium-grid{
  display:grid;
  grid-template-columns:minmax(280px,340px) minmax(0,1fr);
  gap:70px;
  align-items:start;
}

.contact-kicker{
  margin-bottom:10px;
  color:var(--rose);
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
}

.contact-premium h2{
  margin-bottom:16px;
  color:var(--cream);
  font-family:'Work Sans',sans-serif;
  font-size:22px;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.contact-premium-copy p{
  max-width:650px;
  color:rgba(244,239,227,.75);
  font-size:13px;
  line-height:1.75;
}


.contact-sav-card{
  margin-top:28px;
  padding:22px 22px 20px;
  border:1px solid rgba(244,239,227,.18);
  background:rgba(255,255,255,.025);
}

.contact-sav-kicker{
  margin-bottom:9px;
  color:var(--rose);
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.contact-sav-card h3{
  margin:0 0 10px;
  color:var(--cream);
  font-family:'Work Sans',sans-serif;
  font-size:14px;
  line-height:1.35;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.contact-sav-card p{
  margin:0;
  color:rgba(244,239,227,.68);
  font-size:11px;
  line-height:1.7;
}

.contact-sav-card .contact-sav-note{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(244,239,227,.12);
}

.contact-sav-card a{
  color:var(--rose);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}

.contact-sav-card a:hover{
  color:var(--cream);
}

.contact-info-note{
  margin-top:18px;
  padding-left:14px;
  border-left:2px solid rgba(244,239,227,.22);
  color:rgba(244,239,227,.52);
  font-size:11px;
  line-height:1.6;
}

.contact-form-premium{
  min-width:0;
  padding:0!important;
  border:none!important;
  background:transparent!important;
}

.contact-intent-row{
  min-width:0;
  display:grid;
  grid-template-columns:110px 1fr;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.contact-intent-row label{
  color:rgba(244,239,227,.65);
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.contact-fields-top{
  min-width:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-bottom:10px;
}

.contact-fields-bottom{
  min-width:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.contact-form-premium input,
.contact-form-premium select,
.contact-intent-row select{
  width:100%;
  min-width:0;
  height:44px;
  padding:0 12px;
  border:1px solid rgba(244,239,227,.28);
  background:rgba(255,255,255,.015);
  color:var(--cream);
  outline:none;
  font-family:'Work Sans',sans-serif;
  font-size:12px;
}

.contact-form-premium input::placeholder{
  color:rgba(244,239,227,.5);
}

.contact-form-premium input:focus,
.contact-form-premium select:focus,
.contact-intent-row select:focus{
  border-color:var(--rose);
}

.contact-form-premium select option,
.rose-preorder-grid select option{
  background:#0a1911!important;
  color:#fff!important;
}

.rose-preorder-fields{
  display:none;
  margin-top:14px;
  padding:18px;
  border:1px solid rgba(201,143,160,.48);
  background:rgba(201,143,160,.055);
}

.rose-preorder-fields.show{
  display:block;
}

.rose-preorder-title{
  margin-bottom:12px;
  color:#efacc0;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}

.rose-preorder-grid{
  min-width:0;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:10px;
}

.rose-preorder-grid select{
  width:100%;
  min-width:0;
  height:42px;
  padding:0 12px;
  border:1px solid rgba(244,239,227,.28);
  background:#0a1911;
  color:#fff;
}

.rose-preorder-help{
  margin-top:10px;
  color:rgba(244,239,227,.55);
  font-size:10px;
  line-height:1.55;
}

.contact-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:10px;
  color:rgba(244,239,227,.55);
  font-size:10px;
  line-height:1.5;
}

.contact-consent input{
  width:15px!important;
  min-width:15px;
  height:15px!important;
  margin-top:1px;
}

.contact-submit-row{
  display:flex;
  justify-content:flex-end;
  margin-top:14px;
}

.contact-submit{
  min-width:240px;
  height:42px;
  padding:0 22px;
  border:none;
  background:var(--rose);
  color:#241016;
  cursor:pointer;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:700;
}

.contact-status{
  min-height:16px;
  margin-top:9px;
  font-size:11px;
  color:#d8e4da;
}

.contact-status.success{
  color:#bfe0c7;
}

.contact-status.error{
  color:#f1a6a6;
}


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

footer{
  background:var(--ink);
  color:rgba(244,239,227,.55);
  padding:30px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:18px 28px;
  font-size:12px;
}

.footer-links{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.footer-links a:hover{
  color:var(--cream);
}


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

.lightbox-overlay{
  position:fixed;
  inset:0;
  z-index:200;
  display:none;
  align-items:center;
  justify-content:center;
  padding:40px;
  background:rgba(8,10,8,.92);
  cursor:zoom-out;
}

.lightbox-overlay.show{
  display:flex;
}

.lightbox-overlay img{
  width:auto;
  height:auto;
  max-width:90vw;
  max-height:88vh;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}

.lightbox-close{
  position:fixed;
  top:24px;
  right:32px;
  z-index:201;
  color:var(--cream);
  font-size:30px;
  font-weight:300;
  line-height:1;
  cursor:pointer;
}


/* =========================================================
   APERÇU RAPIDE PRODUIT
   ========================================================= */

.product-quick-action{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:4;
  display:flex;
  justify-content:center;
  opacity:0;
  transform:translateY(10px);
  transition:
    opacity .25s ease,
    transform .25s ease;
  pointer-events:none;
}

.product-quick-action button{
  width:100%;
  min-height:42px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(7,20,13,.90);
  color:var(--cream);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  cursor:pointer;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:
    background .2s ease,
    color .2s ease;
  pointer-events:auto;
}

.product-quick-action button:hover{
  background:var(--cream);
  color:var(--green-dark);
}

@media(hover:hover){

  .product-visual:hover .product-quick-action{
    opacity:1;
    transform:translateY(0);
  }

}

body.quick-view-open{
  overflow:hidden;
}

.quick-view-overlay{
  position:fixed;
  inset:0;
  z-index:420;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(5,12,8,.76);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .25s ease,
    visibility .25s ease;
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}

.quick-view-overlay.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.quick-view-modal{
  position:relative;
  width:min(980px,100%);
  max-height:min(760px,calc(100vh - 56px));
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  overflow:hidden;
  background:var(--paper);
  border:1px solid rgba(244,239,227,.16);
  box-shadow:0 34px 100px rgba(0,0,0,.38);
  transform:translateY(18px) scale(.985);
  transition:transform .28s ease;
}

.quick-view-overlay.show .quick-view-modal{
  transform:translateY(0) scale(1);
}

.quick-view-close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:5;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(13,36,23,.14);
  border-radius:50%;
  background:rgba(250,248,242,.92);
  color:var(--green-dark);
  cursor:pointer;
  font-size:18px;
  transition:
    background .2s ease,
    transform .2s ease;
}

.quick-view-close:hover{
  background:#fff;
  transform:rotate(6deg);
}

.quick-view-media{
  position:relative;
  min-height:580px;
  overflow:hidden;
  background:#111;
}

.quick-view-media img{
  width:100%;
  height:100%;
  min-height:580px;
  object-fit:cover;
  object-position:top center;
  opacity:1;
  transform:scale(1);
  transition:
    opacity .16s ease,
    transform .35s ease;
}

.quick-view-media img.is-changing{
  opacity:.25;
  transform:scale(1.015);
}

.quick-view-switch{
  position:absolute;
  left:50%;
  bottom:18px;
  z-index:3;
  display:flex;
  padding:4px;
  background:rgba(7,20,13,.82);
  border:1px solid rgba(255,255,255,.18);
  transform:translateX(-50%);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.quick-view-switch-button{
  min-width:82px;
  height:34px;
  padding:0 14px;
  border:0;
  background:transparent;
  color:rgba(244,239,227,.68);
  cursor:pointer;
  font-size:9px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:.2s ease;
}

.quick-view-switch-button.active{
  background:var(--cream);
  color:var(--green-dark);
}

.quick-view-content{
  min-width:0;
  overflow-y:auto;
  padding:54px 42px 40px;
}

.quick-view-cat{
  margin-bottom:10px;
  color:var(--muted-dark);
  font-size:10px;
  font-weight:600;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.quick-view-content h3{
  margin-bottom:14px;
  color:var(--green-dark);
  font-size:clamp(30px,3vw,42px);
  line-height:1.05;
}

.quick-view-description{
  margin-bottom:24px;
  color:var(--muted-dark);
  font-size:13px;
  line-height:1.7;
}

.quick-view-color-picker{
  margin-bottom:22px;
  padding:16px;
  border:1px solid var(--line-dark);
  background:rgba(255,255,255,.5);
}

.quick-view-color-picker-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}

.quick-view-color-picker-head span{
  color:var(--muted-dark);
  font-size:9px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.quick-view-color-picker-head strong{
  color:var(--green-dark);
  font-size:11px;
  font-weight:600;
}

.quick-view-color-swatches{
  display:flex;
  align-items:center;
  gap:10px;
}

.quick-view-color-swatch{
  position:relative;
  width:34px;
  height:34px;
  padding:3px;
  border:1px solid transparent;
  border-radius:50%;
  background:transparent;
  cursor:pointer;
  transition:
    border-color .2s ease,
    transform .2s ease;
}

.quick-view-color-swatch span{
  display:block;
  width:100%;
  height:100%;
  border-radius:50%;
  border:1px solid rgba(13,36,23,.14);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
}

.quick-view-color-swatch:hover{
  transform:translateY(-2px);
}

.quick-view-color-swatch.active{
  border-color:var(--green-dark);
}

.quick-view-color-swatch.active::after{
  content:'✓';
  position:absolute;
  right:-3px;
  bottom:-3px;
  width:16px;
  height:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--green-dark);
  color:var(--cream);
  font-size:9px;
  font-weight:700;
}

.quick-view-color-swatch.swatch-sauge span{
  background:#a9c7bd;
}

.quick-view-color-swatch.swatch-terracotta span{
  background:#a8473f;
}

.quick-view-color-swatch.swatch-black span{
  background:#171817;
}

.quick-view-details{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  margin-bottom:22px;
  background:var(--line-dark);
  border:1px solid var(--line-dark);
}

.quick-view-details > div{
  min-width:0;
  padding:14px 12px;
  background:var(--paper);
}

.quick-view-details span{
  display:block;
  margin-bottom:5px;
  color:var(--muted-dark);
  font-size:8px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.quick-view-details strong{
  display:block;
  color:var(--green-dark);
  font-size:11px;
  line-height:1.4;
}


.quick-view-specs{
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid var(--line-dark);
  display:grid;
  gap:22px;
}

.quick-view-spec-section h4{
  margin-bottom:8px;
  font-family:'Work Sans',sans-serif;
  color:var(--green-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.quick-view-spec-section p,
.quick-view-spec-section li{
  color:var(--muted-dark);
  font-size:12px;
  line-height:1.65;
}

.quick-view-spec-section ul{
  margin-top:7px;
  padding-left:18px;
}

.quick-view-spec-section li + li{
  margin-top:4px;
}

.quick-view-spec-section strong{
  color:var(--green-dark);
  font-weight:700;
}

.quick-view-size-guide{
  margin:0 0 20px;
  padding:0;
  border:0;
  background:none;
  color:var(--green-dark);
  cursor:pointer;
  font-size:10px;
  letter-spacing:.07em;
  text-transform:uppercase;
  text-decoration:underline;
}

.quick-view-size-label{
  display:block;
  margin-bottom:7px;
  color:var(--muted-dark);
  font-size:9px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.quick-view-size-select{
  width:100%;
  height:46px;
  margin-bottom:14px;
  padding:0 13px;
  border:1px solid var(--line-dark);
  background:#fff;
  color:var(--ink);
  outline:none;
}

.quick-view-size-select:focus{
  border-color:var(--green-dark);
}

.quick-view-actions{
  display:grid;
  gap:9px;
}

.quick-view-actions .btn{
  width:100%;
  min-height:46px;
  padding:11px 14px;
  white-space:normal;
  line-height:1.3;
}

.quick-view-secondary-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
}

@media(max-width:820px){

  .quick-view-overlay{
    padding:14px;
    align-items:flex-start;
    overflow-y:auto;
  }

  .quick-view-modal{
    width:100%;
    max-height:none;
    grid-template-columns:1fr;
  }

  .quick-view-media{
    min-height:0;
    aspect-ratio:4/5;
  }

  .quick-view-media img{
    min-height:0;
    position:absolute;
    inset:0;
  }

  .quick-view-content{
    overflow:visible;
    padding:34px 22px 28px;
  }

  .quick-view-close{
    top:12px;
    right:12px;
  }

  .product-quick-action{
    opacity:1;
    transform:none;
    left:12px;
    right:12px;
    bottom:12px;
  }

}

@media(max-width:520px){

  .quick-view-details{
    grid-template-columns:1fr;
  }

  .quick-view-secondary-actions{
    grid-template-columns:1fr;
  }

  .quick-view-switch-button{
    min-width:72px;
  }

}


/* =========================================================
   GUIDE DES TAILLES
   ========================================================= */

.size-modal-overlay{
  position:fixed;
  inset:0;
  z-index:210;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(8,10,8,.75);
}

.size-modal-overlay.show{
  display:flex;
}

.size-modal{
  position:relative;
  width:100%;
  max-width:560px;
  max-height:85vh;
  overflow-y:auto;
  padding:36px;
  background:var(--paper);
}

.size-modal h3{
  margin-bottom:6px;
  color:var(--green-dark);
  font-size:22px;
}

.size-modal .sub{
  margin-bottom:22px;
  color:var(--muted-dark);
  font-size:13px;
}

.size-modal table{
  width:100%;
  border-collapse:collapse;
  margin-bottom:20px;
}

.size-modal th,
.size-modal td{
  padding:10px 8px;
  border-bottom:1px solid var(--line-dark);
  text-align:center;
  font-size:13px;
}

.size-modal th{
  color:var(--muted-dark);
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.size-modal td:first-child,
.size-modal th:first-child{
  text-align:left;
  color:var(--green-dark);
  font-weight:600;
}

.size-modal .note{
  color:var(--muted-dark);
  font-size:12px;
  line-height:1.6;
}

.size-modal-close{
  position:absolute;
  top:18px;
  right:20px;
  color:var(--muted-dark);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}


/* =========================================================
   PANIER
   ========================================================= */

.cart-trigger{
  border:1px solid rgba(244,239,227,.35);
  background:var(--green-dark);
  color:var(--cream);
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Work Sans',sans-serif;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.cart-count{
  min-width:22px;
  height:22px;
  border-radius:999px;
  background:var(--rose);
  color:#2a1219;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:11px;
}

.cart-overlay{
  position:fixed;
  inset:0;
  z-index:300;
  display:none;
  background:rgba(8,10,8,.55);
}

.cart-overlay.show{
  display:block;
}

.cart-drawer{
  position:absolute;
  top:0;
  right:0;
  width:min(440px,94vw);
  height:100%;
  display:flex;
  flex-direction:column;
  background:var(--paper);
  box-shadow:-24px 0 70px rgba(0,0,0,.22);
}

.cart-head{
  padding:24px;
  border-bottom:1px solid var(--line-dark);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.cart-head h3{
  color:var(--green-dark);
  font-size:24px;
}

.cart-close{
  border:none;
  background:none;
  color:var(--muted-dark);
  font-size:24px;
  cursor:pointer;
}

.cart-items{
  flex:1;
  overflow:auto;
  padding:12px 24px;
}

.cart-empty{
  padding:36px 0;
  text-align:center;
  color:var(--muted-dark);
  font-size:14px;
  line-height:1.6;
}

.cart-item{
  padding:16px 0;
  border-bottom:1px solid var(--line-dark);
}

.cart-item-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}

.cart-item-name{
  color:var(--green-dark);
  font-size:14px;
  font-weight:600;
  line-height:1.35;
}

.cart-item-meta{
  margin-top:4px;
  color:var(--muted-dark);
  font-size:12px;
}

.cart-item-price{
  white-space:nowrap;
  font-size:14px;
  font-weight:600;
}

.cart-item-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.qty-wrap{
  display:flex;
  align-items:center;
  border:1px solid var(--line-dark);
  background:#fff;
}

.qty-btn{
  width:32px;
  height:32px;
  border:none;
  background:#fff;
  cursor:pointer;
  font-size:18px;
}

.qty-value{
  width:34px;
  text-align:center;
  font-size:13px;
}

.remove-item{
  border:none;
  background:none;
  color:#8c3f3f;
  text-decoration:underline;
  cursor:pointer;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.cart-summary{
  padding:20px 24px 24px;
  border-top:1px solid var(--line-dark);
  background:var(--cream);
}

.summary-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
  color:var(--muted-dark);
  font-size:13px;
}

.summary-line.total{
  padding-top:12px;
  margin-top:12px;
  border-top:1px solid var(--line-dark);
  color:var(--green-dark);
  font-size:16px;
  font-weight:700;
}

.shipping-note{
  margin:12px 0 16px;
  color:var(--muted-dark);
  font-size:11px;
  line-height:1.5;
}

.cart-error{
  min-height:18px;
  margin-top:10px;
  color:#9a3b2c;
  font-size:12px;
  line-height:1.5;
}

.add-feedback{
  position:fixed;
  left:50%;
  bottom:26px;
  z-index:350;
  width:min(520px,calc(100vw - 28px));
  transform:translate(-50%,24px);
  padding:0;
  background:rgba(13,36,23,.96);
  color:var(--cream);
  border:1px solid rgba(244,239,227,.16);
  border-radius:10px;
  box-shadow:0 22px 60px rgba(0,0,0,.28);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.add-feedback.show{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
  pointer-events:auto;
}

.add-feedback-content{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:15px 16px;
}

.add-feedback-check{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(201,143,160,.18);
  color:#efacc0;
  font-size:18px;
  font-weight:700;
}

.add-feedback-text{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:3px;
}

.add-feedback-text strong{
  color:var(--cream);
  font-size:12px;
  line-height:1.35;
}

.add-feedback-text span{
  color:rgba(244,239,227,.62);
  font-size:11px;
  line-height:1.35;
}

.add-feedback-button{
  min-height:36px;
  padding:0 14px;
  border:1px solid rgba(244,239,227,.25);
  background:transparent;
  color:var(--cream);
  cursor:pointer;
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:600;
  white-space:nowrap;
  transition:.2s ease;
}

.add-feedback-button:hover{
  background:var(--cream);
  color:var(--green-dark);
}

@media(max-width:520px){

  .add-feedback{
    bottom:14px;
  }

  .add-feedback-content{
    grid-template-columns:38px minmax(0,1fr);
  }

  .add-feedback-check{
    width:38px;
    height:38px;
  }

  .add-feedback-button{
    grid-column:1/-1;
    width:100%;
  }

}


/* =========================================================
   POURQUOI L'ATOUT PADEL
   ========================================================= */

.why-lap{
  padding:96px 0;
  background:#f8f5ed;
  border-top:1px solid var(--line-dark);
  border-bottom:1px solid var(--line-dark);
}

.why-lap-head{
  max-width:760px;
  margin:0 auto 46px;
  text-align:center;
}

.why-lap-head .eyebrow{
  justify-content:center;
  margin-bottom:14px;
  color:var(--muted-dark);
}

.why-lap-head h2{
  margin-bottom:14px;
  color:var(--green-dark);
  font-size:clamp(30px,3.5vw,46px);
  line-height:1.08;
}

.why-lap-head p{
  max-width:650px;
  margin:0 auto;
  color:var(--muted-dark);
  font-size:14px;
  line-height:1.75;
}

.why-lap-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.why-lap-card{
  position:relative;
  min-width:0;
  padding:28px 24px 26px;
  background:var(--paper);
  border:1px solid var(--line-dark);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.why-lap-number{
  margin-bottom:22px;
  color:var(--rose);
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em;
}

.why-lap-card h3{
  margin-bottom:10px;
  color:var(--green-dark);
  font-size:20px;
}

.why-lap-card p{
  color:var(--muted-dark);
  font-size:12px;
  line-height:1.7;
}

@media(hover:hover){
  .why-lap-card:hover{
    transform:translateY(-4px);
    border-color:rgba(13,36,23,.22);
    box-shadow:0 18px 42px rgba(18,44,28,.08);
  }
}


/* =========================================================
   RÉASSURANCE
   ========================================================= */

.reassurance-strip{
  padding:24px 0;
  background:#10281b;
  color:var(--cream);
  border-top:1px solid rgba(244,239,227,.14);
  border-bottom:1px solid rgba(244,239,227,.14);
}

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

.reassurance-item{
  min-width:0;
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:8px 22px;
  border-right:1px solid rgba(244,239,227,.14);
}

.reassurance-item:last-child{
  border-right:none;
}

.reassurance-icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(244,239,227,.24);
  border-radius:50%;
  color:var(--rose);
  font-size:11px;
  font-weight:700;
}

.reassurance-item strong{
  display:block;
  margin-bottom:3px;
  color:var(--cream);
  font-size:11px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.reassurance-item span{
  display:block;
  color:rgba(244,239,227,.6);
  font-size:10px;
  line-height:1.45;
}


/* =========================================================
   TABLET LARGE
   ========================================================= */

@media(max-width:1180px){

  .premium-nav{
    grid-template-columns:200px 1fr auto;
    padding:18px 24px;
  }

  .brand-clean img{
    width:190px!important;
  }

  .premium-links{
    gap:20px;
  }

  .rose-header-cta{
    display:none;
  }

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

  .benefit:nth-child(2){
    border-right:none;
  }

  .benefit:nth-child(1),
  .benefit:nth-child(2){
    border-bottom:1px solid rgba(244,239,227,.16);
  }

  .contact-premium-grid{
    grid-template-columns:1fr;
    gap:32px;
  }


  .contact-sav-card{
    margin-top:22px;
    padding:18px;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:980px){


  .why-lap-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

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

  .reassurance-item:nth-child(2){
    border-right:none;
  }

  .reassurance-item:nth-child(1),
  .reassurance-item:nth-child(2){
    border-bottom:1px solid rgba(244,239,227,.14);
  }


  .wrap{
    padding-inline:28px;
  }

  .premium-nav{
    grid-template-columns:minmax(150px,1fr) auto;
    min-height:82px;
    padding:14px 22px;
  }

  .brand-clean{
    max-width:190px;
  }

  .brand-clean img{
    width:180px!important;
  }

  .premium-links{
    display:none;
  }

  .premium-actions{
    justify-content:flex-end;
  }

  .header-cart{
    font-size:10px!important;
  }

  .mobile-menu-toggle{
    width:42px;
    height:42px;
    border:1px solid rgba(244,239,227,.28);
    background:rgba(7,20,13,.6);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    cursor:pointer;
  }

  .mobile-menu-toggle span{
    width:18px;
    height:1px;
    background:var(--cream);
  }

  .mobile-menu{
    position:absolute;
    top:82px;
    left:18px;
    right:18px;
    padding:10px;
    background:#08170f;
    border:1px solid rgba(244,239,227,.16);
    flex-direction:column;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
  }

  .mobile-menu.show{
    display:flex;
  }

  .mobile-menu a{
    padding:14px 12px;
    color:var(--cream);
    border-bottom:1px solid rgba(244,239,227,.08);
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  .mobile-menu a:last-child{
    border-bottom:none;
  }

  .mobile-rose-link{
    color:#ef9fb7!important;
  }

  .hero{
    min-height:700px;
  }

  .hero-gradient{
    background:
      linear-gradient(
        100deg,
        rgba(6,16,10,.96) 0%,
        rgba(8,20,13,.78) 52%,
        rgba(8,20,13,.32) 76%,
        rgba(8,20,13,.18) 100%
      ),
      linear-gradient(
        0deg,
        rgba(4,10,6,.62) 0%,
        transparent 28%
      );
  }

  .hero-inner{
    width:min(100%,680px);
    padding:145px 28px 54px;
  }

  .hero h1{
    font-size:clamp(40px,6vw,58px);
  }

  .collections-grid,
  .product-grid,
  .price-grid,
  .testimonials-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .esprit-inner{
    grid-template-columns:1fr;
    gap:22px;
  }

  .rose-products{
    grid-template-columns:1fr;
    max-width:720px;
    margin-inline:auto;
  }

  .rose-product-content{
    grid-template-columns:minmax(0,1fr) 230px;
  }

  .contact-fields-top{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .contact-fields-top input:last-child{
    grid-column:1/-1;
  }

  .rose-preorder-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .rose-preorder-grid select:last-child{
    grid-column:1/-1;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:720px){

  .product-view-indicator{
    top:12px;
    right:12px;
    min-width:50px;
    height:28px;
  }

  .wrap{
    padding-inline:18px;
  }

  .premium-nav{
    min-height:72px;
    padding:10px 14px;
  }

  .brand-clean{
    max-width:150px;
  }

  .brand-clean img{
    width:145px!important;
  }

  .header-cart{
    padding:8px 4px!important;
  }

  .mobile-menu{
    top:72px;
    left:12px;
    right:12px;
  }

  .hero{
    min-height:660px;
    align-items:flex-end;
  }

  .hero-bg{
    object-position:62% center;
  }

  .hero-gradient{
    background:
      linear-gradient(
        90deg,
        rgba(5,14,9,.95) 0%,
        rgba(5,14,9,.82) 56%,
        rgba(5,14,9,.48) 100%
      ),
      linear-gradient(
        0deg,
        rgba(4,10,6,.82) 0%,
        transparent 50%
      );
  }

  .hero-inner{
    width:100%;
    padding:125px 18px 42px;
  }

  .hero-copy .eyebrow{
    margin-bottom:16px;
    font-size:10px;
    letter-spacing:.2em;
  }

  .hero h1{
    margin-bottom:20px;
    font-size:clamp(38px,12vw,54px);
    line-height:1.04;
  }

  .hero-break{
    display:none;
  }

  .hero p.lede{
    margin-bottom:24px;
    font-size:14px;
    line-height:1.55;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    gap:10px;
  }

  .hero-actions .btn{
    width:100%;
    white-space:normal;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

  .benefit,
  .benefit:nth-child(2){
    border-right:none;
    border-bottom:1px solid rgba(244,239,227,.14);
  }

  .benefit:last-child{
    border-bottom:none;
  }

  .capsule-rose,
  .products,
  .pricing,
  .testimonials,
  .esprit{
    padding:68px 0;
  }

  .rose-section-title{
    font-size:40px;
  }

  .rose-section-copy{
    font-size:14px;
  }

  .rose-highlights{
    grid-template-columns:1fr;
    gap:24px;
    margin:34px auto 38px;
  }

  .rose-products{
    grid-template-columns:1fr;
    gap:20px;
  }

  .rose-product-content{
    grid-template-columns:1fr;
    gap:22px;
    padding:20px;
  }

  .rose-product-info p{
    max-width:none;
  }

  .rose-product-image{
    aspect-ratio:3/4;
  }

  .rose-product-options{
    grid-template-columns:1fr 1fr;
  }

  .rose-engagement{
    align-items:flex-start;
    padding:18px;
  }

  .collections-grid,
  .product-grid,
  .price-grid,
  .testimonials-grid{
    grid-template-columns:1fr;
  }

  .collection-panel{
    padding:54px 18px;
    border-right:none;
    border-bottom:1px solid var(--line);
  }

  .collection-panel:last-child{
    border-bottom:none;
  }

  .collection-visual{
    max-width:320px;
  }

  .products-head{
    margin-bottom:28px;
  }

  .product-body{
    padding:18px;
  }

  .product-body p{
    min-height:0;
  }

  .price-card,
  .testimonial{
    padding:28px 22px;
  }

  .contact-premium{
    padding:58px 0;
  }

  .contact-premium-grid{
    gap:26px;
  }

  .contact-intent-row,
  .contact-fields-top,
  .contact-fields-bottom,
  .rose-preorder-grid{
    grid-template-columns:1fr;
  }

  .contact-fields-top input:last-child,
  .rose-preorder-grid select:last-child{
    grid-column:auto;
  }

  .contact-form-premium input,
  .contact-form-premium select,
  .contact-intent-row select{
    height:46px;
    font-size:14px;
  }

  .rose-preorder-fields{
    padding:14px;
  }

  .contact-submit-row{
    justify-content:stretch;
  }

  .contact-submit{
    width:100%;
    min-width:0;
    height:48px;
  }

  .contact-consent{
    font-size:11px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-links{
    flex-direction:column;
    gap:10px;
  }

  .cart-drawer{
    width:100%;
    max-width:none;
  }

  .cart-head,
  .cart-items,
  .cart-summary{
    padding-left:18px;
    padding-right:18px;
  }

  .size-modal{
    width:calc(100vw - 24px);
    padding:24px 18px;
  }

  .size-modal th,
  .size-modal td{
    padding:8px 4px;
    font-size:11px;
  }

  .lightbox-overlay{
    padding:12px;
  }

  .lightbox-overlay img{
    max-width:96vw;
    max-height:86vh;
  }

}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media(max-width:430px){

  .brand-clean{
    max-width:125px;
  }

  .brand-clean img{
    width:122px!important;
  }

  .header-cart{
    font-size:9px!important;
    gap:6px;
  }

  .mobile-menu-toggle{
    width:38px;
    height:38px;
  }

  .hero{
    min-height:620px;
  }

  .hero-inner{
    padding-top:110px;
  }

  .hero h1{
    font-size:clamp(34px,11.5vw,46px);
  }

  .benefit{
    grid-template-columns:34px minmax(0,1fr);
    gap:12px;
    padding:22px 18px;
  }

  .benefit-icon{
    width:34px;
    height:34px;
    font-size:26px;
  }

  .rose-product-options{
    grid-template-columns:1fr;
  }

  .rose-preorder-button{
    grid-column:auto;
  }

  .rose-section-title{
    font-size:36px;
  }

  .contact-premium h2{
    font-size:20px;
  }

  .cart-item-top{
    flex-direction:column;
  }

  .cart-item-price{
    align-self:flex-start;
  }

}
/* =========================================================
   MODIF 8 — QUICK VIEW PREMIUM / ACCORDÉONS
   ========================================================= */

.quick-view-modal{
  width:min(1120px,calc(100vw - 48px));
  height:min(780px,calc(100vh - 48px));
  max-height:none;
  grid-template-columns:minmax(0,42%) minmax(0,58%);
}

.quick-view-media{
  min-height:0;
  height:100%;
}

.quick-view-media img{
  min-height:0;
  height:100%;
  object-fit:cover;
  object-position:top center;
}

.quick-view-content{
  min-height:0;
  height:100%;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  padding:0;
  background:var(--paper);
}

.quick-view-scroll{
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  padding:48px 42px 28px;
  scrollbar-width:thin;
  scrollbar-color:rgba(13,36,23,.28) transparent;
}

.quick-view-scroll::-webkit-scrollbar{
  width:7px;
}

.quick-view-scroll::-webkit-scrollbar-track{
  background:transparent;
}

.quick-view-scroll::-webkit-scrollbar-thumb{
  background:rgba(13,36,23,.22);
  border-radius:999px;
}

.quick-view-color-picker{
  margin-bottom:22px;
}

.quick-view-accordions{
  border-top:1px solid var(--line-dark);
}

.quick-view-accordion{
  border-bottom:1px solid var(--line-dark);
}

.quick-view-accordion-trigger{
  width:100%;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--green-dark);
  cursor:pointer;
  text-align:left;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.quick-view-accordion-trigger:hover{
  color:var(--green-accent);
}

.quick-view-accordion-icon{
  flex:0 0 auto;
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line-dark);
  border-radius:50%;
  font-size:14px;
  font-weight:400;
  line-height:1;
  transition:
    transform .2s ease,
    background .2s ease;
}

.quick-view-accordion.is-open .quick-view-accordion-icon{
  background:var(--green-dark);
  color:var(--cream);
  border-color:var(--green-dark);
}

.quick-view-accordion-panel{
  display:none;
  padding:0 0 20px;
}

.quick-view-accordion.is-open .quick-view-accordion-panel{
  display:block;
  animation:quickViewPanelIn .22s ease both;
}

@keyframes quickViewPanelIn{
  from{
    opacity:0;
    transform:translateY(-5px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.quick-view-accordion-panel p,
.quick-view-accordion-panel li{
  color:var(--muted-dark);
  font-size:12px;
  line-height:1.65;
}

.quick-view-accordion-panel ul{
  margin-top:8px;
  padding-left:18px;
}

.quick-view-accordion-panel li + li{
  margin-top:5px;
}

.quick-view-accordion-panel strong{
  color:var(--green-dark);
  font-weight:700;
}

.quick-view-purchase{
  flex:0 0 auto;
  padding:18px 42px 22px;
  border-top:1px solid var(--line-dark);
  background:rgba(250,248,242,.97);
  box-shadow:0 -14px 30px rgba(13,36,23,.05);
}

.quick-view-purchase-top{
  display:grid;
  grid-template-columns:auto minmax(160px,220px);
  grid-template-areas:
    "guide label"
    "guide select";
  align-items:end;
  gap:5px 18px;
  margin-bottom:12px;
}

.quick-view-size-guide{
  grid-area:guide;
  align-self:center;
  margin:0;
}

.quick-view-size-label{
  grid-area:label;
  margin:0;
}

.quick-view-size-select{
  grid-area:select;
  margin:0;
  height:42px;
}

.quick-view-actions{
  grid-template-columns:minmax(0,1fr) minmax(0,.85fr);
  gap:10px;
  align-items:stretch;
}

.quick-view-secondary-actions{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}

.quick-view-actions .btn{
  min-height:44px;
}

@media(max-width:900px){

  .quick-view-modal{
    width:min(760px,calc(100vw - 28px));
    height:auto;
    max-height:none;
    grid-template-columns:1fr;
  }

  .quick-view-overlay{
    align-items:flex-start;
    overflow-y:auto;
    padding:14px;
  }

  .quick-view-media{
    height:auto;
    aspect-ratio:4/5;
  }

  .quick-view-media img{
    position:absolute;
    inset:0;
  }

  .quick-view-content{
    height:auto;
    overflow:visible;
  }

  .quick-view-scroll{
    overflow:visible;
    padding:34px 24px 20px;
  }

  .quick-view-purchase{
    position:sticky;
    bottom:0;
    z-index:4;
    padding:16px 24px 20px;
  }

}

@media(max-width:560px){

  .quick-view-scroll{
    padding:30px 18px 16px;
  }

  .quick-view-purchase{
    padding:14px 18px 18px;
  }

  .quick-view-purchase-top{
    grid-template-columns:1fr;
    grid-template-areas:
      "label"
      "select"
      "guide";
    gap:7px;
  }

  .quick-view-size-guide{
    justify-self:start;
    margin-top:2px;
  }

  .quick-view-actions{
    grid-template-columns:1fr;
  }

  .quick-view-secondary-actions{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .quick-view-color-picker{
    padding:14px;
  }

  .quick-view-accordion-trigger{
    min-height:50px;
  }

}


/* =========================================================
   OCTOBRE ROSE — CHOIX D'ACHAT 80 € / 45 € / 43 €
   ========================================================= */

.rose-buy-choices{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-top:4px;
}

.rose-buy-choice{
  width:100%;
  min-height:46px;
  padding:11px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid rgba(216,111,141,.42);
  border-radius:4px;
  background:#fff;
  color:var(--green-dark);
  cursor:pointer;
  text-align:left;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}

.rose-buy-choice span{
  min-width:0;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.rose-buy-choice strong{
  flex:0 0 auto;
  font-family:'Fraunces',serif;
  font-size:17px;
  font-weight:500;
  letter-spacing:0;
}

.rose-buy-choice-primary{
  border-color:#d86f8d;
  background:#d86f8d;
  color:#fff;
}

@media(hover:hover){

  .rose-buy-choice:hover{
    transform:translateY(-1px);
    border-color:#c85f7e;
    background:#fff7f9;
    box-shadow:0 8px 20px rgba(216,111,141,.10);
  }

  .rose-buy-choice-primary:hover{
    background:#c85f7e;
    color:#fff;
  }

}


/* =========================================================
   FACE / DOS — COMMANDES MOBILE
   ========================================================= */

.mobile-side-controls{
  display:none;
}

@media(max-width:820px){

  .product-visual-hover,
  .rose-product-image-hover{
    touch-action:pan-y;
  }

  .mobile-side-controls{
    position:absolute;
    left:50%;
    bottom:16px;
    z-index:8;
    display:grid;
    grid-template-columns:repeat(2,minmax(72px,1fr));
    gap:4px;
    padding:4px;
    border:1px solid rgba(255,255,255,.24);
    background:rgba(7,20,13,.80);
    box-shadow:0 10px 28px rgba(0,0,0,.18);
    transform:translateX(-50%);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  }

  .mobile-side-button{
    min-width:72px;
    min-height:36px;
    padding:0 14px;
    border:0;
    background:transparent;
    color:rgba(244,239,227,.72);
    cursor:pointer;
    font-size:9px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    transition:
      background .2s ease,
      color .2s ease,
      transform .2s ease;
  }

  .mobile-side-button.active{
    background:var(--cream);
    color:var(--green-dark);
  }

  .product-view-indicator,
  .rose-view-badge{
    display:none;
  }

  .product-quick-action{
    bottom:68px;
  }

  .rose-product-image{
    cursor:default;
  }

}


/* =========================================================
   MOBILE — CARTES PRODUITS PLUS RESPONSIVES
   ========================================================= */

@media(max-width:720px){

  .rose-product-content{
    grid-template-columns:1fr;
    gap:20px;
    padding:20px;
  }

  .rose-product-info p{
    max-width:none;
  }

  .rose-product-options{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .rose-buy-choices{
    margin-top:2px;
  }

  .rose-buy-choice{
    min-height:48px;
  }

  .product-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .product-card{
    width:100%;
  }

  .product-visual{
    width:100%;
    aspect-ratio:3/4;
  }

  .product-image-base,
  .product-image-hover{
    width:100%;
    height:100%;
  }

}

@media(max-width:520px){

  .rose-product-options{
    grid-template-columns:1fr;
  }

  .rose-option{
    width:100%;
  }

  .rose-buy-choice{
    padding:12px 14px;
  }

  .mobile-side-controls{
    bottom:12px;
  }

  .product-quick-action{
    bottom:64px;
  }

}

/* =========================================================
   BANDEAU PROMOTIONNEL FIXE
   ========================================================= */

.promo-banner{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:99999;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 20px;
  box-sizing:border-box;
  background:var(--green-dark);
  color:var(--cream);
  border-bottom:1px solid rgba(244,239,227,.16);
  box-shadow:0 6px 20px rgba(0,0,0,.14);
}

.promo-banner-inner{
  width:100%;
  max-width:1400px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-family:'Work Sans',sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
  text-align:center;
}

.promo-banner-message{
  font-weight:700;
  text-transform:uppercase;
}

.promo-banner-separator{
  opacity:.45;
}

.promo-banner-code-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
}

.promo-banner-code-label{
  opacity:.68;
  font-size:9px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.promo-banner-code{
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.09em;
}

.promo-banner-copy{
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(244,239,227,.42);
  border-radius:999px;
  background:transparent;
  color:var(--cream);
  cursor:pointer;
  font-family:'Work Sans',sans-serif;
  font-size:9px;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.promo-banner-copy:hover,
.promo-banner-copy.is-copied{
  background:var(--cream);
  color:var(--green-dark);
  border-color:var(--cream);
}

.promo-banner-copy:hover{
  transform:translateY(-1px);
}

.promo-banner-countdown{
  color:rgba(244,239,227,.72);
  font-size:10px;
  font-weight:600;
  white-space:nowrap;
}


/* Le bandeau reste visible pendant tout le scroll. */
body:has(.promo-banner){
  padding-top:42px;
}

/* Le header sticky reste juste sous le bandeau promo. */
body:has(.promo-banner) .site-header.is-sticky{
  top:42px;
}

/* Le header initial démarre sous le bandeau, sans recouvrir le hero. */
body:has(.promo-banner) .site-header:not(.is-sticky){
  top:42px;
}


/* =========================================================
   BANDEAU PROMO — TABLETTE
   ========================================================= */

@media(max-width:980px){

  .promo-banner{
    min-height:44px;
    padding:7px 12px;
  }

  .promo-banner-inner{
    gap:8px;
    font-size:11px;
  }

  .promo-banner-code{
    font-size:12px;
  }

  .promo-banner-countdown{
    font-size:10px;
  }

  body:has(.promo-banner){
    padding-top:44px;
  }

  body:has(.promo-banner) .site-header.is-sticky,
  body:has(.promo-banner) .site-header:not(.is-sticky){
    top:44px;
  }

}


/* =========================================================
   BANDEAU PROMO — MOBILE
   ========================================================= */

@media(max-width:640px){

  .promo-banner{
    min-height:54px;
    padding:6px 10px;
  }

  .promo-banner-inner{
    flex-wrap:wrap;
    column-gap:7px;
    row-gap:3px;
    line-height:1.15;
    font-size:10px;
  }

  .promo-banner-message{
    width:100%;
    font-size:10px;
    line-height:1.25;
  }

  .promo-banner-separator{
    display:none;
  }

  .promo-banner-code-wrap{
    gap:6px;
  }

  .promo-banner-code-label{
    font-size:8px;
  }

  .promo-banner-code{
    font-size:11px;
  }

  .promo-banner-copy{
    min-height:25px;
    padding:0 8px;
    font-size:8px;
  }

  .promo-banner-countdown{
    font-size:9px;
  }

  body:has(.promo-banner){
    padding-top:54px;
  }

  body:has(.promo-banner) .site-header.is-sticky,
  body:has(.promo-banner) .site-header:not(.is-sticky){
    top:54px;
  }

}


/* =========================================================
   BANDEAU PROMO — TRÈS PETITS ÉCRANS
   ========================================================= */

@media(max-width:390px){

  .promo-banner{
    min-height:58px;
    padding-inline:8px;
  }

  .promo-banner-inner{
    column-gap:5px;
  }

  .promo-banner-message{
    font-size:9px;
  }

  .promo-banner-countdown{
    font-size:8px;
  }

  body:has(.promo-banner){
    padding-top:58px;
  }

  body:has(.promo-banner) .site-header.is-sticky,
  body:has(.promo-banner) .site-header:not(.is-sticky){
    top:58px;
  }

}
