/* ==========================================================================
   BLUSH & BRASS — v30 "Editorial" stylesheet
   A minimalist, elegant, expensive-feeling design system: brown / black /
   gold / white / blush pink. Generous whitespace, thin hairlines, serif
   headings, tracked-out sans labels. Built fresh — does not depend on the
   legacy style.css.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --ink:            #1B140F;   /* near-black warm */
  --espresso:       #2E2019;   /* deep brown */
  --espresso-mid:   #4A3527;   /* mid brown */
  --taupe:          #8A7768;   /* muted brown-grey for secondary text */
  --gold:           #B8925A;   /* muted antique brass */
  --gold-bright:    #C9A227;   /* brighter brass for accents/hover */
  --ivory:          #FAF6F0;   /* warm off-white */
  --paper:          #F3ECE3;   /* slightly deeper warm neutral for section bands */
  --blush:          #F0D9D6;   /* soft blush pink */
  --blush-deep:      #E3B9B9;  /* deeper blush for accents */
  --blush-text:      #D9A79B;  /* light dusty rose, sampled from the B&B heart mark */
  --blush-light:     #F3D9D2;  /* extra-light blush for soft fills */
  --line:           rgba(27,20,15,0.12);
  --line-gold:      rgba(184,146,90,0.45);
  --shadow-soft:    0 24px 60px rgba(27,20,15,0.10);
  --radius:         2px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--espresso-mid); font-weight: 300; }
p.lead { font-size: 1.08rem; color: var(--taupe); max-width: 560px; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.center { text-align: center; }
.center p.lead { margin-left: auto; margin-right: auto; }

/* ---------- Hairline dividers & rules ---------- */
.hr-gold {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
  border: none;
}
.hr-gold.left { margin-left: 0; }
.hr-blush {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--blush-text);
  margin: 14px auto;
}
.section-line { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Buttons ---------- */
.btn-v30 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.35s ease;
  cursor: pointer;
}
.btn-v30:hover { background: var(--ink); color: var(--ivory); }
.btn-v30.solid { background: var(--ink); color: var(--ivory); }
.btn-v30.solid:hover { background: var(--espresso-mid); }
.btn-v30.gold { border-color: var(--gold); color: var(--gold); }
.btn-v30.gold:hover { background: var(--gold); color: var(--ivory); }
.btn-v30.on-dark { border-color: rgba(250,246,240,0.55); color: var(--ivory); }
.btn-v30.on-dark:hover { background: var(--ivory); color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-band { background: var(--paper); }
.section-dark { background: var(--espresso); color: var(--ivory); }
.section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark p { color: rgba(250,246,240,0.72); }
.section-blush { background: var(--blush); }

/* ---------- Header ---------- */
.hdr-v30 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-v30 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.hdr-logo {
  font-family: 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.hdr-logo .mark { font-size: 1.7rem; color: var(--ink); letter-spacing: 0.02em; }
.hdr-logo .mark-img { width: 44px; height: 44px; object-fit: contain; display: block; }
.hdr-logo .sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.hdr-nav { display: flex; gap: 16px; align-items: center; }
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-dropdown-trigger { cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > .nav-dropdown-trigger svg { width: 9px; height: 9px; transition: transform 0.15s ease; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(27,20,15,0.16);
  padding: 8px;
  padding-top: 18px;
  margin-top: -10px;
  min-width: 190px;
  z-index: 20;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown:hover > .nav-dropdown-trigger svg,
.nav-dropdown.open > .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px !important;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.86rem;
}
.nav-dropdown-menu a:hover { background: rgba(184,146,90,0.1); color: var(--gold); }
@media (max-width: 1220px) {
  .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; margin-top: 4px; min-width: 0; }
}
.hdr-nav a {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso-mid);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}
.hdr-nav a:hover, .hdr-nav a.active { color: var(--gold); }
.hdr-nav .tag {
  font-size: 0.52rem;
  letter-spacing: 0.05em;
  color: var(--blush-text);
  border: 1px solid var(--blush-deep);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hdr-actions { display: flex; align-items: center; gap: 22px; }
.hdr-actions button {
  background: none; border: none; cursor: pointer; color: var(--ink);
  display: flex; align-items: center;
}
.hdr-actions svg { width: 18px; height: 18px; }
.hdr-basket-count {
  font-size: 0.62rem;
  color: var(--gold);
  margin-left: 3px;
}
.hdr-burger { display: none; }
/* ---------- Scrolling distributor banner ---------- */
.marquee-banner {
  background: var(--blush);
  border-top: 1.5px solid var(--gold-bright);
  border-bottom: 1.5px solid var(--gold-bright);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.marquee-track { display: inline-flex; width: max-content; animation: marquee-scroll 24s linear infinite; }
.marquee-set {
  display: inline-flex; align-items: center; padding: 9px 0;
  font-family: 'Jost', sans-serif; font-size: 0.74rem; letter-spacing: 0.16em; font-weight: 600;
  color: var(--espresso-mid); text-transform: uppercase;
}
.marquee-star { color: var(--gold-bright); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 680px) { .marquee-set { font-size: 0.62rem; letter-spacing: 0.1em; } }
@media (max-width: 1220px) {
  .hdr-nav { display: none; }
  .hdr-burger { display: flex; }
  .hdr-v30.nav-open .hdr-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 26px 32px 32px;
    gap: 20px;
    box-shadow: 0 24px 40px -12px rgba(27,20,15,0.2);
    border-bottom: 1px solid var(--line);
  }
  .hdr-v30.nav-open .hdr-nav a { font-size: 0.82rem; letter-spacing: 0.1em; }
}

/* ---------- Hero ---------- */
.hero-v30 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-v30 .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.72;
}
.hero-v30::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,20,15,0.45) 0%, rgba(27,20,15,0.26) 45%, rgba(27,20,15,0.65) 100%);
}
.hero-v30 .hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 32px; }
.hero-v30 .eyebrow { color: var(--gold); }
.hero-v30 h1 { color: var(--ivory); }
.hero-v30 p.lead { color: rgba(250,246,240,0.82); margin-left: auto; margin-right: auto; }
.hero-v30 .hero-actions { display: flex; gap: 18px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.hero-trust .hero-stars { display: inline-flex; gap: 2px; }
.hero-trust .hero-stars svg { width: 17px; height: 17px; fill: var(--gold-bright); }
.hero-trust span.hero-trust-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,246,240,0.85); }
.hero-insta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; padding: 9px 20px;
  border: 1px solid rgba(250,246,240,0.5);
  border-radius: 999px;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.hero-insta svg { width: 15px; height: 15px; }
.hero-insta:hover { border-color: var(--gold); background: rgba(250,246,240,0.08); }

/* ---------- Instagram feed ---------- */
.insta-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.insta-head .insta-handle { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--ink); }
.insta-follow { border: 1px solid var(--gold); border-radius: 999px; padding: 8px 20px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); transition: background 0.25s ease, color 0.25s ease; }
.insta-follow:hover { background: var(--gold); color: var(--ivory); }
.insta-grid-v30 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta-tile { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--paper); }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-tile:hover img { transform: scale(1.07); }
.insta-tile::after { content: "\2764"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--ivory); font-size: 1.3rem; background: rgba(27,20,15,0.38); opacity: 0; transition: opacity 0.3s ease; }
.insta-tile:hover::after { opacity: 1; }
.insta-block + .insta-block { margin-top: 54px; }
@media (max-width: 860px) { .insta-grid-v30 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Pillars (Beauty / Confidence / Comfort) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}
.pillar .pillar-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blush-text);
  margin-bottom: 10px;
  display: block;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 0.92rem; }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- Split editorial (image + text) ---------- */
.split-v30 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split-v30 .split-media { position: relative; overflow: hidden; }
.split-v30 .split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-v30 .split-media.product-shot { background: linear-gradient(160deg, var(--ivory), var(--paper)); display: flex; align-items: center; justify-content: center; }
.split-v30 .split-media.product-shot img { width: 62%; height: 62%; object-fit: contain; }
.split-badge {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: rgba(250,246,240,0.94);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 7px 18px 7px 7px;
  box-shadow: 0 14px 30px -12px rgba(27,20,15,0.28);
}
.split-badge img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.split-badge span { font-size: 0.7rem; letter-spacing: 0.05em; color: var(--ink); font-family: 'Jost', sans-serif; white-space: nowrap; }
.split-badge .badge-logo-wide { width: auto; height: 18px; border-radius: 0; object-fit: contain; }
.split-badge .badge-x { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--taupe); }

/* ---------- Shop duo/trio (Ciaobrow / Furniture / B&B Range side by side) ---------- */
.shop-duo-v30 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.shop-duo-v30.shop-trio-v30 { grid-template-columns: 1fr 1fr 1fr; gap: 38px; }
.shop-duo-card .duo-media {
  position: relative; overflow: hidden; aspect-ratio: 4/5; margin-bottom: 26px;
  border-radius: 20px; border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 24px 42px -18px rgba(27,20,15,0.20), 0 8px 18px -10px rgba(27,20,15,0.10);
}
.shop-duo-card .duo-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-duo-card .duo-media.product-shot { background: linear-gradient(160deg, var(--ivory), var(--paper)); display: flex; align-items: center; justify-content: center; }
.shop-duo-card .duo-media.product-shot img { width: 62%; height: 62%; object-fit: contain; }
.shop-duo-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.shop-duo-card p { max-width: 440px; margin-bottom: 24px; }
@media (max-width: 860px) { .shop-duo-v30, .shop-duo-v30.shop-trio-v30 { grid-template-columns: 1fr; gap: 46px; } }
@media (min-width: 861px) and (max-width: 1180px) { .shop-duo-v30.shop-trio-v30 { grid-template-columns: 1fr 1fr; } }
.split-v30 .split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px;
}
.split-v30.reverse { direction: rtl; }
.split-v30.reverse .split-text { direction: ltr; }
.split-v30.reverse .split-media { direction: ltr; }
@media (max-width: 860px) {
  .split-v30, .split-v30.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-v30 .split-media { aspect-ratio: 4/3; }
  .split-v30 .split-text { padding: 56px 32px; }
}

/* ---------- Card grid (categories) ---------- */
.card-grid-v30 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.card-v30 { display: block; }
.card-v30 .card-media {
  position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--paper); margin-bottom: 22px;
  border-radius: 20px;
  box-shadow: 0 24px 42px -18px rgba(27,20,15,0.20), 0 8px 18px -10px rgba(27,20,15,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-v30 .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card-v30:hover .card-media img { transform: scale(1.04); }
.card-v30:hover .card-media {
  transform: translateY(-5px);
  box-shadow: 0 30px 52px -18px rgba(27,20,15,0.24), 0 12px 22px -10px rgba(27,20,15,0.12);
}
.card-v30 h3 { margin-bottom: 6px; font-size: 1.1rem; }
.card-v30 .card-link {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  transition: color 0.25s ease;
}
.card-v30 .card-link::after { content: "→"; transition: transform 0.25s ease; }
.card-v30:hover .card-link { color: var(--blush-text); }
.card-v30:hover .card-link::after { transform: translateX(4px); }
.card-v30 .card-media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.card-v30:hover .card-media::after { border-color: var(--blush-deep); }
@media (max-width: 860px) { .card-grid-v30 { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 560px) { .card-grid-v30 { grid-template-columns: 1fr; } }

/* Shop-All category tiles (Brows / Lashes / Furniture) — original layout, gold border accent */
#categorySelect .cat-tile .card-media { border: 2px solid var(--gold); }

/* ---------- Product detail ---------- */
.pd-grid-v30 { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.pd-media {
  position: relative;
  background: linear-gradient(160deg, var(--ivory), var(--paper)); border: 1px solid rgba(255,255,255,0.6); border-radius: 22px;
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden;
  box-shadow: 0 28px 48px -18px rgba(27,20,15,0.20), 0 10px 20px -10px rgba(27,20,15,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}
.pd-media img { width: 78%; height: 78%; object-fit: contain; }
.pd-vis-thumb {
  position: absolute; right: 16px; bottom: 16px; width: 96px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 14px;
  box-shadow: 0 10px 20px -8px rgba(27,20,15,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6px 6px 5px;
}
.pd-vis-thumb img { width: 100%; height: 80px; object-fit: contain; }
.pd-vis-thumb span {
  margin-top: 2px; font-family: 'Jost', sans-serif; font-size: 8.5px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--taupe); white-space: nowrap;
}
.pd-info { padding-top: 10px; }
.pd-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); margin: 6px 0 20px; }
.pd-price-pending { font-family: 'Jost', sans-serif; font-size: 1rem; letter-spacing: 0.02em; text-transform: uppercase; }
.pt-price-pending { text-transform: uppercase; letter-spacing: 0.01em; }
@media (max-width: 780px) { .pd-grid-v30 { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Colourway swatch picker (furniture product pages) ---------- */
.colourway-swatch-block { margin-top: 22px; }
.colourway-swatch-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; max-width: 420px; }
.colourway-swatch-tile {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none;
}
.colourway-swatch-img {
  width: 100%; aspect-ratio: 1/1; border-radius: 10px; background-size: cover; background-position: center;
  border: 2px solid transparent; box-shadow: 0 6px 14px -6px rgba(27,20,15,0.3); transition: transform 0.2s ease, border-color 0.2s ease;
}
.colourway-swatch-tile:hover .colourway-swatch-img { transform: translateY(-2px); }
.colourway-swatch-tile.is-current .colourway-swatch-img { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,159,90,0.25), 0 6px 14px -6px rgba(27,20,15,0.3); }
.colourway-swatch-label { font-family: 'Jost', sans-serif; font-size: 0.56rem; letter-spacing: 0.02em; text-align: center; color: var(--taupe); line-height: 1.2; }
@media (max-width: 480px) { .colourway-swatch-grid { grid-template-columns: repeat(3, 1fr); max-width: none; } }

/* ---------- Swatch wall (trust image, all product pages) ---------- */
.pd-swatch-wall { grid-column: 1 / -1; margin-top: 40px; text-align: center; }
.pd-swatch-wall img { width: 100%; max-width: 640px; border-radius: 18px; box-shadow: 0 20px 40px -18px rgba(27,20,15,0.25); }
.pd-swatch-wall p { font-family: 'Jost', sans-serif; font-size: 0.8rem; color: var(--taupe); margin-top: 14px; }

/* ---------- Swatch trio (3 clickable leather swatches, furniture product pages) ---------- */
.pd-swatch-trio { grid-column: 1 / -1; margin-top: 40px; text-align: center; }
.pd-swatch-trio-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink); margin-bottom: 18px; }
.pd-swatch-trio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 640px; margin: 0 auto; }
.pd-swatch-item { border: none; background: none; padding: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: 'Jost', sans-serif; }
.pd-swatch-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; box-shadow: 0 16px 32px -16px rgba(27,20,15,0.28); transition: transform 0.2s ease; }
.pd-swatch-item:hover img { transform: scale(1.04); }
.pd-swatch-item span { font-size: 0.86rem; color: var(--ink); letter-spacing: 0.02em; }
.pd-swatch-trio-note { font-family: 'Jost', sans-serif; font-size: 0.78rem; color: var(--taupe); margin-top: 16px; }

/* ---------- Swatch lightbox ---------- */
.swatch-lightbox { position: fixed; inset: 0; background: rgba(27,20,15,0.82); display: none; align-items: center; justify-content: center; z-index: 999; padding: 30px; }
.swatch-lightbox.open { display: flex; }
.swatch-lightbox figure { margin: 0; text-align: center; max-width: 520px; }
.swatch-lightbox img { width: 100%; border-radius: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.swatch-lightbox figcaption { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.1rem; margin-top: 16px; }
.swatch-lightbox-close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }

/* ---------- FAQs ---------- */
.faq-group + .faq-group { margin-top: 50px; }
.faq-group-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--ink); margin-bottom: 18px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--espresso-mid);
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- Policy content ---------- */
.policy-block + .policy-block { margin-top: 46px; padding-top: 46px; border-top: 1px solid var(--line); }
.policy-block h2 { font-size: 1.4rem; margin-bottom: 6px; }
.policy-block p { max-width: 720px; line-height: 1.75; color: var(--espresso-mid); margin-bottom: 14px; }
.policy-block ul { max-width: 720px; margin: 0 0 14px; padding-left: 20px; color: var(--espresso-mid); line-height: 1.75; }
.policy-block li { margin-bottom: 6px; }

/* ---------- VIP application form ---------- */
.vip-form-v30 { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.vip-form-v30 label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vip-form-v30 input {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 2px;
  outline: none;
  transition: border-color 0.25s ease;
}
.vip-form-v30 input:focus { border-bottom-color: var(--gold); }
.vip-form-v30 button { align-self: flex-start; margin-top: 10px; }

/* ---------- Notify form ---------- */
.notify-form-v30 { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.notify-form-v30 input {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,246,240,0.4);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  padding: 10px 4px;
  outline: none;
}
.notify-form-v30 input::placeholder { color: rgba(250,246,240,0.5); }
.notify-form-v30 input:focus { border-bottom-color: var(--gold); }

/* ---------- Filter pills ---------- */
.filter-row-v30 { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-pill {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--espresso-mid);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.filter-pill:hover { border-color: var(--gold); color: var(--gold); }
.filter-pill.active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

/* ---------- Product tiles (Ciaobrow) ---------- */
.product-grid-v30 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.product-tile-v30 { text-align: left; }
.product-tile-v30 .pt-media {
  position: relative;
  aspect-ratio: 1/1; background: var(--ivory); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden; border: 1px solid var(--gold); border-radius: 20px;
  box-shadow: 0 24px 42px -18px rgba(27,20,15,0.20), 0 8px 18px -10px rgba(27,20,15,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-tile-v30:hover .pt-media {
  transform: translateY(-5px);
  box-shadow: 0 30px 52px -18px rgba(27,20,15,0.24), 0 12px 22px -10px rgba(27,20,15,0.12), inset 0 1px 0 rgba(255,255,255,0.7);
}
.product-tile-v30 .pt-media img { width: 82%; height: 82%; object-fit: contain; }
.product-tile-v30 h4 { font-family: 'Jost', sans-serif; font-weight: 400; font-size: 0.9rem; color: var(--ink); margin: 0 0 4px; letter-spacing: 0.01em; }
.product-tile-v30 .pt-price { font-size: 0.82rem; color: var(--gold); transition: color 0.25s ease; }
.product-tile-v30:hover .pt-price { color: var(--blush-text); }
.product-tile-v30 .pt-delivery { display: block; font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.03em; color: var(--taupe); margin-top: 2px; }
@media (max-width: 640px) { .product-tile-v30 .pt-delivery { font-size: 0.62rem; } }
.pt-vat { font-size: 0.72em; color: var(--taupe); font-weight: 400; margin-left: 4px; letter-spacing: 0.01em; }
.pt-was { font-size: 0.9em; color: var(--taupe); font-weight: 400; text-decoration: line-through; margin-right: 5px; opacity: 0.75; }
.pd-vat-note { font-family: 'Jost', sans-serif; font-size: 0.78rem; color: var(--taupe); margin: -8px 0 14px; }
@media (max-width: 640px) {
  .product-grid-v30 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-tile-v30 .pt-media { margin-bottom: 10px; border-radius: 14px; }
  .product-tile-v30 h4 { font-size: 0.74rem; line-height: 1.25; margin-bottom: 2px; }
  .product-tile-v30 .pt-price { font-size: 0.72rem; }
}

/* ---------- Marquee / brand strip ---------- */
.strip-v30 {
  background: var(--espresso);
  color: var(--ivory);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.strip-v30 .strip-track { display: inline-block; animation: strip-scroll 32s linear infinite; }
.strip-v30 span { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); padding: 0 28px; }
.strip-v30 span:nth-child(even) { color: var(--blush-deep); }
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Quote / stationery feature ---------- */
.quote-v30 {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.quote-v30 blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold);
  margin: 0 0 20px;
  line-height: 1.5;
}
.quote-v30 cite {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-v30 .hr-blush { background: var(--blush-deep); margin: 26px auto; }

/* ---------- Footer ---------- */
.ftr-v30 { background: var(--ink); color: rgba(250,246,240,0.75); padding: 90px 0 30px; border-top: 2px solid var(--blush-deep); }
.ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 70px; }
.ftr-v30 h4 { color: var(--ivory); font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 20px; }
.ftr-v30 .ftr-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--ivory); margin-bottom: 14px; }
.ftr-brand-img { width: 100%; max-width: 260px; border-radius: 12px; box-shadow: 0 10px 26px rgba(0,0,0,0.35); margin-bottom: 18px; display: block; }
.brand-banner-v30 { padding: 60px 0; text-align: center; }
.brand-banner-v30 img { display: block; margin: 0 auto; max-width: 480px; width: 100%; border-radius: 16px; box-shadow: 0 18px 40px rgba(58,42,32,0.22); }
.ftr-v30 .ftr-links { display: flex; flex-direction: column; gap: 12px; }
.ftr-v30 .ftr-links a { font-size: 0.84rem; color: rgba(250,246,240,0.68); transition: color 0.25s ease; }
.ftr-v30 .ftr-links a:hover { color: var(--gold); }
.ftr-bottom { display: flex; justify-content: space-between; padding-top: 26px; border-top: 1px solid rgba(250,246,240,0.14); font-size: 0.72rem; letter-spacing: 0.04em; color: rgba(250,246,240,0.45); flex-wrap: wrap; gap: 10px; }
@media (max-width: 760px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Footer: accepted payment methods ---------- */
.ftr-payments { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid rgba(250,246,240,0.14); }
.ftr-payments-label { font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,246,240,0.45); margin-right: 4px; }
.pay-badge { display: inline-flex; align-items: center; justify-content: center; height: 28px; padding: 0 12px; border-radius: 6px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 0.76rem; letter-spacing: 0.01em; line-height: 1; white-space: nowrap; box-shadow: 0 2px 6px rgba(0,0,0,0.18); }
.pay-badge.visa { background: #fff; color: #1A1F71; font-style: italic; font-weight: 700; }
.pay-badge.mastercard { background: #fff; color: #26261F; }
.pay-badge.amex { background: #016FD0; color: #fff; }
.pay-badge.paypal { background: #fff; color: #003087; }
.pay-badge.paypal .pal { color: #0079C1; }
.pay-badge.klarna { background: #FFB3C7; color: #17120F; }
.pay-badge.clearpay { background: #B2FCE4; color: #17120F; }
@media (max-width: 560px) { .ftr-payments { gap: 8px; } .pay-badge { height: 26px; padding: 0 10px; font-size: 0.7rem; } }

/* ---------- Sneak Peek gallery (furniture range) ---------- */
.sneak-grid-v30 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.sneak-tile-v30 { display: block; }
.sneak-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 24px 42px -18px rgba(27,20,15,0.20), 0 8px 18px -10px rgba(27,20,15,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.sneak-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.sneak-tile-v30:hover .sneak-media img { transform: scale(1.05); }
.sneak-tile-v30:hover .sneak-media {
  transform: translateY(-5px);
  box-shadow: 0 30px 52px -18px rgba(27,20,15,0.24), 0 12px 22px -10px rgba(27,20,15,0.12);
}
.sneak-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ivory); background: rgba(27,20,15,0.55); backdrop-filter: blur(3px);
  border: 1px solid rgba(250,246,240,0.4);
  padding: 5px 11px; border-radius: 999px;
}
/* Gold stock-status tag on product tiles — In Stock / Pre-Order */
.tile-stock-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Jost', sans-serif; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--gold);
  padding: 5px 11px; border-radius: 999px;
}
/* In Stock tags get a pink ribbon + gold text so they read differently from Pre-Order/gold tags */
.tile-stock-tag.is-instock {
  color: var(--gold-bright); background: var(--blush-deep);
  font-weight: 600;
}
/* Out of Stock tags read as a muted, neutral grey so they don't compete visually with In Stock/Pre-Order */
.tile-stock-tag.is-outofstock {
  color: rgba(250,246,240,0.85); background: rgba(27,20,15,0.62);
  font-weight: 600;
}
/* Wrapper for a paired tag (e.g. Pre-Order + 5-7 Days, In Stock + Ready Now) on ciaobrow.html tiles */
.tile-stock-wrap { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
.tile-stock-wrap .tile-stock-tag { position: static; }
/* Camera badge — links furniture tiles to the AI Room Visualiser */
.visualiser-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); background: rgba(250,246,240,0.9); backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 6px 16px -6px rgba(27,20,15,0.35);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.visualiser-badge svg { width: 18px; height: 18px; }
.visualiser-badge:hover { transform: scale(1.08); background: var(--gold); color: var(--ivory); }
/* Collage variant — 4-up product grid inside a collection tile, replacing a single hero shot */
.sneak-media.collage-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; background: rgba(27,20,15,0.08); }
.sneak-media.collage-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sneak-tile-v30 h4 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1rem; margin: 0 0 3px; color: var(--ink); }
.sneak-colourway { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 860px) { .sneak-grid-v30 { grid-template-columns: 1fr 1fr; gap: 22px; } }

/* ---------- Room Visualiser homepage USP teaser ---------- */
.vis-teaser-media {
  background: linear-gradient(160deg, var(--ivory), var(--paper));
  display: flex; align-items: center; justify-content: center;
}
.vis-teaser-media > img:not(.vis-teaser-float) {
  width: 68%; height: 68%; object-fit: contain;
}
.vis-teaser-media img.vis-teaser-float {
  position: absolute; top: auto; right: auto; bottom: 20px; left: 20px;
  width: 46%; height: auto; aspect-ratio: 4/5; object-fit: contain;
  border-radius: 14px; border: 4px solid var(--ivory);
  background: linear-gradient(160deg, var(--paper), var(--ivory));
  box-shadow: 0 20px 34px -14px rgba(27,20,15,0.4);
  transform: rotate(-4deg);
  padding: 10px; box-sizing: border-box;
}
.vis-teaser-badge { top: 24px; right: 24px; left: auto; bottom: auto; }
.vis-teaser-badge-icon {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--gold); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
}
.vis-teaser-badge-icon svg { width: 14px; height: 14px; }
.vis-teaser-list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; }
.vis-teaser-list li { font-family: 'Jost', sans-serif; font-size: 0.88rem; color: var(--espresso); padding-left: 26px; position: relative; }
.vis-teaser-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
@media (max-width: 860px) {
  .vis-teaser-media img.vis-teaser-float { width: 52%; left: 14px; bottom: 14px; }
}

/* ---------- GlamStay Escapes homepage teaser ---------- */
.glamstay-teaser { background: linear-gradient(160deg, var(--blush-light) 0%, var(--ivory) 60%); }
.glamstay-teaser-media { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--blush-light), var(--paper)); }
.glamstay-teaser-media img { width: 70%; height: 70%; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(27,20,15,0.22)); }
.glamstay-teaser-badge { top: 24px; left: 24px; right: auto; bottom: auto; }
.glamstay-badge-icon {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--gold); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
}
.glamstay-badge-icon svg { width: 14px; height: 14px; }
.glamstay-heading { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 2px; }
.glamstay-tagline {
  font-family: 'Jost', sans-serif; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px;
}
.glamstay-hints-list li::before { content: "\2726"; font-weight: 400; }
.glamstay-offer-badge {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  background: var(--ink); color: var(--ivory);
  border-radius: 999px; padding: 9px 20px; margin-bottom: 24px;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; letter-spacing: 0.04em;
}
.glamstay-offer-badge svg { width: 15px; height: 15px; flex: none; }
.glamstay-waitlist-form { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.glamstay-waitlist-form input {
  flex: 1 1 140px; max-width: 200px; padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgba(27,20,15,0.16); background: var(--ivory);
  font-family: 'Jost', sans-serif; font-size: 0.76rem; letter-spacing: 0.02em; color: var(--ink);
}
.glamstay-waitlist-form input:focus { outline: none; border-color: var(--gold); }
.glamstay-waitlist-form .btn-v30 { flex: none; }
.glamstay-waitlist-note { font-family: 'Jost', sans-serif; font-size: 0.74rem; color: var(--taupe); margin: 0; }
.glamstay-thanks {
  font-family: 'Jost', sans-serif; font-size: 0.92rem; color: var(--ink);
  background: var(--blush-light); border: 1px solid var(--gold);
  border-radius: 14px; padding: 16px 20px; margin: 0;
}
@media (max-width: 860px) {
  .glamstay-teaser-media img { width: 58%; height: 58%; }
  .glamstay-waitlist-form { flex-direction: column; }
  .glamstay-waitlist-form input, .glamstay-waitlist-form .btn-v30 { width: 100%; }
}
/* GlamStay homepage form inputs — same button shape as "Join the Waitlist" (.btn-v30),
   but filled solid gold: the inverse of that button's gold-outline/transparent style. */
.glamstay-duo-card .glamstay-waitlist-form input {
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.glamstay-duo-card .glamstay-waitlist-form input::placeholder { color: rgba(27,20,15,0.6); }
.glamstay-duo-card .glamstay-waitlist-form input:focus {
  border-color: var(--gold-bright); background: var(--gold-bright);
}
@media (max-width: 600px) {
  /* Applies sitewide — not just the homepage duo-card version — so the standalone
     glamstay.html page's waitlist inputs (which sit in .split-text, not .glamstay-duo-card)
     also get the smaller mobile pill size instead of the larger default. */
  .glamstay-waitlist-form input {
    padding: 8px 14px;
    font-size: 0.74rem;
  }
}

/* ---------- GlamStay duo (Escapes + Travel Passport side by side) ---------- */
.glamstay-duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.glamstay-duo-card {
  background: var(--ivory); border-radius: 20px; padding: 32px 32px 28px;
  border: 1px solid rgba(27,20,15,0.08); text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.glamstay-duo-media {
  width: 100%; max-width: 260px; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden;
  margin: 0 auto 22px; background: linear-gradient(160deg, var(--blush-light), var(--paper));
}
.glamstay-duo-media img { width: 100%; height: 100%; object-fit: cover; }
.glamstay-duo-heading { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-bottom: 10px; }
.glamstay-duo-card .lead { margin: 0 auto 18px; font-size: 0.92rem; }
.glamstay-duo-card .glamstay-offer-badge { margin: 0 auto 22px; }
.glamstay-duo-card .glamstay-waitlist-form { width: 100%; justify-content: center; }
.glamstay-duo-card .glamstay-waitlist-note { text-align: center; }
@media (max-width: 860px) {
  .glamstay-duo-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Reviews: Floating Hearts ---------- */
.floating-hearts-v30 { padding: 34px 0 26px; }
.hearts-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(28px, 6vw, 64px);
  flex-wrap: wrap;
  position: relative;
  padding-top: 6px;
}
.floating-heart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  animation: heart-bob 3.2s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
.floating-heart-btn .heart-icon {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--blush-text);
  filter: drop-shadow(0 6px 14px rgba(27,20,15,0.14));
  transition: color 0.25s ease, transform 0.25s ease;
}
.floating-heart-btn:hover .heart-icon,
.floating-heart-btn.is-open .heart-icon {
  color: var(--gold);
  transform: scale(1.08);
}
@keyframes heart-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.heart-popover {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: min(260px, 70vw);
  background: var(--ivory);
  border: 1px solid rgba(184,146,90,0.35);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 24px 44px -16px rgba(27,20,15,0.28), 0 8px 18px -8px rgba(27,20,15,0.14);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 5;
}
.heart-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--ivory);
}
.floating-heart-btn.is-open .heart-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.heart-popover blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--espresso-mid);
  line-height: 1.5;
  margin: 0 0 8px;
}
.heart-popover cite {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 640px) {
  .heart-popover { width: min(220px, 78vw); bottom: calc(100% + 10px); }
}

/* ---------- Repeated wordmark watermark overlay ---------- */
.wordmark-overlay { position: relative; }
.wordmark-overlay::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("images/brand/bb-scatter-tile.png");
  background-repeat: repeat;
  background-size: 560px auto;
}
.wordmark-overlay.on-dark::before {
  opacity: 0.22;
}
.wordmark-overlay > .container { position: relative; z-index: 2; }

/* ---------- Small heart accents ---------- */
.heart-accent { color: var(--blush-text); font-size: 0.9rem; display: inline-block; margin: 0 8px; }
.eyebrow .heart-accent { font-size: 0.7rem; vertical-align: middle; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Collection Lookbooks ---------- */
.lookbook-grid-v30 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.lookbook-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 50px -18px rgba(27,20,15,0.22), 0 10px 22px -10px rgba(27,20,15,0.12);
  background: var(--paper);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lookbook-card:hover { transform: translateY(-5px); box-shadow: 0 36px 60px -16px rgba(27,20,15,0.28), 0 14px 26px -10px rgba(27,20,15,0.16); }
.lookbook-card img { width: 100%; display: block; }
.lookbook-card-cap { padding: 20px 24px 26px; }
.lookbook-card-cap h3 { margin: 0 0 6px; }
.lookbook-card-cap p { margin: 0; font-size: 0.86rem; color: var(--espresso-mid); }
@media (max-width: 860px) { .lookbook-grid-v30 { grid-template-columns: 1fr; } }

/* ---------- B&B Range (own-brand tools) ---------- */
.range-theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.range-theme-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 50px -18px rgba(27,20,15,0.2), 0 10px 22px -10px rgba(27,20,15,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.range-theme-card:hover { transform: translateY(-5px); }
.range-theme-media { aspect-ratio: 1/1; overflow: hidden; }
.range-theme-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.range-theme-body { padding: 28px 30px 32px; }
.range-theme-body h3 { margin: 0 0 8px; }
.range-theme-swatch { display: inline-block; width: 14px; height: 14px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
@media (max-width: 860px) { .range-theme-grid { grid-template-columns: 1fr; } }

.range-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .range-product-grid { grid-template-columns: 1fr 1fr; } }
.range-product-card { border-radius: 18px; overflow: hidden; background: var(--paper); box-shadow: 0 20px 36px -16px rgba(27,20,15,0.18); }
.range-product-media { aspect-ratio: 1/1; overflow: hidden; }
.range-product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.range-product-body { padding: 18px 20px 22px; }
.range-product-body h4 { margin: 0 0 4px; font-size: 0.98rem; }
.range-product-body span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ---------- Sitewide email capture popup ---------- */
.bb-popup-overlay {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
  background: rgba(27,20,15,0.55); opacity: 0; transition: opacity 0.3s ease; padding: 20px;
}
.bb-popup-overlay.is-open { opacity: 1; }
.bb-popup-card {
  position: relative; width: 100%; max-width: 420px; background: var(--ivory); border-radius: 20px;
  padding: 40px 34px 34px; text-align: center; transform: translateY(14px) scale(0.98);
  transition: transform 0.3s ease; box-shadow: 0 30px 60px -20px rgba(27,20,15,0.4);
}
.bb-popup-overlay.is-open .bb-popup-card { transform: translateY(0) scale(1); }
.bb-popup-close {
  position: absolute; top: 14px; right: 16px; width: 30px; height: 30px; border: none; background: none;
  font-size: 1.6rem; line-height: 1; color: var(--taupe); cursor: pointer;
}
.bb-popup-close:hover { color: var(--ink); }
.bb-popup-eyebrow {
  display: block; font-family: 'Jost', sans-serif; font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.bb-popup-heading { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0 0 10px; }
.bb-popup-lead { font-size: 0.92rem; color: var(--taupe); margin: 0 0 22px; }
.bb-popup-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 12px; }
.bb-popup-form input {
  flex: 1 1 100%; padding: 13px 18px; border-radius: 999px;
  border: 1px solid rgba(27,20,15,0.16); background: var(--paper);
  font-family: 'Jost', sans-serif; font-size: 0.86rem; color: var(--ink);
}
.bb-popup-form input:focus { outline: none; border-color: var(--gold); }
.bb-popup-form .btn-v30 { width: 100%; }
.bb-popup-note { font-family: 'Jost', sans-serif; font-size: 0.72rem; color: var(--taupe); margin: 0; }
.bb-popup-code-wrap {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin: 6px 0 4px; padding: 14px 18px; border-radius: 14px;
  background: var(--paper); border: 1.5px dashed var(--gold);
}
.bb-popup-code {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 1.15rem; letter-spacing: 0.14em;
  color: var(--ink);
}
.bb-popup-copy {
  font-family: 'Jost', sans-serif; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold); color: var(--ivory); border: none; border-radius: 999px;
  padding: 8px 16px; cursor: pointer; transition: opacity 0.2s ease;
}
.bb-popup-copy:hover { opacity: 0.85; }

/* ==========================================================================
   Basket drawer + header search overlay — injected by assets/nav.js on
   every page so the header's Basket/Search icons work everywhere, styled
   to match the v30 look (Jost/Playfair, ivory/ink/gold palette).
   ========================================================================== */
.basket-overlay {
  position: fixed; inset: 0;
  background: rgba(27,20,15,0.45);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.basket-overlay.open { opacity: 1; pointer-events: auto; }
.basket-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 400px; max-width: 92vw;
  background: var(--ivory);
  z-index: 201;
  box-shadow: -12px 0 40px rgba(27,20,15,0.2);
  transition: right 0.35s ease;
  display: flex; flex-direction: column;
}
.basket-drawer.open { right: 0; }
.basket-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}
.basket-header h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.basket-items { flex: 1; overflow-y: auto; padding: 18px 26px; }
.basket-row {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.basket-row img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; background: var(--paper); flex-shrink: 0; }
.basket-row .info { flex: 1; }
.basket-row .info h4 { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.88rem; margin: 0 0 4px; color: var(--ink); }
.basket-row .material { font-size: 0.72rem; color: var(--taupe); margin-bottom: 4px; }
.basket-row .price { font-size: 0.82rem; color: var(--espresso-mid); }
.basket-row .qty-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn {
  width: 24px; height: 24px; border: 1px solid var(--line); background: #fff;
  border-radius: 50%; cursor: pointer; font-size: 0.85rem; line-height: 1;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: 0.84rem; min-width: 14px; text-align: center; }
.remove-link { font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: underline; color: var(--taupe); cursor: pointer; margin-left: auto; }
.remove-link:hover { color: var(--gold); }
.basket-footer { padding: 22px 26px; border-top: 1px solid var(--line); }
.basket-total-row {
  display: flex; justify-content: space-between; margin-bottom: 16px;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink);
}
.basket-empty { text-align: center; padding: 60px 20px; color: var(--taupe); }
.close-btn { background: none; border: none; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--ink); padding: 0 4px; }

/* ---------- Header search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(27,20,15,0.55);
  z-index: 400;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 20px 20px;
}
.search-overlay.open { display: flex; }
.search-panel {
  background: var(--ivory);
  border-radius: 10px;
  width: 100%; max-width: 560px;
  max-height: 74vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(27,20,15,0.2);
}
.search-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.search-input-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.search-input-row input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 1rem; color: var(--espresso);
}
.search-close-btn {
  border: none; background: transparent; font-size: 1.4rem; line-height: 1;
  color: var(--taupe); cursor: pointer; padding: 0 4px;
}
.search-results { overflow-y: auto; padding: 8px; }
.search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 6px;
  text-decoration: none; color: inherit;
}
.search-result:hover { background: var(--paper); }
.search-result-media {
  width: 44px; height: 44px; border-radius: 6px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.search-result-media img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info h4 { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.88rem; margin: 0 0 2px; color: var(--ink); }
.search-result-info span { font-size: 0.76rem; color: var(--gold); }
.search-empty { padding: 30px 20px; text-align: center; color: var(--taupe); font-size: 0.9rem; }
@media (max-width: 680px) {
  .basket-drawer { width: 100%; max-width: 100%; right: -100%; }
}
