/** Shopify CDN: Minification failed

Line 887:0 Unexpected "}"

**/
/* =============================================================
   Princess Room theme
   Reference: princessroom.fr (peach hero + rose-pink footer)
   ============================================================= */

/* ---------- 1. Design tokens (mirrors princessroom.fr) ------- */
:root{
  /* Colors — pulled from live site computed styles */
  --c-bg:           #ffffff;
  --c-text:         #050505;
  --c-heading:      #0b0b0b;
  --c-text-lighten: #383838;
  --c-muted:        rgba(5,5,5,.6);
  --c-hairline:     #f7f7f7;
  --c-line:         #e6e6e6;

  /* Brand pinks */
  --c-rose:         #f9dbe6;        /* primary accent + border */
  --c-rose-soft:    #fce6ea;        /* subtle wash */
  --c-rose-sale:    #efd7e5;        /* sale / saving badge */
  --c-rose-hover:   #f2afc8;        /* primary button hover */
  --c-rose-deep:    #e3588b;        /* darker accent */

  /* Aliases kept for legacy selectors */
  --c-peach:        #fce6ea;
  --c-peach-soft:   #fdf3f4;
  --c-promo:        #efd7e5;

  /* Status */
  --c-green:        #108474;        /* judge.me / "Voir les avis" */
  --c-success:      #56AD6A;
  --c-error:        #D02E2E;
  --c-star:         #f1b800;

  /* Fonts — body & headings = serif system stack (matches live site) */
  --f-display: "New York","Iowan Old Style","Apple Garamond",Baskerville,"Times New Roman","Droid Serif",Times,"Source Serif Pro",serif;
  --f-body:    "New York","Iowan Old Style","Apple Garamond",Baskerville,"Times New Roman","Droid Serif",Times,"Source Serif Pro",serif;
  --f-script:  "Pacifico", cursive;

  /* Radius */
  --r-sm:   8px;
  --r-md:   8px;
  --r-pill: 999px;
  --r-badge: 4px;

  /* Layout */
  --container: 1440px;
  --gutter:        20px;   /* mobile gutter */
  --inner:         16px;
  --grid-gutter:   20px;
  --section-y: clamp(20px, 3vw, 48px);

  /* Header */
  --header-h: 76px;

  /* Drawer */
  --drawer-w: 400px;

  /* Buttons */
  --btn-radius: 8px;
  --btn-tracking: .075em;
  --btn-lh: 1.53;

  /* Product images */
  --product-aspect: 130%;  /* media padding-top */
  --collection-aspect: 60%;
}
@media(min-width:768px){:root{--gutter:32px}}
@media(min-width:1024px){:root{--gutter:48px}}
@media(min-width:1280px){:root{--gutter:60px}}

/* ---------- 2. Base ------------------------------------------ */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  background:var(--c-bg);color:var(--c-text);
  font-family:var(--f-body);font-size:16px;line-height:1.55;
  font-weight:400;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img,svg,video,picture{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:transparent;color:inherit}
fieldset{border:0;padding:0;margin:0}
input,select,textarea{font:inherit;color:inherit}

h1,h2,h3,h4{
  font-family:var(--f-display);font-weight:400;letter-spacing:0;
  color:var(--c-heading);margin:0 0 .35em;
}
h1{font-size:clamp(28px,4.4vw,52px);line-height:1.1}
h2{font-size:clamp(22px,3vw,36px);line-height:1.18}
h3{font-size:clamp(18px,2vw,22px);line-height:1.25}
p{margin:0 0 .75em}
p:last-child{margin-bottom:0}

.container{max-width:var(--container);width:100%;margin-inline:auto;padding-inline:var(--gutter)}
section{padding-block:var(--section-y)}

.eyebrow{
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--c-text);margin:0 0 8px;font-weight:500;
}
.eyebrow--center{text-align:center}
.section-heading{margin:0 0 .8rem}
.section-heading--center{text-align:center;margin-inline:auto}
.rte > * + *{margin-top:1em}
.rte a{text-decoration:underline}
.link-underline{text-decoration:underline;text-underline-offset:4px}

.visually-hidden{position:absolute!important;clip:rect(0 0 0 0);clip-path:inset(50%);overflow:hidden;width:1px;height:1px;white-space:nowrap}
:focus-visible{outline:2px solid var(--c-green);outline-offset:2px;border-radius:4px}
.skip-to-content{position:absolute;left:-9999px;top:0;background:#000;color:#fff;padding:.75rem 1rem;z-index:9999}
.skip-to-content:focus{left:1rem;top:1rem}

/* ---------- 3. Buttons --------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55em;
  padding:12px 19px;font-size:14.4px;letter-spacing:var(--btn-tracking);text-transform:uppercase;
  border-radius:var(--btn-radius);font-weight:700;line-height:var(--btn-lh);
  font-family:var(--f-body);
  text-align:center;white-space:normal;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.btn--block{display:flex;width:100%}
.btn--sm{padding:9px 14px;font-size:12px}
.btn--lg{padding:14px 22px;font-size:14.4px}
.btn--pink{background:var(--c-rose);color:#000;border:0 solid var(--c-rose)}
.btn--pink:hover{background:var(--c-rose-hover)}
.btn--green{background:var(--c-green);color:#fff}
.btn--green:hover{filter:brightness(.95)}
.btn--white{background:#fff;color:var(--c-text);border:1px solid var(--c-line)}
.btn--outline{background:transparent;color:#000;border:1px solid #000}
.btn--outline:hover{background:#000;color:#fff}
.btn--pill{border-radius:var(--r-pill);padding:11px 22px}

/* ---------- 4. Stars / chips --------------------------------- */
.stars-row{display:inline-flex;gap:2px;color:var(--c-star);line-height:0}
.stars-row svg{width:16px;height:16px}
.stars-row--inline{vertical-align:middle}
.chip{
  display:inline-block;padding:5px 11px;border:1px solid var(--c-line);
  border-radius:var(--r-pill);background:#fff;font-size:12px;
  letter-spacing:.04em;color:var(--c-text);
}
.chip--verified{background:var(--c-rose-soft);border-color:var(--c-rose)}

/* ---------- 5. Announcement bar ------------------------------ */
.section-announcement{padding:0}
.announcement-bar{
  background:var(--c-peach);color:var(--c-text);
  overflow:hidden;line-height:1;height:34px;
  display:flex;align-items:center;
}
@media(min-width:768px){.announcement-bar{height:40px}}
.announcement-bar__track{
  display:flex;width:max-content;
  animation:marquee var(--marquee-duration,40s) linear infinite;
}
.announcement-bar__track:hover{animation-play-state:paused}
.announcement-bar__row{
  display:flex;align-items:center;
  gap:48px;margin:0;padding:0 24px 0 0;
  list-style:none;white-space:nowrap;
}
@media(min-width:768px){.announcement-bar__row{gap:90px;padding-right:45px}}
.announcement-bar__item{
  font-size:10px;letter-spacing:.08em;text-transform:uppercase;
  font-weight:600;line-height:1;
}
@media(min-width:768px){.announcement-bar__item{font-size:11px}}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---------- 6. Header ---------------------------------------- */
.section-header{padding:0}
.header{
  position:sticky;top:0;z-index:50;background:#fff;
  border-bottom:1px solid transparent;
  transition:box-shadow .2s ease,border-color .2s ease;
}
.header.is-scrolled{box-shadow:0 6px 22px rgba(0,0,0,.04);border-color:var(--c-line)}
.header__inner{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  height:var(--header-h);gap:8px;
}
.header__icon-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:var(--r-pill);position:relative;
  justify-self:start;
}
.header__cart{justify-self:end}
@media(hover:hover){
  .header__icon-btn:hover{background:var(--c-rose-soft)}
}
.header__icon-btn svg{width:22px;height:22px}
.header__cart-count{
  position:absolute;top:2px;right:0;min-width:16px;height:16px;
  padding:0 4px;border-radius:9px;background:var(--c-green);color:#fff;
  font-size:9px;font-weight:700;
  display:inline-flex;align-items:center;justify-content:center;
}
.header__logo{
  justify-self:center;font-family:var(--f-script);
  font-size:clamp(30px,5vw,46px);line-height:1;color:var(--c-text);
  white-space:nowrap;
}
.header__logo img{max-height:clamp(36px,5vw,52px);width:auto}

/* ---------- 7. Drawer ---------------------------------------- */
.drawer{position:fixed;inset:0;z-index:80;pointer-events:none}
.drawer[aria-hidden="false"]{pointer-events:auto}
.drawer__overlay{
  position:absolute;inset:0;background:rgba(0,0,0,.35);
  opacity:0;transition:opacity .25s ease;
}
.drawer[aria-hidden="false"] .drawer__overlay{opacity:1}
.drawer__panel{
  position:absolute;top:0;left:0;height:100%;
  width:min(var(--drawer-w),92vw);
  background:#fff;transform:translateX(-100%);
  transition:transform .4s cubic-bezier(.46,.01,.32,1);
  display:flex;flex-direction:column;
}
.drawer[aria-hidden="false"] .drawer__panel{transform:translateX(0)}

.drawer__header{
  display:flex;align-items:center;justify-content:flex-end;
  padding:14px 18px 4px;
}
.drawer__close{
  width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:var(--r-pill);
}
.drawer__close svg{width:22px;height:22px;stroke-width:1.6}
.drawer__close:hover{background:var(--c-rose-soft)}

.drawer__nav{padding:8px 28px 24px;flex:1 1 auto;overflow-y:auto}
.drawer__list,.drawer__sublist{list-style:none;padding:0;margin:0}
.drawer__item{display:block}
.drawer__item > a,
.drawer__details > summary{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:10px 0;
  font-family:var(--f-display);font-size:22px;font-weight:600;
  letter-spacing:-.005em;line-height:1.25;
  cursor:pointer;
}
.drawer__details > summary{list-style:none}
.drawer__details > summary::-webkit-details-marker{display:none}
.drawer__plus{
  position:relative;width:18px;height:18px;flex:0 0 auto;color:var(--c-text);
}
.drawer__plus::before,
.drawer__plus::after{
  content:"";position:absolute;top:50%;left:0;width:100%;height:1.5px;
  background:currentColor;transition:transform .2s ease;
}
.drawer__plus::after{transform:rotate(90deg)}
.drawer__details[open] .drawer__plus::after{transform:rotate(0)}
.drawer__sublist{padding:4px 0 8px 0;display:flex;flex-direction:column;gap:6px}
.drawer__sublist a{
  display:block;padding:6px 0;
  font-family:var(--f-body);font-size:15px;font-weight:400;
  color:var(--c-text);
}

.drawer__footer{
  padding:18px 28px 24px;border-top:0;
  display:flex;flex-direction:column;gap:12px;
}
.drawer__utility{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:10px;
}
.drawer__utility a{
  font-family:var(--f-display);font-size:17px;font-weight:600;letter-spacing:-.005em;
}
.drawer__selectors{display:flex;gap:14px;align-items:center;margin-top:6px}
.drawer__selector{display:inline-flex;gap:14px}
.drawer__selector select{
  border:0;background:transparent;font-size:13px;letter-spacing:.02em;
  padding:6px 18px 6px 0;cursor:pointer;color:var(--c-text);
  -webkit-appearance:none;appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%231a1a1a' stroke-width='1.4'><path d='M2 2l4 4 4-4'/></svg>");
  background-repeat:no-repeat;background-position:right center;background-size:10px 8px;
}

/* ---------- 8. Hero (full-bleed slideshow, matches princessroom.fr) */
.section-hero{padding:0}
.hero{
  position:relative;overflow:hidden;
  display:flex;align-items:flex-end;
  /* Mobile: portrait 7:10 aspect (matches 615px on 430px viewport) */
  aspect-ratio:7/10;
  color:#fff;background:#fee9f2;          /* fallback pink while image loads */
}
@media(min-width:750px){
  .hero{
    aspect-ratio:16/9;                     /* landscape on tablet/desktop */
    min-height:520px;
  }
}
@media(min-width:1200px){
  .hero{aspect-ratio:21/9;min-height:600px;max-height:760px}
}
.hero__media{position:absolute;inset:0}
.hero__media img,.hero__media .placeholder-svg{
  width:100%;height:100%;object-fit:cover;object-position:center;
}
.hero__media::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.35) 100%);
}
.hero__content{
  position:relative;z-index:1;
  display:flex;flex-direction:column;gap:14px;
  width:100%;max-width:760px;margin-inline:auto;
  padding:clamp(28px,6vw,64px) var(--gutter) clamp(36px,8vw,72px);
  text-align:center;align-items:center;
}
.hero__title{
  color:#fff;margin:0;text-shadow:0 2px 16px rgba(0,0,0,.22);
  font-style:italic;font-weight:400;
}
.hero__subheading{
  margin:0;color:#fff;
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  text-shadow:0 1px 8px rgba(0,0,0,.22);
}
.hero__content .stars-row svg{filter:drop-shadow(0 1px 4px rgba(0,0,0,.25))}

/* Text alignment variants — overlay only, never split */
.hero--align-left  .hero__content{align-items:flex-start;text-align:left;margin-inline:0 auto}
.hero--align-right .hero__content{align-items:flex-end;text-align:right;margin-inline:auto 0}
.hero--align-center .hero__content{align-items:center;text-align:center}

@media(min-width:900px){
  .hero__content{padding:clamp(40px,4vw,72px) clamp(40px,6vw,96px)}
  .hero__subheading{font-size:12px}
}

/* ---------- 9. Product card / grid --------------------------- */
/* Mobile: horizontal scroller showing ~2 cards + peek */
.product-grid{
  display:flex;gap:12px;
  overflow-x:auto;scroll-snap-type:x mandatory;
  margin-inline:calc(-1 * var(--gutter));
  padding:4px var(--gutter);
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.product-grid::-webkit-scrollbar{display:none}
.product-grid > *{
  flex:0 0 42%;scroll-snap-align:start;
}
@media(min-width:560px){
  .product-grid > *{flex-basis:32%}
}
@media(min-width:768px){
  .product-grid{
    display:grid;overflow:visible;
    margin-inline:0;padding:0;
    gap:clamp(12px,1.4vw,20px);
    grid-template-columns:repeat(2,1fr);
  }
  .product-grid > *{flex:initial}
  .product-grid--cols-3{grid-template-columns:repeat(3,1fr)}
  .product-grid--cols-4{grid-template-columns:repeat(4,1fr)}
  .product-grid--cols-5{grid-template-columns:repeat(4,1fr)}
}
@media(min-width:1280px){
  .product-grid--cols-5{grid-template-columns:repeat(5,1fr)}
}
/* Collection-page grid: always grid, 2-col mobile, N-col desktop */
.product-grid--collection{
  display:grid;overflow:visible;
  margin-inline:0;padding:0;
  grid-template-columns:repeat(2,1fr);
  gap:35px 14px;                   /* row-gap 35px (matches live), col-gap 14px */
  scroll-snap-type:none;
}
.product-grid--collection > *{flex:initial;scroll-snap-align:none}
@media(min-width:768px){
  .product-grid--collection{
    gap:clamp(20px,2.2vw,32px) clamp(12px,1.4vw,18px);
    grid-template-columns:repeat(3,1fr);
  }
  .product-grid--collection.product-grid--cols-2{grid-template-columns:repeat(2,1fr)}
  .product-grid--collection.product-grid--cols-3{grid-template-columns:repeat(3,1fr)}
  .product-grid--collection.product-grid--cols-4{grid-template-columns:repeat(4,1fr)}
  .product-grid--collection.product-grid--cols-5{grid-template-columns:repeat(4,1fr)}
}
@media(min-width:1280px){
  .product-grid--collection.product-grid--cols-5{grid-template-columns:repeat(5,1fr)}
}

.product-card{display:flex;flex-direction:column;gap:8px}
.product-card__media{
  position:relative;display:block;
  aspect-ratio:1/1;              /* square — matches live collection page */
  overflow:hidden;
  border-radius:var(--r-md);background:var(--c-rose-soft);
}
.product-card__img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transition:opacity .25s ease,transform .6s ease;
}
.product-card__img--secondary{opacity:0}
.product-card:hover .product-card__img--secondary{opacity:1}
.product-card:hover .product-card__img--primary{transform:scale(1.03)}
/* PROMOTION badge — princessroom.fr: 10px / weight 400 / 1px tracking / radius 4px / bg #efd7e5 */
.product-card__badge{
  position:absolute;top:10px;left:10px;background:var(--c-rose-sale);
  color:#000;font-size:10px;font-weight:400;letter-spacing:.1em;line-height:1.2;
  padding:6px 8px;border-radius:var(--r-badge);z-index:2;text-transform:uppercase;
}
/* Equal-height card bodies, button stuck to bottom */
.product-card{height:100%}
.product-card__body{
  display:flex;flex-direction:column;
  gap:4px;padding-top:6px;
  flex:1;                           /* fill parent height */
}
.product-card__title{
  min-height:2.5em;                 /* reserve 2 lines so 1- and 2-line titles align */
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.product-card__vendor{margin:0}
.product-card__price{margin:2px 0 0}
.product-card .btn{margin-top:auto}  /* pushes DISCOVER to bottom of card */
.product-card__title{
  font-family:var(--f-display);font-size:clamp(15px,2vw,17px);font-weight:500;
  margin:0;line-height:1.25;
}
.product-card__title a:hover{text-decoration:underline}
.product-card__vendor{color:var(--c-muted);font-size:12px;margin:0;letter-spacing:.02em}
.product-card__price{font-weight:600;font-size:14px;margin:4px 0}
.product-card .btn{margin-top:6px}

/* Placeholder state — for sections rendered without a real product assigned */
.product-card--placeholder{opacity:.55;filter:grayscale(.1)}
.product-card--placeholder .product-card__media{cursor:default}
.product-card--placeholder:hover .product-card__img--primary{transform:none}
.product-card__cta-disabled{
  cursor:not-allowed;pointer-events:none;
  background:var(--c-rose-soft)!important;color:var(--c-muted)!important;
  border-color:var(--c-rose-soft)!important;
}

.price{display:inline-flex;gap:8px;align-items:baseline}
.price__compare{color:var(--c-muted);font-weight:400}
.price--on-sale .price__current{color:var(--c-green)}

/* ---------- 10. Store rating card ---------------------------- */
.store-rating{padding-block:clamp(16px,2vw,32px)}
.store-rating__card{
  max-width:760px;margin-inline:auto;
  border:1px solid var(--c-line);border-radius:var(--r-md);
  background:var(--c-rose-soft);
  padding:clamp(20px,3vw,32px);
  text-align:center;display:flex;flex-direction:column;gap:14px;align-items:center;
}
.store-rating__head{display:flex;flex-direction:column;gap:6px;align-items:center}
.store-rating__head strong{font-weight:600;font-size:15px}
.store-rating__score{display:inline-flex;gap:8px;align-items:center;font-weight:600;font-size:14px}
.store-rating__count{color:var(--c-muted);font-weight:400}
.store-rating__body{margin:0;font-size:14px;color:var(--c-text);max-width:60ch}
.store-rating__disclaimer{margin:0;font-size:12px;color:var(--c-muted)}

/* ---------- 11. Collection tiles ----------------------------- */
.collection-tiles__grid{display:grid;gap:clamp(8px,1.2vw,16px);grid-template-columns:1fr}
@media(min-width:768px){.collection-tiles__grid{grid-template-columns:repeat(3,1fr)}}
.collection-tile{
  position:relative;display:block;
  aspect-ratio:4/5;              /* taller than wide — matches homepage tile look */
  border-radius:var(--r-md);overflow:hidden;background:var(--c-rose-soft);
}
.collection-tile__media{position:absolute;inset:0}
.collection-tile__media img,.collection-tile__media .placeholder-svg{
  width:100%;height:100%;object-fit:cover;transition:transform .6s ease;
}
.collection-tile:hover .collection-tile__media img{transform:scale(1.04)}
.collection-tile__label{
  position:absolute;left:22px;bottom:22px;color:#fff;
  text-shadow:0 1px 12px rgba(0,0,0,.35);
  display:flex;flex-direction:column;gap:6px;
}
.collection-tile__label h3{
  margin:0;font-size:clamp(22px,2.2vw,30px);
  color:#fff;letter-spacing:.06em;font-weight:500;
}
.collection-tile__cta{
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  border-bottom:1px solid currentColor;
  display:inline-block;padding-bottom:2px;align-self:flex-start;
}

/* ---------- 12. UGC grid (mobile scroller, desktop grid) ----- */
.ugc-grid{
  display:flex;gap:12px;
  overflow-x:auto;scroll-snap-type:x mandatory;
  margin-inline:calc(-1 * var(--gutter));
  padding:4px var(--gutter);
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.ugc-grid::-webkit-scrollbar{display:none}
.ugc-tile{flex:0 0 78%;scroll-snap-align:start;margin:0;display:flex;flex-direction:column;gap:8px}
@media(min-width:560px){.ugc-tile{flex-basis:45%}}
@media(min-width:768px){
  .ugc-grid{
    display:grid;overflow:visible;margin-inline:0;padding:0;
    gap:clamp(10px,1.2vw,16px);grid-template-columns:repeat(4,1fr);
  }
  .ugc-tile{flex:initial}
}
.ugc-tile__media{
  aspect-ratio:1/1;overflow:hidden;border-radius:var(--r-sm);
  background:var(--c-rose-soft);
}
.ugc-tile__media img{width:100%;height:100%;object-fit:cover}
.ugc-tile figcaption{font-size:12px;line-height:1.4}
.ugc-tile__loc{color:var(--c-muted)}
.ugc-tile figcaption strong{font-weight:600}
.ugc-tile__quote{font-style:italic;margin:4px 0 0;color:var(--c-text);font-size:12px}

/* ---------- 13. Featured duo (Le duo Iconique) --------------- */
.section-featured-duo{background:var(--c-rose-soft);padding-block:clamp(24px,3.5vw,56px)}
.featured-duo .container{display:flex;flex-direction:column;align-items:center;gap:12px}
.featured-duo h2{text-align:center;margin:0;font-size:clamp(24px,3vw,36px);max-width:24ch}
.featured-duo__sub{max-width:60ch;text-align:center}
.featured-duo__stage{
  position:relative;border-radius:var(--r-md);overflow:hidden;
  width:100%;max-width:1100px;background:#fff;margin-top:6px;
}
.featured-duo__bg{aspect-ratio:16/9;width:100%}
.featured-duo__bg img,.featured-duo__bg .placeholder-svg{width:100%;height:100%;object-fit:cover}
.featured-duo__hotspot{
  position:absolute;top:var(--y,50%);left:var(--x,50%);
  transform:translate(-50%,-50%);
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.9);
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.18);
}
.featured-duo__dot{width:10px;height:10px;background:var(--c-text);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(0,0,0,.25)}50%{box-shadow:0 0 0 10px rgba(0,0,0,0)}}
.featured-duo__card{
  position:absolute;top:var(--y,50%);left:var(--x,50%);
  transform:translate(-50%,calc(-100% - 24px));
  background:#fff;border-radius:var(--r-md);
  box-shadow:0 14px 40px rgba(0,0,0,.18);
  padding:14px;display:flex;gap:12px;align-items:center;
  width:min(320px,80vw);z-index:3;
}
.featured-duo__card[hidden]{display:none}
.featured-duo__card-close{position:absolute;top:6px;right:6px;width:26px;height:26px}
.featured-duo__card-media{flex:0 0 80px}
.featured-duo__card-media img{width:80px;height:80px;border-radius:var(--r-sm);object-fit:cover}
.featured-duo__card-body{flex:1;display:flex;flex-direction:column;gap:6px}
.featured-duo__card-body h3{margin:0;font-size:14px;font-family:var(--f-body);font-weight:600;letter-spacing:0}
.featured-duo__pill-wrap{margin-top:6px;text-align:center}

/* ---------- 14. Press / vision banner ------------------------ */
.section-press{padding:0}

/* Banner = full-bleed image with centered overlay. Height + fit controlled per editor setting */
.press-quote__banner{
  position:relative;overflow:hidden;background:var(--c-rose-soft);
}

/* Fixed-height modes — image cropped/letterboxed inside */
.press-quote__banner--short  { min-height:50vh }
.press-quote__banner--medium { min-height:70vh }
.press-quote__banner--tall   { min-height:85vh }
.press-quote__banner--full   { min-height:100vh }

/* Auto mode — image dictates the height, full image always visible */
.press-quote__banner--auto{
  min-height:0;
}
.press-quote__banner--auto > picture,
.press-quote__banner--auto > img,
.press-quote__banner--auto .placeholder-svg{
  position:relative;width:100%;height:auto;display:block;
}
.press-quote__banner--auto .press-quote__banner-content{position:absolute;inset:0}

@media(max-width:767px){
  .press-quote__banner--short  { min-height:60vh }
  .press-quote__banner--medium { min-height:75vh }
  .press-quote__banner--tall,
  .press-quote__banner--full   { min-height:90vh }
}

/* Default positioning of image inside fixed-height banners */
.press-quote__banner:not(.press-quote__banner--auto) > picture,
.press-quote__banner:not(.press-quote__banner--auto) > img,
.press-quote__banner:not(.press-quote__banner--auto) .placeholder-svg{
  position:absolute;inset:0;width:100%;height:100%;display:block;
}

/* Fit modes */
.press-quote__banner--fit-cover > picture img,
.press-quote__banner--fit-cover > img,
.press-quote__banner--fit-cover .placeholder-svg{object-fit:cover;width:100%;height:100%}

.press-quote__banner--fit-contain > picture img,
.press-quote__banner--fit-contain > img,
.press-quote__banner--fit-contain .placeholder-svg{object-fit:contain;width:100%;height:100%}

/* Make sure inner <img> inside <picture> follows the rules above */
.press-quote__banner > picture{display:block;width:100%;height:100%}
.press-quote__banner--auto > picture{height:auto}
.press-quote__banner > picture img{display:block;width:100%;height:100%}
.press-quote__banner--auto > picture img{height:auto}

.press-quote__banner-scrim{
  position:absolute;inset:0;background:#000;pointer-events:none;
}

.press-quote__banner-content{
  position:absolute;inset:0;
  display:flex;flex-direction:column;justify-content:center;
  padding:0 clamp(20px, 5vw, 64px);
  color:#fff;z-index:1;
}
.press-quote__banner-content--left   { align-items:flex-start; text-align:left }
.press-quote__banner-content--center { align-items:center;     text-align:center }
.press-quote__banner-content--right  { align-items:flex-end;   text-align:right }

.press-quote__banner-heading{
  color:#fff;margin:0 0 18px;
  font-family:var(--f-display);font-weight:400;font-style:italic;
  font-size:clamp(26px,4vw,46px);line-height:1.2;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
  max-width:14ch;
}
.press-quote__banner-content--left   .press-quote__banner-heading,
.press-quote__banner-content--right  .press-quote__banner-heading{max-width:18ch}

.press-quote__banner-link{
  display:inline-block;color:#fff;
  font-size:13px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  padding-bottom:4px;border-bottom:1px solid rgba(255,255,255,.85);
  transition:opacity .2s ease, border-color .2s ease;
}
.press-quote__banner-link:hover{opacity:.85;border-bottom-color:#fff}

/* Optional press quote block below banner */
.press-quote__quote-wrap{text-align:center;padding-block:clamp(24px,3.5vw,56px)}
.press-quote__quote{
  font-family:var(--f-display);font-style:italic;
  font-size:clamp(26px,3.6vw,42px);
  margin:0 0 24px;line-height:1.2;
}
.press-quote__logo{margin-inline:auto;height:32px;width:auto;object-fit:contain;opacity:.85}
.press-quote__logo--text{
  font-family:var(--f-display);font-style:italic;font-size:32px;margin:0;
}

/* ---------- 15. FAQ ------------------------------------------ */
.faq__inner{max-width:820px}
.accordion-item{border-bottom:1px solid var(--c-line)}
.accordion-item__summary{
  list-style:none;cursor:pointer;
  padding:13px 0;display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.accordion-item__summary::-webkit-details-marker{display:none}
.accordion-item__title{font-family:var(--f-body);font-size:14px;line-height:1.4;font-weight:500}
.accordion-item__indicator{position:relative;width:14px;height:14px;flex:0 0 auto}
.accordion-item__indicator::before,
.accordion-item__indicator::after{
  content:"";position:absolute;top:50%;left:0;width:100%;height:1px;
  background:currentColor;transition:transform .2s ease;
}
.accordion-item__indicator::after{transform:rotate(90deg)}
.accordion-item[open] .accordion-item__indicator::after{transform:rotate(0)}
.accordion-item__body{padding:0 0 12px;font-size:14px;color:var(--c-text)}

/* ---------- 16. Trust badges (rose bar) ---------------------- */
.section-trust{background:var(--c-rose-soft);padding-block:clamp(20px,2.4vw,32px)}
.trust-badges__grid{
  display:grid;gap:clamp(10px,1.6vw,22px);
  grid-template-columns:1fr;text-align:left;
}
@media(min-width:768px){.trust-badges__grid{grid-template-columns:repeat(3,1fr);align-items:center}}
.trust-badge{display:flex;gap:14px;align-items:flex-start;padding:4px 0}
.trust-badge img{width:32px;height:32px;flex:0 0 32px}
.trust-badge__icon{font-size:22px;color:var(--c-text);line-height:1;flex:0 0 auto}
.trust-badge__text strong{display:block;font-family:var(--f-display);font-size:17px;font-weight:500;margin-bottom:2px;line-height:1.2}
.trust-badge__text p{margin:0;color:var(--c-text);font-size:13px;opacity:.85;line-height:1.4}

/* ---------- 17. Footer (rose pink) --------------------------- */
.section-footer{background:var(--c-rose);color:var(--c-text);padding:0}
/* Round the top edge so the footer reads as a panel, like the live site */
.section-footer{border-top-left-radius:0;border-top-right-radius:0}
.footer{font-size:14px}
.footer__inner{padding:14px 0 18px;display:flex;flex-direction:column;gap:14px}

/* --- 17.1 Brand --- */
.footer__brand{
  display:flex;flex-direction:column;gap:4px;align-items:flex-start;
  max-width:160px;margin:0;
}
.footer__brand img{max-height:110px;max-width:100%;width:auto;height:auto;display:block}
.footer__brand-mark{
  display:block;color:var(--c-text);
  width:150px;max-width:100%;
}
.footer__brand-mark svg{width:100%;height:auto;display:block}
.footer__tagline{margin:2px 0 0;font-size:13px;opacity:.8}
@media(min-width:900px){
  .footer__brand{max-width:none}
  .footer__brand-mark{width:130px}
  .footer__brand img{max-height:120px}
}

/* --- 17.2 Top wrapper (mobile: stack, desktop: 4-col grid) --- */
.footer__top{display:flex;flex-direction:column;gap:0}
.footer__top > .footer__brand{margin-bottom:4px}

/* --- 17.3 Menu columns (mobile <details>) --- */
.footer__col--menu{border-top:1px solid rgba(0,0,0,.12)}
.footer__col--menu + .footer__col--menu{border-top:1px solid rgba(0,0,0,.12)}
.footer__top > details.footer__col--menu:last-of-type{border-bottom:1px solid rgba(0,0,0,.12)}
.footer__col-title{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:18px 0;margin:0;cursor:pointer;list-style:none;
  font-family:var(--f-body);font-weight:500;font-size:15px;letter-spacing:.01em;
}
.footer__col-title::-webkit-details-marker{display:none}
.footer__col-indicator{position:relative;width:14px;height:14px;flex:0 0 auto}
.footer__col-indicator::before,
.footer__col-indicator::after{
  content:"";position:absolute;top:50%;left:0;width:100%;height:1px;
  background:currentColor;transition:transform .2s ease;
}
.footer__col-indicator::after{transform:rotate(90deg)}
details[open] > .footer__col-title .footer__col-indicator::after{transform:rotate(0)}
.footer__col ul{
  list-style:none;padding:0 0 18px;margin:0;
  display:flex;flex-direction:column;gap:10px;
}
.footer__col ul a{font-size:14px}
.footer__col ul a:hover{text-decoration:underline}
.footer__col-empty{color:var(--c-muted);font-size:13px}

/* --- 17.4 Newsletter --- */
.footer__newsletter-title{
  font-family:var(--f-display);font-weight:500;
  font-size:clamp(22px,3vw,28px);line-height:1.15;
  text-transform:uppercase;letter-spacing:.01em;
  margin:24px 0 12px;
}
.footer__newsletter p{font-size:14px;line-height:1.5;margin:0 0 16px;opacity:.85}
.newsletter-form__row{
  display:flex;align-items:center;
  border:1px solid var(--c-text);border-radius:var(--r-pill);
  overflow:hidden;background:transparent;height:52px;
}
.newsletter-form__row input{
  flex:1;min-width:0;border:0;padding:0 18px;background:transparent;
  outline:0;font-size:14px;color:var(--c-text);
}
.newsletter-form__row input::placeholder{color:var(--c-text);opacity:.65}
.newsletter-form__row button{
  width:48px;height:100%;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;color:var(--c-text);
}
.newsletter-form__row button svg{width:18px;height:18px}
.newsletter-form__success{margin-top:10px;font-size:13px}

/* --- 17.5 Bottom row (mobile: stack, desktop: flex row) --- */
.footer__bottom{
  display:flex;flex-direction:column;gap:14px;
  margin-top:8px;
}
.footer__social{
  list-style:none;padding:0;margin:0;
  display:flex;gap:14px;align-items:center;flex-wrap:wrap;
}
.footer__social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  background:var(--c-text);color:#fff;
}
.footer__social svg{width:18px;height:18px}

.footer__selectors{display:flex;gap:14px;align-items:center}
.footer__selector{display:inline-flex;gap:14px}
.footer__selector select{
  border:0;background:transparent;font-size:13px;letter-spacing:.02em;
  padding:6px 18px 6px 0;cursor:pointer;color:var(--c-text);
  -webkit-appearance:none;appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%231a1a1a' stroke-width='1.4'><path d='M2 2l4 4 4-4'/></svg>");
  background-repeat:no-repeat;background-position:right center;background-size:10px 8px;
}

.footer__copy{margin:0;font-size:12px;opacity:.8}

.footer__payments{
  list-style:none;padding:0;margin:0;
  display:flex;gap:6px;flex-wrap:wrap;
}
.footer__payment-icon{height:22px;width:auto;border-radius:3px}

/* --- 17.6 Desktop layout --- */
@media(min-width:900px){
  .footer__inner{padding:32px 0 20px;gap:24px}

  .footer__top{
    display:grid;gap:24px 48px;
    grid-template-columns:auto 1fr 1fr 1.5fr;
    align-items:start;
  }
  /* Open menus, no borders, hide + indicator */
  .footer__col--menu,
  .footer__top > details.footer__col--menu:last-of-type{
    border:0;
  }
  .footer__col-title{cursor:default;padding:0 0 14px}
  .footer__col-indicator{display:none}
  /* Force the menu list visible regardless of [open] */
  details.footer__col--menu > ul{padding:0;display:flex}
  .footer__newsletter-title{margin-top:0}

  .footer__bottom{
    display:flex;flex-direction:row;flex-wrap:wrap;
    align-items:center;justify-content:space-between;
    gap:20px;margin-top:0;
  }
  .footer__copy{order:3;flex:1 1 auto;text-align:center}
  .footer__payments{order:4;justify-self:end}
}

/* ---------- 18. Product page --------------------------------- */
.section-main-product{padding-block:clamp(12px,2vw,32px)}
.main-product__grid{
  display:grid;
  gap:clamp(20px, 2vw, 40px);
  grid-template-columns:1fr;
}
@media(min-width:1024px){
  .main-product__grid{
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap:clamp(28px, 4vw, 64px);
    align-items:start;
  }
  /* Gallery sticks while reading the info column */
  .main-product__gallery{
    min-width:0;
    position:sticky;
    top:calc(var(--header-h, 76px) + 16px);
  }
  /* Cap image height so it never goes huge */
  .main-product__main-media{
    max-height:640px;
    aspect-ratio:1/1;
  }
  .main-product__main-media img,
  .main-product__main-media video{
    max-height:640px;
    object-fit:cover;
  }
  .main-product__info{display:flex;flex-direction:column;gap:8px}
.main-product__info > * + *{margin-top:0}
.main-product__title{margin-top:6px}
.main-product__price{margin-top:2px}
.main-product__tagline{margin-top:6px}
.main-product__atc{margin-top:12px}
.main-product__urgency{margin-top:8px}
.main-product__accordions{margin-top:10px}
  }
  /* ATC button & callouts feel less cramped */
  .main-product__atc{width:100%}
  .main-product__urgency{margin-top:6px}
  .main-product__accordions{margin-top:14px}
}
@media(min-width:1280px){
  .main-product__grid{
    grid-template-columns: minmax(0, 1fr) 460px;
  }
}

/* Product gallery — swipeable strip on touch, click thumbnails to navigate */
.main-product__main-media{
  position:relative;
  display:flex;overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x mandatory;scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;touch-action:pan-y pinch-zoom;
  border-radius:var(--r-md);background:var(--c-rose-soft);
  scrollbar-width:none;  
    margin-bottom:0;               /* Firefox */
}
.main-product__main-media::-webkit-scrollbar{display:none}  /* WebKit */
.main-product__main-media .placeholder-svg{width:100%;height:100%;object-fit:cover}
.main-product__media-item{
  flex:0 0 100%;scroll-snap-align:start;scroll-snap-stop:always;
  aspect-ratio:1/1;position:relative;
}
.main-product__media-item img,
.main-product__media-item video{
  width:100%;height:100%;object-fit:cover;display:block;
  pointer-events:none;                 /* let parent capture swipe */
}
/* Promotion badge on main product gallery — same style as card badge */
.main-product__badge{
  position:absolute;top:14px;left:14px;background:var(--c-rose-sale);color:#000;
  font-size:10px;font-weight:400;letter-spacing:.1em;line-height:1.2;padding:6px 8px;
  border-radius:var(--r-badge);text-transform:uppercase;z-index:2;
}
/* Mobile dot indicators under the gallery */
.main-product__dots{
  display:flex;justify-content:center;gap:8px;margin:10px 0 0;
}
.main-product__dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(0,0,0,.18);transition:background .2s ease,transform .2s ease;
  padding:0;border:0;
}
.main-product__dot.is-active{background:var(--c-text);transform:scale(1.15)}

.main-product__thumbs{
  display:none;                          /* hidden on mobile (dots take over) */
  margin-top:12px;gap:8px;overflow-x:auto;
  scroll-snap-type:x mandatory;padding-bottom:4px;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.main-product__thumbs::-webkit-scrollbar{display:none}
@media(min-width:768px){
  .main-product__dots{display:none}
  .main-product__thumbs{display:flex}
}
.main-product__thumb{
  flex:0 0 80px;height:80px;border-radius:var(--r-sm);overflow:hidden;
  border:1px solid var(--c-line);position:relative;background:var(--c-rose-soft);
  cursor:pointer;transition:border-color .2s ease;
  scroll-snap-align:start;
}
.main-product__thumb img{width:100%;height:100%;object-fit:cover}
.main-product__thumb.is-active{border-color:var(--c-text)}
.main-product__thumb-play{
  position:absolute;inset:0;display:grid;place-items:center;
  color:#fff;background:rgba(0,0,0,.2);font-size:14px;
}

.main-product__info{display:flex;flex-direction:column;gap:14px}
.main-product__rating{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--c-muted);line-height:1.55}
/* Title — princessroom.fr: 26.88px / line-height 33.6px / weight 400 / serif */
.main-product__title{margin:4px 0 0;font-size:clamp(24px,3.2vw,28px);line-height:1.25;font-weight:400;font-family:var(--f-display);color:var(--c-heading)}
.main-product__price{font-size:16px;font-weight:400;display:inline-flex;align-items:baseline;gap:12px;flex-wrap:wrap}
.main-product__price .price__current{font-weight:600;font-size:17px}
/* Compare price — princessroom.fr: 19.4px / weight 700 / opacity 0.5 / strikethrough */
.main-product__price .price__compare,
.main-product__price s{font-size:clamp(17px,1.4vw,19.4px);font-weight:700;opacity:.5;text-decoration:line-through}
.main-product__price .price--on-sale .price__current{color:var(--c-heading)}
.main-product__tagline{font-weight:600;font-size:15px;line-height:1.55;margin:0;color:var(--c-text)}
.main-product__desc{color:var(--c-text);font-size:14px;line-height:1.55}
.main-product__features{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:4px;max-width:420px}
/* Feature bullets — princessroom.fr: 13px / line-height 18.2px / color #3b2f2a / pink check */
.main-product__features li{display:flex;align-items:flex-start;gap:8px;font-size:13px;line-height:1.4;color:#3b2f2a}
.main-product__features svg{color:var(--c-rose-hover);width:16px;height:16px;flex-shrink:0;margin-top:2px}

.main-product__variants{display:flex;flex-direction:column;gap:12px;margin:6px 0}
.variant-option__label{font-size:12px;font-weight:600;margin-bottom:8px;text-transform:uppercase;letter-spacing:.06em}
.variant-option__values{display:flex;flex-wrap:wrap;gap:8px}
.variant-swatch{position:relative;cursor:pointer}
.variant-swatch input{position:absolute;opacity:0;pointer-events:none}
.variant-swatch span{
  display:inline-block;padding:8px 14px;border:1px solid var(--c-line);
  border-radius:var(--r-sm);font-size:13px;background:#fff;
}
.variant-swatch input:checked + span{border-color:var(--c-text);background:var(--c-rose-soft)}
.variant-swatch input:focus-visible + span{outline:2px solid var(--c-green);outline-offset:2px}

/* ATC button — princessroom.fr: 11.8px 19px / 14.4px / weight 700 / letter-spacing 0.075em / line-height 1.53 / radius 8px */
.main-product__atc{
  flex-wrap:wrap;gap:10px;
  padding:11.8px 19px;
  font-size:14.4px;font-weight:700;line-height:1.53;
  letter-spacing:.075em;text-transform:uppercase;
  border-radius:8px;
}
.main-product__atc-price{display:inline-flex;gap:8px;font-weight:700;letter-spacing:.075em;font-size:14.4px}
.main-product__atc-price s{opacity:.5;font-weight:700}
.main-product__urgency{
  background:var(--c-rose-soft);color:var(--c-text);
  padding:12px 14px;border-radius:var(--r-sm);font-size:13px;
  border:1px dashed var(--c-rose-hover);
}
.main-product__accordions{margin-top:8px}

/* Trust badges row inside product info */
.main-product__trust{
  list-style:none;padding:0;margin:8px 0 0;
  display:grid;grid-template-columns:repeat(2,1fr);gap:10px;
}
@media(min-width:560px){.main-product__trust{grid-template-columns:repeat(3,1fr)}}
.main-product__trust li{
  display:flex;align-items:center;gap:8px;
  font-size:12px;line-height:1.2;
  padding:8px 10px;border:1px solid var(--c-line);border-radius:var(--r-sm);
  background:#fff;
}
.main-product__trust img{flex:0 0 auto}

/* Custom text block */
.main-product__custom-text{margin-top:8px;font-size:14px}
.main-product__custom-text h3{margin:0 0 6px;font-size:16px}

/* Sticky ATC (mobile only) */
.main-product__sticky-atc{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:50;
  background:#fff;border-top:1px solid var(--c-line);
  padding:10px 14px;gap:12px;align-items:center;justify-content:space-between;
  box-shadow:0 -2px 16px rgba(0,0,0,.06);
}
.main-product__sticky-atc-info{display:flex;flex-direction:column;gap:2px;font-size:12px;min-width:0}
.main-product__sticky-atc-info strong{font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:60vw}
@media(max-width:767px){
  .main-product__sticky-atc{display:flex}
  body:has(.main-product__sticky-atc){padding-bottom:64px}
}

.mini-reviews{
  position:relative;border:1px solid var(--c-line);border-radius:var(--r-md);
  padding:16px 44px;margin-top:6px;overflow:hidden;
}
.mini-reviews__track{display:flex;transition:transform .35s ease}
.mini-reviews__item{flex:0 0 100%;display:flex;flex-direction:column;gap:6px;font-size:13px}
.mini-reviews__item p{margin:0;font-style:italic}
.mini-reviews__nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:30px;height:30px;border-radius:50%;background:#fff;
  border:1px solid var(--c-line);font-size:18px;
  display:inline-flex;align-items:center;justify-content:center;
}
.mini-reviews__nav--prev{left:6px}
.mini-reviews__nav--next{right:6px}

/* Product UGC scroller */
.product-ugc__scroller{
  display:flex;gap:14px;overflow-x:auto;
  scroll-snap-type:x mandatory;padding-bottom:10px;-webkit-overflow-scrolling:touch;
}
.product-ugc__item{flex:0 0 70%;scroll-snap-align:start;margin:0}
@media(min-width:768px){.product-ugc__item{flex-basis:300px}}
.product-ugc__item img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:var(--r-sm)}
.product-ugc__item figcaption{font-size:12px;margin-top:8px}
.product-ugc__item p{margin:4px 0 0;font-style:italic;color:var(--c-text)}

/* Product story */
.section-product-story{background:var(--c-rose-soft)}
.product-story__grid{
  display:grid;gap:clamp(20px,3vw,40px);
  grid-template-columns:1fr;align-items:center;
}
@media(min-width:1024px){.product-story__grid{grid-template-columns:1fr 1fr}}
.product-story__media img,.product-story__media .placeholder-svg,
.product-story__media picture img{
  width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:var(--r-md);
  display:block;
}
.product-story__heading{margin:.2em 0 .5em}
.product-story__bullets{
  list-style:none;padding:0;margin:14px 0;
  display:grid;gap:8px;
}
.product-story__bullets li{
  display:flex;align-items:flex-start;gap:10px;font-size:14px;line-height:1.45;
}
.product-story__bullets svg{flex:0 0 18px;width:18px;height:18px;color:var(--c-rose-hover);margin-top:2px}
/* Layout swap (desktop only) */
@media(min-width:1024px){
  .product-story--right .product-story__media{order:2}
  .product-story--right .product-story__body{order:1}
}

/* Product reviews */
.product-reviews__head{
  display:flex;flex-wrap:wrap;gap:12px;
  justify-content:space-between;align-items:flex-end;margin-bottom:12px;
}
.product-reviews__rating{display:flex;gap:8px;align-items:center;font-size:14px;color:var(--c-muted)}
.product-reviews__tags{
  list-style:none;padding:0;margin:0 0 18px;
  display:flex;flex-wrap:wrap;gap:8px;
}
.product-reviews__photos{display:flex;gap:8px;overflow-x:auto;margin-bottom:12px}
.product-reviews__photos img{width:80px;height:80px;object-fit:cover;border-radius:var(--r-sm);flex:0 0 auto}
/* --- Product reviews grid (desktop fix) --- */
.product-reviews__grid{
  display:grid;
  gap:16px;
  grid-template-columns:1fr;
}
@media(min-width:768px){
  .product-reviews__grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
}
@media(min-width:1024px){
  .product-reviews__grid{
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }
}
.review-card{
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  page-break-inside:avoid;
  align-self:start;
  display:flex;flex-direction:column;gap:10px;
  padding:18px;
  background:#fff;
  border:1px solid var(--c-line, #e6e6e6);
  border-radius:8px;
}
.review-card__head{display:flex;align-items:center;gap:8px;justify-content:space-between}
.review-card__name{margin:0;display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.review-card__title{margin:0;font-size:15px;font-weight:600;line-height:1.3}
.review-card__body{margin:0;font-size:14px;line-height:1.5;color:var(--c-text)}
.review-card__media{display:flex;gap:8px;flex-wrap:wrap;margin-top:4px}
.review-card__media img{
  width:84px;height:84px;object-fit:cover;border-radius:8px;display:block;
}
.review-card__date{margin:0;font-size:12px;color:var(--c-muted)}
.review-card{
  margin:0;background:#fafafa;border-radius:14px;padding:22px;
  display:flex;flex-direction:column;gap:12px;
  font-size:14px;line-height:1.5;
}
.review-card__head{display:flex;justify-content:space-between;align-items:center;gap:8px}
.review-card__head .stars-row{
  color:var(--c-green);display:inline-flex;gap:4px;
  font-size:22px;line-height:1;
}
.review-card__head .stars-row svg{width:1em;height:1em}
.review-card__head .stars-row .stars-row__empty{color:rgba(0,0,0,.18)}

.review-card__name{
  margin:0;display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-size:15px;
}
.review-card__name strong{font-weight:700}
.review-card__name .chip--verified{
  border:1px solid rgba(0,0,0,.18);background:transparent;color:var(--c-text);
  padding:3px 9px;border-radius:999px;font-size:11px;font-weight:400;line-height:1;
}

.review-card__title{margin:0;font-size:14px;font-family:var(--f-body);font-weight:600}
.review-card__body{margin:0;color:var(--c-text)}

/* Photo thumbnails inside the card — small and lined up */
.review-card__media{
  display:flex;gap:8px;flex-wrap:wrap;margin-top:4px;
}
.review-card__media img{
  width:84px;height:84px;
  object-fit:cover;border-radius:10px;
  flex:0 0 auto;display:block;
}
@media(min-width:768px){
  .review-card__media img{width:90px;height:90px}
}

.review-card__date{margin:0;font-size:12px;color:var(--c-muted)}
/* ---------- 19. Collection / page / 404 / cart --------------- */
.main-collection{padding-block:clamp(16px,2.4vw,40px)}
.main-collection__head{margin:0 0 clamp(12px,1.8vw,24px);text-align:center}
.main-collection__head .section-heading{margin:0 0 8px}
.main-collection__desc{max-width:60ch;margin:0 auto;color:var(--c-muted);font-size:14px}
.main-collection__count{margin:10px 0 0;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--c-muted)}
.main-collection__empty{padding:48px 0;text-align:center;color:var(--c-muted)}

.pagination{display:flex;gap:6px;justify-content:center;margin-top:clamp(18px,2.4vw,28px);font-size:13px;flex-wrap:wrap}
.pagination__link,.pagination__current{
  min-width:36px;padding:8px 12px;border-radius:var(--r-sm);
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid var(--c-line);background:#fff;
}
.pagination__link:hover{background:var(--c-rose-soft);border-color:var(--c-rose)}
.pagination__current{background:var(--c-rose);border-color:var(--c-rose);font-weight:600}

.not-found__inner{text-align:center;max-width:520px;margin:60px auto}
.password-page__inner{
  text-align:center;max-width:480px;margin:80px auto;padding:32px;
  background:var(--c-rose-soft);border-radius:var(--r-md);
}
.password-form{display:flex;flex-direction:column;gap:10px;align-items:center}
.password-form input{padding:12px 14px;border:1px solid var(--c-line);border-radius:var(--r-sm);min-width:220px}

.cart-items{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:14px}
.cart-item{display:grid;grid-template-columns:90px 1fr;gap:14px;border-bottom:1px solid var(--c-line);padding-bottom:14px}
.cart-item__media img{border-radius:var(--r-sm)}
.cart-item__row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:6px}
.cart-item__row input{width:64px;padding:6px 8px;border:1px solid var(--c-line);border-radius:var(--r-sm)}
.cart-summary{
  margin-top:18px;padding:18px;border:1px solid var(--c-line);
  border-radius:var(--r-md);background:var(--c-rose-soft);
  display:flex;flex-direction:column;gap:12px;
}
.cart-summary p{margin:0;display:flex;justify-content:space-between}
.cart-summary span{font-weight:700}

.placeholder-svg{background:var(--c-rose-soft);color:var(--c-muted)}

/* ---------- 20. Print / motion ------------------------------- */
@media print{
  .header,.announcement-bar,.drawer,.main-product__atc,.section-footer{display:none!important}
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .announcement-bar__track{animation:none;transform:none}
}
