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

/* =========================================================
   DZ-HEADER — new luxury navigation bar
   ========================================================= */

.dz-header {
  position: sticky; top: 0; z-index: 50;
  padding: 20px 20px 0;
  transition: padding .35s ease;
}
.dz-header.is-scrolled { padding-top: 10px; }

.dz-bar {
  display: flex; align-items: center; gap: 18px;
  height: 64px; padding: 0 26px;
  border-radius: 38px;
  background: rgba(46,30,21,.55);
  border: 1px solid rgba(206,167,74,.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(238,210,150,.14), 0 18px 40px -22px rgba(0,0,0,.7);
  transition: background .35s ease, border-color .35s ease;
}
.dz-header.is-scrolled .dz-bar {
  background: rgba(34,22,15,.86);
  border-color: rgba(206,167,74,.44);
}

.dz-logo {
  display: flex; align-items: center; gap: 9px;
  flex-shrink: 0; text-decoration: none;
}
.dz-logo svg { width: 14px; height: 14px; color: #cda85a; }
.dz-logo span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 27px;
  letter-spacing: .13em; color: #f0e3c8; line-height: 1;
}

.dz-nav { display: flex; align-items: center; gap: 30px; margin-left: 30px; flex-shrink: 0; }
.dz-nav-item { position: relative; }
.dz-nav-link {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Jost', -apple-system, sans-serif;
  font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(240,227,200,.62); text-decoration: none;
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease; cursor: pointer;
}
.dz-nav-link:hover, .dz-nav-item.is-active .dz-nav-link {
  color: #f0e3c8; border-bottom-color: #cda85a;
}
.dz-nav-link svg { width: 14px; height: 14px; color: #cda85a; }

.dz-dropdown {
  /* top:100% + padding-top bridges the visual gap without a hover dead-zone */
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 210px;
  padding: 18px 12px 12px; /* 18px top padding = visual gap, still in hover area */
  border-radius: 16px;
  background: rgba(34,22,15,.92);
  border: 1px solid rgba(206,167,74,.32);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}
/* open via hover (pure CSS) */
.dz-nav-item:hover .dz-dropdown,
/* open via JS click toggle */
.dz-nav-item.dz-open .dz-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}
.dz-dropdown a {
  display: block; padding: 9px 14px; border-radius: 9px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; letter-spacing: .06em;
  color: rgba(240,227,200,.62);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.dz-dropdown a:hover, .dz-dropdown a.active {
  background: rgba(206,167,74,.12); color: #f0e3c8;
}

.dz-spacer { flex: 1; }

.dz-search {
  display: flex; align-items: center; gap: 9px;
  width: 230px; height: 38px; padding: 0 16px;
  border-radius: 30px; background: rgba(255,255,255,.035);
  border: 1px solid rgba(206,167,74,.30); flex-shrink: 0;
  transition: border-color .3s ease, background .3s ease;
}
.dz-search:focus-within {
  border-color: rgba(206,167,74,.6); background: rgba(255,255,255,.06);
}
.dz-search svg { width: 16px; height: 16px; color: #cda85a; flex-shrink: 0; }
.dz-search input {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px; font-style: italic; letter-spacing: .02em; color: #f0e3c8;
}
.dz-search input::placeholder { color: rgba(240,227,200,.5); font-style: italic; }

.dz-divider { width: 1px; height: 26px; background: rgba(206,167,74,.32); margin: 0 4px; flex-shrink: 0; }

.dz-utils { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.dz-icon {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  color: #f0e3c8; text-decoration: none; background: none; border: 0;
  padding: 0; cursor: pointer; transition: color .25s ease, transform .25s ease;
}
.dz-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.dz-icon:hover { color: #cda85a; transform: translateY(-1px); }
.dz-badge {
  position: absolute; top: -6px; right: -7px;
  width: 15px; height: 15px; border-radius: 50%;
  background: #cda85a; color: #2a1a12;
  font-size: 9px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
}

.dz-burger { display: none; }

.dz-mobile {
  display: none; margin: 14px 0 0; padding: 18px; border-radius: 20px;
  background: rgba(34,22,15,.92); border: 1px solid rgba(206,167,74,.32);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.dz-mobile.is-open { display: block; }
.dz-mobile .dz-search { width: 100%; margin-bottom: 14px; }
.dz-mobile a {
  display: block; padding: 11px 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(240,227,200,.62); text-decoration: none;
  border-bottom: 1px solid rgba(206,167,74,.14);
}
.dz-mobile a:last-child { border-bottom: 0; }

.hdr-search-drawer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-6px);
  transition: grid-template-rows .24s ease, opacity .2s ease, transform .24s ease;
}
.hdr-search-drawer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}
.hdr-sd-form {
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0 16px;
  height: 46px;
  border-radius: 24px;
  background: rgba(34,22,15,.88);
  border: 1px solid rgba(206,167,74,.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px -28px rgba(0,0,0,.8);
}
.hdr-sd-form svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #cda85a;
}
.hdr-sd-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #f0e3c8;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-style: italic;
}
.hdr-sd-form input::placeholder { color: rgba(240,227,200,.56); }
.hdr-sd-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(240,227,200,.78);
  font-size: 22px;
  line-height: 1;
}

/* Tablet band: keep the nav (incl. Mix n Match ▸ Women/Men) + the search icon
   reachable. Compact the nav and collapse the search field to just its icon so the
   bar fits with no overflow. (Previously the burger took over at 920px, leaving a
   big empty bar and hiding the nav + search.) */
@media (max-width: 1024px) {
  .dz-nav { gap: 16px; margin-left: 16px; }
  .dz-divider { display: none; }
  .dz-search { width: auto; padding: 0; border: 0; background: transparent; flex-shrink: 0; }
  .dz-search input { display: none; }
  .dz-search { cursor: pointer; }
}
@media (max-width: 720px) {
  .dz-header { padding: 12px 12px 0; }
  .dz-bar { gap: 12px; height: 56px; padding: 0 14px; }
  .dz-logo span { font-size: 24px; letter-spacing: .09em; }
  .dz-logo svg { width: 12px; height: 12px; }
  .dz-nav { display: flex; gap: 0; margin-left: 2px; }
  .dz-nav-item:not(:first-child) { display: none; }
  .dz-nav-link { font-size: 12px; letter-spacing: .08em; padding-bottom: 0; }
  .dz-dropdown { left: 0; transform: translateY(4px); }
  .dz-nav-item:hover .dz-dropdown,
  .dz-nav-item.dz-open .dz-dropdown { transform: translateY(0); }
  .dz-spacer { display: none; }
  .dz-utils { gap: 12px; margin-left: auto; }
  .dz-utils .dz-icon[aria-label="Wishlist"],
  .dz-utils .dz-icon[aria-label="Account"] { display: none; }
  .dz-burger, .dz-mobile { display: none !important; }
  .hdr-sd-form { margin-top: 8px; height: 44px; }
}
@media (max-width: 480px) {
  .dz-header { padding-left: 8px; padding-right: 8px; }
  .dz-bar { gap: 8px; padding: 0 9px; }
  .dz-logo { gap: 6px; }
  .dz-logo span { font-size: 20px; letter-spacing: .055em; }
  .dz-nav-link { font-size: 10.5px; letter-spacing: .025em; gap: 3px; }
  .dz-nav-link svg { width: 12px; height: 12px; }
  .dz-utils { gap: 8px; }
  .dz-icon svg { width: 20px; height: 20px; }
}
@media (max-width: 390px) {
  .dz-bar { gap: 6px; padding: 0 8px; }
  .dz-logo span { font-size: 19px; letter-spacing: .04em; }
  .dz-logo svg { display: none; }
  .dz-nav-link { font-size: 10px; }
}

/* =========================================================
   END DZ-HEADER
   ========================================================= */

:root {
  --page: #c99b68;
  --panel: rgba(104, 66, 38, 0.32);
  --panel-strong: rgba(78, 48, 27, 0.48);
  --line: rgba(237, 205, 160, 0.38);
  --line-strong: rgba(237, 205, 160, 0.56);
  --gold: #d4a05a;
  --champagne: #f4dfbf;
  --ivory: #fbf1e2;
  --muted: rgba(251, 241, 226, 0.76);
  --ink: #3d2818;
  --shadow: 0 24px 70px rgba(70, 42, 20, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(102, 61, 30, 0.22), rgba(102, 61, 30, 0.04) 48%, rgba(102, 61, 30, 0.14)),
    linear-gradient(180deg, rgba(232, 187, 124, 0.08), rgba(91, 52, 24, 0.16)),
    url("https://res.cloudinary.com/dreejvixa/image/upload/f_auto,q_auto/deziind/assets/home-hero-rahul-edit.jpg") center top / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(237, 190, 126, 0.08), rgba(87, 50, 24, 0.08));
  pointer-events: none;
}

body.mix-match-page::before {
  background:
    linear-gradient(90deg, rgba(38, 23, 13, 0.72), rgba(47, 28, 15, 0.2) 42%, rgba(47, 28, 15, 0.1)),
    linear-gradient(180deg, rgba(36, 21, 12, 0.08), rgba(41, 24, 13, 0.68)),
    url("https://res.cloudinary.com/dreejvixa/image/upload/f_auto,q_auto/deziind/assets/mix-n-match-main-hero.png") center top / cover no-repeat;
}

body.mix-match-page::after {
  background:
    radial-gradient(circle at 72% 20%, rgba(251, 241, 226, 0.08), transparent 30rem),
    linear-gradient(180deg, rgba(29, 17, 10, 0.04), rgba(46, 27, 15, 0.24));
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  padding: 18px 0 34px;
}

.shell {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px auto minmax(260px, 440px) 168px;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(112, 76, 49, 0.38), rgba(84, 53, 31, 0.24));
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(1.2);
  transform: translateY(0) scale(1);
  transform-origin: top center;
  transition:
    grid-template-columns 420ms cubic-bezier(0.22, 1, 0.36, 1),
    gap 420ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms ease,
    box-shadow 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, grid-template-columns;
}

.nav.is-floating {
  border-color: rgba(232, 194, 142, 0.42);
  background: linear-gradient(135deg, rgba(112, 76, 49, 0.44), rgba(84, 53, 31, 0.30));
  box-shadow: 0 18px 54px rgba(35, 20, 12, 0.22);
}

.nav.is-condensed {
  grid-template-columns: 178px auto minmax(190px, 300px) 136px;
  gap: 14px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(112, 76, 49, 0.48), rgba(84, 53, 31, 0.34));
  box-shadow: 0 16px 44px rgba(28, 16, 9, 0.26);
  transform: translateY(-4px) scale(0.972);
}

.brand {
  display: flex;
  align-items: center;
  width: 190px;
  min-width: 0;
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav.is-condensed .brand {
  width: 160px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 38px;
  color: rgba(251, 241, 226, 0.86);
  font-size: 15px;
  font-weight: 720;
  transition: gap 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-condensed .links {
  gap: 26px;
  opacity: 0.82;
  transform: translateY(-1px);
}

.links a {
  padding: 10px 0;
}

.links a.active {
  color: var(--ivory);
}

/* Mix n Match dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Invisible bridge fills the gap between trigger and menu so hover never breaks */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 14px;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-trigger svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 220ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 140px;
  padding: 8px 6px;
  border: 1px solid rgba(232, 194, 142, 0.34);
  border-radius: 16px;
  background: rgba(72, 44, 22, 0.86);
  backdrop-filter: blur(36px) saturate(1.6);
  -webkit-backdrop-filter: blur(36px) saturate(1.6);
  box-shadow: 0 20px 52px rgba(20, 10, 4, 0.42), inset 0 1px 0 rgba(242, 214, 176, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 0s;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  color: rgba(246, 234, 216, 0.88);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(201, 155, 104, 0.28);
  color: var(--ivory);
}

.search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(237, 205, 160, 0.36);
  border-radius: 999px;
  background: rgba(104, 68, 42, 0.28);
  color: rgba(251, 241, 226, 0.76);
  box-shadow: inset 0 1px 0 rgba(242, 214, 176, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  overflow: hidden;
  transition:
    min-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    gap 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.search span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 260ms ease, max-width 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-condensed .search {
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-color: rgba(251, 241, 226, 0.3);
  background: rgba(251, 241, 226, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(251, 241, 226, 0.14),
    0 8px 24px rgba(30, 17, 10, 0.18);
}

.nav.is-condensed .search span {
  max-width: 185px;
  opacity: 0.9;
  transform: translateX(-2px);
}

.search svg,
.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1), height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-condensed .search svg,
.nav.is-condensed .icon svg {
  width: 19px;
  height: 19px;
}

.actions {
  display: flex;
  justify-content: end;
  gap: 22px;
  transition: gap 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.nav.is-condensed .actions {
  gap: 14px;
  opacity: 0.88;
}

.icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: rgba(251, 241, 226, 0.88);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1), height 420ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms ease;
}

.nav.is-condensed .icon {
  width: 30px;
  height: 30px;
  background: rgba(251, 241, 226, 0.05);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1fr;
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  min-height: calc(100svh - 126px);
  padding: clamp(26px, 3vw, 42px) 0 0;
}

.intro,
.glass-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(112, 76, 49, 0.38), rgba(84, 53, 31, 0.24));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.08);
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(30px, 4vw, 58px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 840;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  color: var(--ivory);
  font-size: clamp(56px, 6.4vw, 112px);
  line-height: 0.92;
  text-shadow: 0 10px 34px rgba(63, 42, 27, 0.44);
}

.intro p {
  max-width: 520px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid rgba(237, 205, 160, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(218, 162, 86, 0.9), rgba(137, 83, 42, 0.84));
  color: #fff1dd;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(73, 44, 19, 0.2);
}

.btn.secondary {
  background: rgba(90, 58, 35, 0.28);
}

.showcase {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.showcase-image {
  min-height: 0;
  background: var(--image) center 28% / cover no-repeat;
}

.showcase-copy {
  padding: 22px 26px 26px;
  border-top: 1px solid rgba(237, 205, 160, 0.24);
  background: rgba(102, 65, 38, 0.5);
}

.showcase-copy h2 {
  font-size: clamp(28px, 3vw, 46px);
}

.showcase-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  margin-top: 24px;
  padding: clamp(22px, 2.6vw, 34px);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.section-head h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--champagne);
  font-size: clamp(18px, 1.4vw, 25px);
  font-weight: 850;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(210, 162, 91, 0.62), transparent);
}

.view-all {
  font-weight: 760;
  color: rgba(251, 241, 226, 0.86);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: grid;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(72, 48, 31, 0.2);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 86px;
  background: var(--image) center 30% / cover no-repeat;
}

.product-card.tall {
  min-height: 420px;
}

.product-card.wide {
  min-height: 292px;
}

.product-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 86px;
  padding: 16px 18px;
  border-top: 1px solid rgba(237, 205, 160, 0.22);
  background: rgba(100, 64, 39, 0.66);
}

.product-info strong {
  display: block;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 500;
  line-height: 1.05;
}

.product-info span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 760;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(18px, 2vw, 30px);
}

.story-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 42px);
}

.story-card h2 {
  font-size: clamp(36px, 4vw, 66px);
  line-height: 0.96;
}

.story-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pill {
  display: grid;
  min-height: 72px;
  align-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(237, 205, 160, 0.34);
  border-radius: 16px;
  background: rgba(83, 54, 33, 0.28);
}

.pill strong {
  color: var(--champagne);
}

.pill span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.mix-workspace {
  min-height: calc(100svh - 108px);
  margin-top: 24px;
  padding: clamp(8px, 1.6vw, 22px) 0 clamp(22px, 3vw, 46px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.mix-philosophy {
  text-align: center;
  padding: clamp(28px, 3.6vw, 52px) 0 clamp(20px, 2.6vw, 38px);
}

.mix-philosophy p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: rgba(246, 234, 216, 0.62);
  letter-spacing: 0.015em;
  line-height: 1.55;
  margin: 0;
}

.mix-philosophy mark {
  background: none;
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}

.bundle-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: end;
  min-height: 260px;
  margin-bottom: 18px;
  padding: clamp(26px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(237, 205, 160, 0.42);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(56, 34, 20, 0.84), rgba(83, 50, 28, 0.42) 48%, rgba(121, 77, 44, 0.2)),
    url("https://res.cloudinary.com/dreejvixa/image/upload/f_auto,q_auto/deziind/assets/mix-royal-ethnic-trio.png") center 36% / cover no-repeat;
}

.hero-back-link {
  position: absolute;
  top: clamp(18px, 2vw, 30px);
  right: clamp(18px, 2vw, 30px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(237, 205, 160, 0.36);
  border-radius: 999px;
  background: rgba(61, 37, 21, 0.24);
  color: rgba(251, 241, 226, 0.9);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(14px) saturate(1.08);
}

.bundle-hero h1 {
  max-width: 680px;
  margin-top: 14px;
  font-size: clamp(46px, 5.7vw, 96px);
}

.bundle-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
}

.bundle-picker {
  min-height: clamp(300px, 44svh, 460px);
}

.bundle-slider {
  margin-bottom: 20px;
  position: relative;
  padding: clamp(36px, 4.2vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(255, 255, 255, 0.28);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(1.1);
  scroll-margin-top: 110px;
  isolation: isolate;
}

.bundle-slider::before,
.bundle-slider::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bundle-slider::before {
  inset: 0;
  z-index: -2;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 46%);
}

.bundle-slider::after {
  inset: 1px;
  z-index: -1;
  border-radius: 47px;
  background: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ── Bundle slider head ─────────────────────────────────────── */
.bundle-slider-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 2.8vw, 44px);
  padding: 0;
}

.slider-note {
  color: rgba(251, 241, 226, 0.62);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.bundle-slider-intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.bundle-slider-intro span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 210, 100, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 4.5px;
  text-transform: uppercase;
}

.bundle-slider-intro span::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 210, 100, 0.5);
  flex-shrink: 0;
}

.bundle-slider-intro strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.bundle-slider-intro p {
  max-width: 480px;
  margin: 0;
  color: rgba(251, 241, 226, 0.46);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.55;
}

.bundle-slider-intro em {
  color: var(--champagne);
  font-style: normal;
  font-weight: 850;
}

/* ── Nav buttons ─────────────────────────────────────────────── */
.bundle-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.bundle-nav-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(251, 241, 226, 0.82);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.bundle-nav-btn svg {
  width: 18px;
  height: 18px;
}

.bundle-nav-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  transform: scale(1.06);
}

.bundle-nav-btn:active {
  transform: scale(0.96);
}

/* ── Bundle reel (horizontal scroll strip) ───────────────────── */
/* bundle-reel full styles live at bottom of file — see "BUNDLE REEL" section */

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(237, 205, 160, 0.36);
  border-radius: 50%;
  background: rgba(251, 241, 226, 0.1);
  color: var(--ivory);
  font-size: 19px;
  letter-spacing: 0;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.slider-controls button:hover {
  border-color: rgba(247, 219, 177, 0.72);
  background: rgba(251, 241, 226, 0.16);
  transform: translateY(-2px);
}

.bundle-strip {
  display: grid;
  grid-auto-columns: minmax(310px, 29%);
  grid-auto-flow: column;
  gap: clamp(14px, 1.6vw, 22px);
  margin: 0 -4px;
  padding: 4px 4px 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(237, 205, 160, 0.5) rgba(251, 241, 226, 0.1);
}

.bundle-showcase-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
  margin: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.bundle-strip::-webkit-scrollbar {
  height: 8px;
}

.bundle-strip::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(251, 241, 226, 0.1);
}

.bundle-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(237, 205, 160, 0.48);
}

.bundle-card {
  position: relative;
  display: grid;
  min-height: clamp(280px, 32vw, 390px);
  align-content: end;
  gap: 7px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(237, 205, 160, 0.4);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(48, 30, 18, 0.02) 0%, rgba(48, 30, 18, 0.12) 42%, rgba(53, 32, 19, 0.82) 100%),
    var(--image) center 30% / cover no-repeat;
  box-shadow: 0 18px 44px rgba(61, 37, 19, 0.14);
  scroll-snap-align: start;
  transform: translateY(0);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.bundle-showcase-list .bundle-card {
  min-height: 0;
  align-content: end;
  justify-items: start;
  padding: 0;
}

.bundle-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255, 234, 197, 0.22), transparent 30%);
  opacity: 0.62;
  pointer-events: none;
}

.bundle-reel .bundle-card::before { display: none; }

.video-bundle {
  display: block;
  align-content: stretch;
  align-items: stretch;
  justify-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  cursor: default;
}

.bundle-track {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
}

.bundle-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  scroll-margin-top: 170px;
  overflow: hidden;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.bundle-video-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  pointer-events: none;
  transform: scale(1.04);
  transform-origin: center;
}

.bundle-video-slide {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.bundle-pieces-inline {
  opacity: 0;
  pointer-events: none;
  transform: translateX(7%) scale(0.985);
}

.video-bundle.show-pieces .bundle-video-slide {
  opacity: 0;
  transform: translateX(-7%) scale(0.985);
}

.video-bundle.show-pieces .bundle-pieces-inline {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.video-bundle {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(251, 241, 226, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(37, 23, 15, 0.92), rgba(102, 65, 38, 0.58)),
    var(--image) center / cover no-repeat;
}

.bundle-showcase-list .video-bundle {
  width: 100%;
  min-height: 0;
  align-content: end;
  justify-self: stretch;
  margin-inline: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 44%, rgba(8, 5, 2, 0.84) 100%),
    var(--image) center / cover no-repeat;
}

.bundle-showcase-list .bundle-video-slide video {
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(35, 22, 14, 0.74);
  box-shadow: none;
}

.video-bundle::after {
  display: none;
}

.bundle-pieces-inline {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 26px);
  padding: clamp(26px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.86), rgba(238, 207, 164, 0.48)),
    rgba(231, 196, 143, 0.38);
}

.inline-pieces-copy {
  display: grid;
  gap: 7px;
}

.inline-pieces-copy span {
  color: rgba(83, 53, 31, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.inline-pieces-copy strong {
  color: #4d321d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.inline-pieces-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(65, 41, 24, 0.74);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.45;
}

.bundle-pieces-inline img {
  align-self: center;
  justify-self: center;
  width: min(100%, 1280px);
  max-height: min(66vh, 680px);
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(85, 53, 29, 0.18));
}

.bundle-showcase-list .video-bundle span,
.bundle-showcase-list .video-bundle strong,
.bundle-showcase-list .video-bundle p,
.bundle-showcase-list .video-bundle em {
  text-shadow: 0 8px 28px rgba(38, 22, 12, 0.7);
}

.video-bundle > :not(video) {
  position: relative;
  z-index: 1;
}

.video-bundle::before {
  z-index: 1;
}

.video-bundle::after {
  z-index: 2;
}

.bundle-card::after {
  content: "Customize";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(237, 205, 160, 0.32);
  border-radius: 999px;
  background: rgba(61, 37, 21, 0.28);
  color: rgba(251, 241, 226, 0.8);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.bundle-card:hover,
.bundle-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.08) brightness(1.03);
  transform: translateY(-8px) scale(1.01);
}

.bundle-card.is-selected {
  border-color: rgba(247, 219, 177, 0.78);
  box-shadow: inset 0 0 0 1px rgba(247, 219, 177, 0.18), 0 14px 38px rgba(70, 42, 20, 0.2);
}

.bundle-copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(580px, 100%);
  gap: 8px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(237, 205, 160, 0.26);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(45, 27, 16, 0.72), rgba(85, 52, 30, 0.46));
  box-shadow: 0 18px 54px rgba(35, 20, 12, 0.28);
  backdrop-filter: blur(18px) saturate(1.08);
}

.bundle-copy-hidden {
  display: none;
}

.bundle-copy span {
  color: rgba(251, 241, 226, 0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.bundle-copy strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}

.bundle-copy p {
  margin: 0;
  color: rgba(251, 241, 226, 0.78);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
}

.bundle-copy em {
  color: var(--champagne);
  font-style: normal;
  font-weight: 800;
}

.bundle-showcase-list::before {
  content: "";
  display: block;
  grid-column: 1 / -1;
  height: 1px;
  margin-bottom: clamp(4px, 0.6vw, 10px);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 20%, rgba(255, 255, 255, 0.14) 80%, transparent 100%);
}

.bundle-showcase-list .bundle-card,
.bundle-showcase-list .video-bundle {
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  justify-self: stretch;
  margin: 0;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, transparent 0%, transparent 44%, rgba(8, 5, 2, 0.84) 100%),
    var(--image) center 25% / cover no-repeat;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.bundle-showcase-list .bundle-card::after {
  display: none;
}

.video-bundle video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
}

.bundle-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  background: rgba(8, 5, 2, 0.52);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px) saturate(1.1);
}

.bundle-label span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.bundle-label strong {
  color: rgba(251, 241, 226, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.slider-note {
  margin: 2px 0 0;
  letter-spacing: 2px;
  text-transform: none;
}

.builder-grid {
  display: none;
  grid-template-columns: clamp(72px, 5.2vw, 92px) minmax(420px, 1.55fr) minmax(290px, 0.82fr);
  gap: clamp(14px, 1.5vw, 24px);
  align-items: stretch;
  scroll-margin-top: 110px;
}

.builder-grid.is-active {
  display: grid;
  animation: builderReveal 420ms ease both;
}

.builder-grid [hidden] {
  display: none !important;
}

.builder-return {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

@keyframes builderReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.piece-rail,
.look-canvas,
.detail-panel {
  min-height: 680px;
  border: 1px solid rgba(237, 205, 160, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 244, 226, 0.08), rgba(39, 25, 16, 0.32)),
    rgba(35, 23, 16, 0.48);
  box-shadow:
    0 18px 54px rgba(24, 13, 8, 0.28),
    inset 0 1px 0 rgba(251, 241, 226, 0.12);
  backdrop-filter: blur(20px) saturate(1.08);
}

.piece-rail {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: center;
  padding: 10px 8px;
  max-height: 740px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(237, 205, 160, 0.46) rgba(251, 241, 226, 0.08);
}

.piece-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  width: clamp(54px, 4.3vw, 70px);
  min-height: clamp(74px, 6vw, 94px);
  padding: 4px;
  border: 1px solid rgba(237, 205, 160, 0.28);
  border-radius: 14px;
  background: rgba(22, 14, 10, 0.34);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.piece-card:hover {
  transform: translateY(-1px);
  border-color: rgba(237, 205, 160, 0.42);
  background: rgba(76, 49, 31, 0.38);
}

.piece-card.active {
  border-color: rgba(247, 219, 177, 0.72);
  background: rgba(251, 241, 226, 0.1);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 244, 226, 0.16);
}

.piece-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(251, 241, 226, 0.08);
}

.bundle-one-piece {
  grid-template-columns: 34px 74px 1fr auto;
}

.piece-thumb {
  display: block;
  width: 100%;
  height: clamp(66px, 5.4vw, 86px);
  border-radius: 11px;
  border: 1px solid rgba(237, 205, 160, 0.22);
  background-color: rgba(251, 241, 226, 0.9);
  background-image: url("https://res.cloudinary.com/dreejvixa/image/upload/f_auto,q_auto/deziind/men-01/bundle-1-contact-sheet.png");
  background-repeat: no-repeat;
  background-size: 420px auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.thumb-01 { background-position: 0 0; }
.thumb-02 { background-position: -104px 0; }
.thumb-03 { background-position: -208px 0; }
.thumb-04 { background-position: -326px 0; }
.thumb-05 { background-position: -8px -118px; }
.thumb-06 { background-position: -104px -132px; }
.thumb-07 { background-position: -200px -128px; }
.thumb-08 { background-position: -294px -126px; }
.thumb-09 { background-position: -326px -112px; }
.thumb-10 { background-position: -326px -248px; }

/* Bundle 02 image-based thumbnails */
.piece-thumb.piece-thumb-img {
  background-image: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 246, 230, 0.24), transparent 54%),
    rgba(251, 241, 226, 0.08);
  overflow: hidden;
  padding: 0;
}
.piece-thumb.piece-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 13px;
  filter: none;
}

/* Placeholder thumbnail for pieces without images yet */
.piece-thumb.piece-thumb-empty {
  background-image: none;
  background-color: rgba(251, 241, 226, 0.04);
  border: 1px dashed rgba(237, 205, 160, 0.28);
}

/* Muted styling for placeholder pieces */
.piece-card.piece-placeholder {
  opacity: 0.48;
  pointer-events: none;
}

.piece-index {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 3;
  border: 1px solid rgba(237, 205, 160, 0.44);
  border-radius: 50%;
  background: rgba(31, 20, 13, 0.68);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 850;
}

.piece-card strong,
.piece-card small,
.piece-card em {
  display: none;
}

.piece-card strong {
  color: var(--ivory);
  font-size: 13px;
}

.piece-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.piece-card em {
  color: var(--champagne);
  font-style: normal;
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

.add-piece {
  grid-template-columns: 34px 1fr;
}

.look-canvas {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 680px;
  padding: clamp(54px, 5vw, 74px) clamp(22px, 3vw, 46px) clamp(28px, 3vw, 44px);
  background:
    radial-gradient(circle at 50% 42%, rgba(237, 205, 160, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(251, 241, 226, 0.06), rgba(29, 19, 13, 0.34)),
    rgba(33, 22, 16, 0.34);
}

.look-canvas::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(237, 205, 160, 0.22);
  border-radius: 20px;
}

.canvas-label {
  position: absolute;
  top: 28px;
  left: 34px;
  z-index: 2;
  color: rgba(251, 241, 226, 0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Top bar overrides absolute label when reset button is present */
.canvas-top-bar {
  position: absolute;
  top: 22px;
  left: 34px;
  right: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.canvas-top-bar .canvas-label {
  position: static;
  top: auto;
  left: auto;
}

.canvas-reset {
  display: none;
  appearance: none;
  border: 1px solid rgba(237, 205, 160, 0.36);
  border-radius: 999px;
  background: rgba(30, 18, 10, 0.52);
  backdrop-filter: blur(12px);
  color: var(--champagne);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1px;
  padding: 5px 13px;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}
.canvas-reset:hover {
  background: rgba(60, 36, 18, 0.72);
  border-color: rgba(237, 205, 160, 0.6);
}

.look-canvas img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(560px, 62vh);
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(54, 31, 16, 0.36));
}

.pieces-board {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(88%, 620px);
  min-height: min(560px, 62vh);
  overflow: hidden;
  border: 1px solid rgba(237, 205, 160, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 249, 238, 0.92), rgba(238, 223, 200, 0.82));
  box-shadow: 0 26px 60px rgba(24, 13, 8, 0.32);
}

.pieces-board img {
  width: 100%;
  max-height: min(560px, 62vh);
  object-fit: contain;
  filter: none;
}

.piece-count {
  gap: 7px;
}

.canvas-dots {
  display: none;
  position: absolute;
  bottom: 28px;
  gap: 8px;
}

.canvas-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(251, 241, 226, 0.38);
}

.canvas-dots span:first-child {
  background: var(--champagne);
}

.detail-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 680px;
  padding: clamp(22px, 2.2vw, 30px);
  border-color: rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(15, 15, 13, 0.64), rgba(79, 58, 42, 0.52));
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(26px) saturate(1.05);
}

.detail-panel h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.detail-price-top {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 500;
}

.detail-copy {
  max-width: 34ch;
  margin: 0;
  color: rgba(251, 241, 226, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-list div {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
}

.detail-list div:last-child {
  border-bottom: 0;
}

.detail-list dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(251, 241, 226, 0.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.detail-list dt span {
  color: rgba(251, 241, 226, 0.62);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.detail-list dd {
  margin: 0;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 650;
}

.detail-size-row dd {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-size-row dd button,
.detail-list dd strong {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(251, 241, 226, 0.82);
  font: inherit;
}

.detail-size-row dd button {
  appearance: none;
  cursor: pointer;
}

.detail-list dd strong {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
}

.custom-size {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(237, 205, 160, 0.36);
  border-radius: 16px;
  background: rgba(251, 241, 226, 0.12);
  color: var(--ivory);
  text-align: left;
  font-weight: 850;
}

.detail-colors {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
}

.detail-colors span {
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(251, 241, 226, 0.62);
  border-radius: 50%;
  background: var(--tone);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.custom-size span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.detail-actions {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: -4px;
}

.detail-actions span:first-child {
  color: rgba(251, 241, 226, 0.88);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.detail-actions span:last-child {
  color: rgba(251, 241, 226, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.price-box {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(237, 205, 160, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 244, 226, 0.08), rgba(70, 42, 24, 0.3)),
    rgba(35, 22, 14, 0.34);
}

.price-box span,
.price-box small {
  color: var(--muted);
}

.price-box strong {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.checkout-btn {
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(12, 12, 11, 0.98), rgba(0, 0, 0, 0.94));
  color: #fff;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.buy-now-btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vto-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(340px, 1fr);
  gap: clamp(16px, 2vw, 28px);
  min-height: 640px;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(237, 205, 160, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(251, 241, 226, 0.1), rgba(77, 49, 30, 0.28)),
    rgba(71, 45, 27, 0.32);
  box-shadow: inset 0 1px 0 rgba(251, 241, 226, 0.08);
}

.vto-preview {
  position: relative;
  display: grid;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(237, 205, 160, 0.3);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(251, 241, 226, 0.42), transparent 34%),
    linear-gradient(150deg, rgba(251, 241, 226, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(144, 96, 57, 0.28), rgba(54, 33, 20, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(251, 241, 226, 0.12),
    0 28px 70px rgba(44, 26, 15, 0.24);
}

.vto-stage {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 100%;
  padding: 58px 22px 74px;
}

.vto-stage::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 58px;
  left: 12%;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 241, 226, 0.28), rgba(57, 35, 21, 0) 68%);
  filter: blur(10px);
}

.vto-stage img {
  position: relative;
  z-index: 1;
  width: min(88%, 390px);
  max-height: min(560px, 72vh);
  object-fit: contain;
  border: 1px solid rgba(251, 241, 226, 0.22);
  border-radius: 6px;
  box-shadow:
    0 28px 48px rgba(44, 26, 15, 0.44),
    0 0 0 10px rgba(251, 241, 226, 0.035);
  filter: saturate(1.04) contrast(1.02);
}

.vto-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(237, 205, 160, 0.32);
  border-radius: 999px;
  background: rgba(57, 35, 21, 0.5);
  color: rgba(251, 241, 226, 0.86);
  font-size: 13px;
  font-weight: 820;
  backdrop-filter: blur(12px) saturate(1.08);
}

.vto-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4a05a;
  box-shadow: 0 0 0 6px rgba(212, 160, 90, 0.16);
}

.vto-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1.5vw, 20px);
}

.vto-copy h2 {
  max-width: 640px;
  margin: 14px 0 14px;
  color: var(--ivory);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.96;
}

.vto-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.vto-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.vto-steps div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(237, 205, 160, 0.26);
  border-radius: 16px;
  background: rgba(90, 57, 34, 0.26);
}

.vto-steps strong {
  color: var(--champagne);
  font-size: 13px;
  letter-spacing: 2px;
}

.vto-steps span {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.vto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vto-primary,
.vto-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(237, 205, 160, 0.44);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.vto-primary {
  background: linear-gradient(135deg, rgba(218, 162, 86, 0.9), rgba(137, 83, 42, 0.84));
}

.vto-secondary {
  background: rgba(85, 54, 32, 0.34);
}

.vto-note {
  margin-top: 16px !important;
  color: rgba(251, 241, 226, 0.62) !important;
  font-size: 12px !important;
}

/* ════════════════════════════════════════════════════════════
   BUNDLE REEL  — all rules here are declared last so they
   win over every earlier .bundle-card base rule by cascade
   ════════════════════════════════════════════════════════════ */

/* ── Slide images (no class conflict, safe anywhere) ───────── */
.bundle-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bundle-slide {
  position: absolute;
  inset: 0;
  background: var(--bg) center 20% / cover no-repeat;
  opacity: 0;
  transition: opacity 520ms ease;
  z-index: 0;
}

.bundle-slide.is-active { opacity: 1; }

/* ── Story bars ─────────────────────────────────────────────── */
.bundle-bars {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  gap: 3px;
  pointer-events: none;
}

.bundle-bars span {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 360ms ease;
}

.bundle-bars span.is-active { background: rgba(255, 255, 255, 0.9); }

/* ── Reel scroll container ──────────────────────────────────── */
.bundle-reel {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  /* clip right edge for scroll affordance */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 94%, transparent 100%);
}

.bundle-reel::-webkit-scrollbar { display: none; }

/* ── Each card — all overrides explicit ─────────────────────── */
.bundle-reel .bundle-card {
  /* geometry */
  flex: 0 0 clamp(200px, 19vw, 260px) !important;
  width: clamp(200px, 19vw, 260px) !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 3 / 4.4 !important;
  /* layout */
  display: block !important;
  padding: 0 !important;
  overflow: hidden !important;
  /* visual */
  position: relative;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-top-color: rgba(255, 255, 255, 0.24) !important;
  background: #120b07 !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  /* scroll */
  scroll-snap-align: start;
  /* animation */
  transform: translateY(0) !important;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 300ms ease,
              border-color 250ms ease !important;
  /* isolation keeps hover lift from overlapping neighbours */
  isolation: isolate;
  z-index: 0;
  cursor: pointer;
  text-decoration: none !important;
}

/* ── Suppress all legacy ::before and ::after inside reel ───── */
.bundle-reel .bundle-card::before {
  display: none !important;
  content: none !important;
}

/* gradient scrim + hide "Customize" badge */
.bundle-reel .bundle-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  top: auto !important;
  right: 0 !important;
  height: 62% !important;
  bottom: 0 !important;
  left: 0 !important;
  width: auto !important;
  z-index: 3 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 3, 1, 0.82) 100%) !important;
  backdrop-filter: none !important;
  color: transparent !important;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  pointer-events: none !important;
}

/* ── Hover: lift only, NO scale — prevents card merging ─────── */
.bundle-reel .bundle-card:hover {
  transform: translateY(-7px) !important;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.28) !important;
  border-top-color: rgba(255, 255, 255, 0.44) !important;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.46),
              inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.bundle-reel .bundle-card.is-selected {
  border-color: rgba(237, 205, 160, 0.68) !important;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(237, 205, 160, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

/* ── Label pill ─────────────────────────────────────────────── */
.bundle-reel .bundle-label {
  position: absolute !important;
  right: 12px !important;
  bottom: 12px !important;
  left: 12px !important;
  top: auto !important;
  z-index: 8 !important;
  display: grid !important;
  gap: 3px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-color: rgba(255, 255, 255, 0.24);
  border-radius: 13px;
  background: rgba(5, 3, 1, 0.58) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px) saturate(1.1);
  /* never let it appear as grid/full-width from inherited rules */
  width: auto !important;
  min-height: 0 !important;
}

.bundle-reel .bundle-label span {
  color: rgba(255, 255, 255, 0.36) !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 3.5px !important;
  text-transform: uppercase !important;
  font-family: ui-sans-serif, Inter, sans-serif !important;
}

.bundle-reel .bundle-label strong {
  color: rgba(251, 241, 226, 0.96) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(12px, 1.05vw, 17px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em !important;
}

/* ── Nav buttons ────────────────────────────────────────────── */
.bundle-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 2px;
}

.bundle-nav-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(251, 241, 226, 0.82);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 240ms ease;
  flex-shrink: 0;
}

.bundle-nav-btn svg { width: 17px; height: 17px; }

.bundle-nav-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.06);
}

.bundle-nav-btn:active { transform: scale(0.94); }

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 180px 1fr auto;
  }

  .nav.is-condensed {
    grid-template-columns: 150px minmax(180px, 1fr) 110px;
  }

  .links {
    display: none;
  }

  .search {
    grid-column: 2;
  }

  .actions {
    grid-column: 3;
  }

  .hero,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

  .vto-panel {
    grid-template-columns: 1fr;
  }

  .piece-rail,
  .look-canvas,
  .detail-panel {
    min-height: auto;
  }

  .look-canvas {
    min-height: 520px;
  }

  .showcase {
    min-height: 520px;
  }

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

  .bundle-hero {
    grid-template-columns: 1fr;
  }

  .bundle-slider-head {
    flex-wrap: wrap;
    gap: 16px;
  }

  .bundle-slider-intro {
    max-width: 100%;
  }

  .bundle-reel .bundle-card {
    flex: 0 0 clamp(170px, 34vw, 220px) !important;
    width: clamp(170px, 34vw, 220px) !important;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 10px 0 22px;
  }

  .shell {
    width: min(100% - 16px, 1440px);
  }

  .nav {
    position: sticky;
    top: 8px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: auto;
    padding: 12px;
  }

  .nav.is-condensed {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 10px;
    transform: translateY(-2px) scale(0.985);
  }

  .brand {
    font-size: 22px;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 42px;
    font-size: 13px;
  }

  .nav.is-condensed .search {
    min-height: 38px;
  }

  .actions {
    gap: 8px;
  }

  .icon {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: auto;
    padding-top: 12px;
  }

  .intro {
    padding: 24px;
  }

  h1 {
    font-size: 52px;
  }

  .cards,
  .cards.three,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card.tall,
  .product-card.wide {
    min-height: 310px;
  }

  .mix-workspace {
    margin-top: 12px;
    padding: 14px;
  }

  .bundle-hero {
    min-height: 420px;
    align-items: end;
    padding: 24px;
  }

  .piece-card {
    grid-template-columns: 30px 58px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .piece-card img,
  .piece-thumb {
    width: 58px;
    height: 58px;
  }

  .piece-card em {
    grid-column: 4;
    font-size: 12px;
  }

  .look-canvas {
    min-height: 460px;
  }

  .look-canvas img {
    width: 92%;
  }

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

  .vto-panel {
    min-height: auto;
    padding: 14px;
  }

  .vto-preview {
    min-height: 520px;
  }

  .vto-stage img {
    width: min(86%, 330px);
    max-height: 430px;
  }

  .vto-steps {
    grid-template-columns: 1fr;
  }

  .vto-actions button {
    width: 100%;
  }

  .bundle-reel .bundle-card {
    flex: 0 0 clamp(150px, 56vw, 190px) !important;
    width: clamp(150px, 56vw, 190px) !important;
  }

  .bundle-slider-head {
    flex-wrap: wrap;
    gap: 12px;
  }

  .bundle-slider {
    padding: 10px;
    border-radius: 22px;
  }

  .bundle-slider::after {
    inset: 2px;
    border-radius: 20px;
  }

  .bundle-slider-intro {
    max-width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .bundle-slider-intro strong {
    font-size: 42px;
  }

  .bundle-label {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px;
  }
}

/* Product-style selected-piece gallery for Mix n Match builder */
#builder.builder-grid.is-active {
  grid-template-columns: clamp(72px, 5.2vw, 92px) minmax(420px, 1.55fr) minmax(290px, 0.82fr);
  align-items: start;
}

#builder .piece-rail {
  display: grid;
  grid-auto-rows: max-content;
  justify-items: center;
  gap: 8px;
  min-height: 620px;
  max-height: 620px;
  padding: 8px;
}

#builder .piece-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  width: clamp(54px, 4.3vw, 70px);
  min-height: clamp(74px, 6vw, 94px);
  padding: 4px;
}

#builder .piece-rail::before,
#builder .piece-rail::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.62);
  color: rgba(251, 241, 226, 0.92);
  font-size: 19px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#builder .piece-rail::before {
  content: "✦";
}

#builder .piece-rail::after {
  content: "⌄";
}

#builder .piece-card > div,
#builder .piece-card > em {
  display: none;
}

#builder .piece-thumb,
#builder .piece-card img {
  width: 100%;
  height: clamp(66px, 5.4vw, 86px);
  object-fit: contain;
}

#builder .look-canvas {
  min-height: 620px;
}

#builder .pieces-board {
  width: min(88%, 590px);
  min-height: min(510px, 56vh);
  place-items: center;
}

#builder .pieces-board img {
  width: 100%;
  max-height: min(510px, 56vh);
}

#builder .canvas-dots,
#builder .canvas-reset {
  display: none;
}

#builder .detail-panel {
  min-height: 620px;
  gap: 12px;
}

#builder .detail-colors,
#builder #detailColors {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
}

#builder .detail-list div {
  padding: 12px 0;
}

#builder .detail-copy {
  line-height: 1.5;
}

#builder .checkout-btn {
  min-height: 54px;
}

#builder .buy-now-btn {
  min-height: 48px;
}

.builder-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 26px);
  align-items: center;
  min-height: 92px;
  padding: 18px clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(71, 52, 38, 0.5);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(1.08);
}

.builder-benefits div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  align-items: center;
}

.builder-benefits span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--champagne);
  font-size: 18px;
}

.builder-benefits strong {
  color: var(--ivory);
  font-size: 13px;
  line-height: 1.15;
}

.builder-benefits small {
  color: rgba(251, 241, 226, 0.68);
  font-size: 11px;
}

#builder .vto-panel {
  display: none;
}

@media (max-width: 1100px) {
  #builder.builder-grid.is-active {
    grid-template-columns: clamp(72px, 10vw, 92px) minmax(0, 1fr);
  }

  #builder .detail-panel {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  #builder.builder-grid.is-active {
    grid-template-columns: 1fr;
  }

  #builder .piece-rail {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
  }

  #builder .piece-card {
    width: 64px;
    min-height: 82px;
  }

  #builder .piece-rail::before,
  #builder .piece-rail::after {
    display: none;
  }

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

/* ═══════════════════════════════════════════════════════════
   BUILDER — REFERENCE REDESIGN
   3-zone layout: sidebar | light canvas | dark detail panel
   ═══════════════════════════════════════════════════════════ */

#builder.builder-grid.is-active {
  display: grid !important;
  grid-template-columns: 114px 1fr 340px !important;
  grid-template-rows: 1fr auto !important;
  grid-template-areas:
    "sidebar canvas detail"
    "bar     bar    bar" !important;
  align-items: stretch !important;
  gap: 0 !important;
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(14, 9, 5, 0.82);
  border: 1px solid rgba(237, 205, 160, 0.14);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(28px) saturate(1.1);
}

/* Hide old return bar — bundle label now lives inside detail panel */
#builder .builder-return {
  display: none !important;
}

/* ── Piece sidebar ───────────────────────────────────────── */
#builder .piece-rail {
  grid-area: sidebar !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 580px !important;
  max-height: 680px !important;
  padding: 16px 10px !important;
  border-right: 1px solid rgba(237, 205, 160, 0.1) !important;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

#builder .piece-rail::before {
  content: "✦" !important;
  display: grid !important;
  width: 44px !important;
  height: 44px !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(237, 205, 160, 0.22) !important;
  color: var(--champagne) !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
  margin-bottom: 6px !important;
  box-shadow: none !important;
}

#builder .piece-rail::after {
  display: none !important;
}

#builder .piece-card {
  position: relative !important;
  display: block !important;
  width: 84px !important;
  min-height: 90px !important;
  height: 92px !important;
  padding: 0 !important;
  border-radius: 13px !important;
  overflow: hidden !important;
  border: 1.5px solid rgba(237, 205, 160, 0.12) !important;
  background: rgba(251, 241, 226, 0.05) !important;
  cursor: pointer !important;
  flex-shrink: 0;
  transition: border-color 200ms ease, transform 200ms ease;
}

#builder .piece-card > div,
#builder .piece-card > em {
  display: none !important;
}

#builder .piece-card .piece-index {
  position: absolute !important;
  top: 5px !important;
  left: 7px !important;
  z-index: 2 !important;
  width: auto !important;
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) !important;
  line-height: 1 !important;
}

#builder .piece-card .piece-thumb {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  background-color: rgba(251, 241, 226, 0.88) !important;
  background-size: 350px auto !important;
}

#builder .piece-card .piece-thumb-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  background: rgba(251, 241, 226, 0.88) !important;
}

#builder .piece-card .piece-thumb-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: none !important;
}

#builder .piece-card:hover {
  border-color: rgba(237, 205, 160, 0.55) !important;
  transform: scale(1.05) !important;
}

#builder .piece-card.active {
  border-color: var(--champagne) !important;
  box-shadow: 0 0 0 2px rgba(244, 223, 191, 0.22) !important;
}

/* ── Canvas — light ivory center zone ───────────────────── */
#builder .look-canvas {
  grid-area: canvas !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 580px !important;
  padding: 0 !important;
  background: rgba(251, 241, 226, 0.93) !important;
  border-left: none !important;
  border-right: 1px solid rgba(237, 205, 160, 0.16) !important;
  border-radius: 0 !important;
}

#builder .look-canvas::before {
  display: none !important;
}

#builder .canvas-top-bar {
  position: absolute !important;
  top: 20px !important;
  left: 22px !important;
  right: 22px !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

#builder .canvas-label {
  position: static !important;
  color: rgba(63, 42, 27, 0.6) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: 3.5px !important;
}

#builder .canvas-reset {
  position: static !important;
  padding: 5px 12px !important;
  border: 1px solid rgba(63, 42, 27, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(63, 42, 27, 0.07) !important;
  color: rgba(63, 42, 27, 0.65) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 180ms ease !important;
}

#builder .pieces-board {
  width: min(86%, 560px) !important;
  min-height: min(486px, 55vh) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#builder .pieces-board img {
  width: auto !important;
  max-width: 100% !important;
  max-height: min(486px, 55vh) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 20px 44px rgba(63, 42, 27, 0.22)) !important;
}

#builder .canvas-dots {
  display: none !important;
}

#builder .preview-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  width: min(82%, 520px) !important;
  margin-top: clamp(18px, 2.4vh, 28px) !important;
  z-index: 3 !important;
}

#builder .preview-action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 164px !important;
  min-height: 48px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 244, 226, 0.42) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.07)),
    rgba(113, 80, 52, 0.14) !important;
  color: rgba(105, 62, 42, 0.92) !important;
  box-shadow:
    0 14px 38px rgba(78, 50, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.48) !important;
  backdrop-filter: blur(22px) saturate(1.25) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: 1.3px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease !important;
}

#builder .preview-action.primary {
  background:
    linear-gradient(145deg, rgba(255, 245, 225, 0.46), rgba(255, 255, 255, 0.14)),
    rgba(210, 157, 88, 0.18) !important;
  border-color: rgba(196, 126, 76, 0.42) !important;
  color: rgba(151, 67, 48, 0.94) !important;
}

#builder .preview-action.secondary {
  color: rgba(92, 59, 42, 0.86) !important;
}

#builder .preview-action:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 244, 226, 0.72) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12)),
    rgba(223, 186, 132, 0.2) !important;
}

/* ── Detail panel ────────────────────────────────────────── */
#builder .detail-panel {
  grid-area: detail !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 26px 22px 22px !important;
  min-height: 580px !important;
  overflow-y: auto;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Eyebrow */
#builder .detail-panel .eyebrow {
  font-size: 10px !important;
  letter-spacing: 3px !important;
  color: rgba(251, 241, 226, 0.38) !important;
  margin-bottom: 8px !important;
}

#builder .detail-panel .eyebrow::before {
  display: none !important;
}

/* Bundle name */
#builder .detail-panel h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(18px, 1.6vw, 24px) !important;
  font-weight: 400 !important;
  color: var(--ivory) !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
}

/* Price */
#builder .detail-price {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Description */
#builder .detail-copy {
  font-size: 12px !important;
  color: rgba(251, 241, 226, 0.55) !important;
  line-height: 1.65 !important;
  margin: 0 0 18px !important;
}

/* Detail list */
#builder .detail-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin: 0 0 6px !important;
}

#builder .detail-list div {
  padding: 11px 0 !important;
  border-top: 1px solid rgba(237, 205, 160, 0.1) !important;
}

#builder .detail-list div:first-child {
  border-top: none !important;
  padding-top: 0 !important;
}

#builder .detail-list dt {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: rgba(251, 241, 226, 0.38) !important;
  margin-bottom: 9px !important;
}

#builder .detail-list dd {
  margin: 0 !important;
  color: rgba(251, 241, 226, 0.8) !important;
  font-size: 13px !important;
}

/* Size guide link in dt */
#builder .detail-size-row dt span {
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(251, 241, 226, 0.4) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  cursor: pointer !important;
}

/* Size pills */
#builder .detail-size-row dd {
  display: flex !important;
  gap: 7px !important;
}

#builder .detail-size-row dd button,
#builder .detail-size-row dd strong {
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(237, 205, 160, 0.26) !important;
  background: transparent !important;
  color: rgba(251, 241, 226, 0.65) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease !important;
}

#builder .detail-size-row dd strong {
  background: var(--ink) !important;
  border-color: rgba(251, 241, 226, 0.08) !important;
  color: var(--ivory) !important;
  font-weight: 850 !important;
}

#builder .detail-size-row dd button:hover {
  border-color: rgba(251, 241, 226, 0.5) !important;
  color: var(--ivory) !important;
}

/* Color swatches */
#builder .detail-colors,
#builder #detailColors {
  display: flex !important;
  flex-direction: row !important;
  gap: 9px !important;
  align-items: center !important;
}

#builder .detail-colors span,
#builder #detailColors span {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  background: var(--tone) !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  transition: border-color 160ms ease, transform 160ms ease !important;
}

#builder .detail-colors span:first-child,
#builder #detailColors span:first-child {
  border-color: var(--champagne) !important;
  transform: scale(1.15) !important;
}

/* Piece composition */
#builder .detail-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  padding: 13px 0 !important;
  border-top: 1px solid rgba(237, 205, 160, 0.12) !important;
  border-bottom: 1px solid rgba(237, 205, 160, 0.12) !important;
  margin: 8px 0 18px !important;
}

#builder .detail-actions span:first-child {
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
}

#builder .detail-actions span:last-child {
  font-size: 11px !important;
  color: rgba(251, 241, 226, 0.45) !important;
}

/* CTA buttons */
#builder .checkout-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 50px !important;
  border-radius: 999px !important;
  background: rgba(20, 12, 7, 0.92) !important;
  border: 1px solid rgba(237, 205, 160, 0.2) !important;
  color: var(--ivory) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  margin-bottom: 9px !important;
  transition: background 180ms ease, border-color 180ms ease !important;
}

#builder .checkout-btn:hover {
  background: rgba(5, 3, 1, 0.98) !important;
  border-color: rgba(237, 205, 160, 0.38) !important;
}

#builder .buy-now-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  border-radius: 999px !important;
  background: transparent !important;
  border: 1px solid rgba(237, 205, 160, 0.3) !important;
  color: rgba(251, 241, 226, 0.75) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease !important;
}

#builder .buy-now-btn:hover {
  background: rgba(237, 205, 160, 0.07) !important;
  border-color: var(--champagne) !important;
  color: var(--champagne) !important;
}

/* ── Trust bar — integrated bottom strip ─────────────────── */
#builder .builder-benefits {
  grid-area: bar !important;
  border-radius: 0 0 28px 28px !important;
  border: none !important;
  border-top: 1px solid rgba(237, 205, 160, 0.1) !important;
  box-shadow: none !important;
  background: rgba(10, 6, 3, 0.6) !important;
  backdrop-filter: blur(20px) !important;
  gap: 0 !important;
  padding: 0 !important;
  min-height: 72px;
}

#builder .builder-benefits div {
  padding: 16px 20px;
  border-right: 1px solid rgba(237, 205, 160, 0.08);
  grid-template-columns: 36px 1fr;
  column-gap: 10px;
}

#builder .builder-benefits div:last-child {
  border-right: none;
}

#builder .builder-benefits span {
  width: 32px;
  height: 32px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
}

#builder .builder-benefits strong {
  font-size: 12px;
}

#builder .builder-benefits small {
  font-size: 10.5px;
}

/* VTO panel hidden — not in reference */
#builder .vto-panel {
  display: none !important;
}

/* ── Clear liquid-glass refinement: reduce blackness, keep premium contrast ── */
#builder.builder-grid.is-active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(120, 88, 62, 0.18) !important;
  border-color: rgba(255, 244, 226, 0.28) !important;
  box-shadow:
    0 34px 100px rgba(49, 29, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(34px) saturate(1.35) brightness(1.04) !important;
}

#builder .piece-rail {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(92, 62, 42, 0.16) !important;
  border-right-color: rgba(255, 244, 226, 0.18) !important;
}

#builder .piece-rail::before {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 244, 226, 0.34) !important;
  color: rgba(255, 248, 237, 0.95) !important;
}

#builder .piece-card {
  background: rgba(255, 250, 240, 0.12) !important;
  border-color: rgba(255, 244, 226, 0.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 24px rgba(39, 23, 13, 0.12) !important;
}

#builder .piece-card.active {
  background: rgba(255, 250, 240, 0.2) !important;
  border-color: rgba(255, 244, 226, 0.76) !important;
  box-shadow:
    0 0 0 2px rgba(255, 244, 226, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

#builder .look-canvas {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.5), transparent 45%),
    rgba(249, 238, 218, 0.68) !important;
  border-right-color: rgba(255, 244, 226, 0.2) !important;
}

#builder .pieces-board {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.58), transparent 58%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.74), rgba(241, 225, 202, 0.42)) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 22px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 24px 60px rgba(79, 52, 32, 0.13) !important;
}

#builder .detail-panel {
  padding: 24px 22px 20px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(92, 66, 47, 0.24) !important;
  border-left: 1px solid rgba(255, 244, 226, 0.18) !important;
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(32px) saturate(1.26) !important;
}

#builder .detail-panel h2 {
  color: rgba(255, 248, 237, 0.98) !important;
  font-size: clamp(20px, 1.65vw, 28px) !important;
  line-height: 1.18 !important;
  margin-bottom: 8px !important;
}

#builder .detail-price-top {
  display: block !important;
  color: #efc071 !important;
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}

#builder .detail-copy {
  color: rgba(255, 248, 237, 0.76) !important;
  font-size: 12.5px !important;
  line-height: 1.58 !important;
  margin-bottom: 14px !important;
}

#builder .detail-list div {
  border-top-color: rgba(255, 244, 226, 0.18) !important;
}

#builder .detail-list dt {
  color: rgba(255, 248, 237, 0.62) !important;
}

#builder .detail-list dd {
  color: rgba(255, 248, 237, 0.9) !important;
}

#builder .detail-size-row dd button,
#builder .detail-size-row dd strong {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 244, 226, 0.28) !important;
  color: rgba(255, 248, 237, 0.86) !important;
}

#builder .detail-size-row dd strong {
  background: rgba(255, 244, 226, 0.26) !important;
  border-color: rgba(255, 244, 226, 0.58) !important;
  color: #fff7ea !important;
}

#builder .detail-actions {
  border-top-color: rgba(255, 244, 226, 0.16) !important;
  border-bottom-color: rgba(255, 244, 226, 0.16) !important;
}

#builder .detail-actions span:first-child {
  color: #f0bd6f !important;
}

#builder .detail-actions span:last-child {
  color: rgba(255, 248, 237, 0.62) !important;
}

#builder .checkout-btn {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(55, 35, 22, 0.36) !important;
  border-color: rgba(255, 244, 226, 0.32) !important;
  color: rgba(255, 248, 237, 0.96) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 34px rgba(45, 26, 14, 0.16) !important;
}

#builder .buy-now-btn {
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(255, 244, 226, 0.32) !important;
  color: rgba(255, 248, 237, 0.86) !important;
}

#builder .builder-benefits {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(82, 56, 38, 0.18) !important;
  border-top-color: rgba(255, 244, 226, 0.2) !important;
  backdrop-filter: blur(30px) saturate(1.3) !important;
}

#builder .builder-benefits div {
  border-right-color: rgba(255, 244, 226, 0.16) !important;
}

#builder .builder-benefits span {
  background: rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 248, 237, 0.94) !important;
}

#builder .builder-benefits strong {
  color: rgba(255, 248, 237, 0.94) !important;
}

#builder .builder-benefits small {
  color: rgba(255, 248, 237, 0.68) !important;
}

/* ── Full model preview stage ──────────────────────────────
   The model preview is intentionally fitted differently from
   individual product pieces, so the full body occupies the X area. */
#builder .look-canvas.model-preview-mode {
  justify-content: center !important;
  padding: 44px 34px 22px !important;
  overflow: hidden !important;
}

#builder .look-canvas.model-preview-mode .pieces-board {
  width: min(86%, 760px) !important;
  height: clamp(500px, 61vh, 680px) !important;
  min-height: 0 !important;
  margin-top: 8px !important;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#builder .look-canvas.model-preview-mode .pieces-board img {
  width: auto !important;
  height: 100% !important;
  max-width: 92% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter:
    drop-shadow(0 32px 50px rgba(67, 41, 24, 0.2))
    drop-shadow(0 8px 18px rgba(255, 244, 226, 0.16)) !important;
}

#builder .look-canvas.model-preview-mode .preview-actions {
  margin-top: 8px !important;
}

#builder .look-canvas.piece-preview-mode .pieces-board {
  width: min(74%, 560px) !important;
  height: auto !important;
  min-height: min(486px, 55vh) !important;
}

#builder .look-canvas.piece-preview-mode .pieces-board img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: min(486px, 55vh) !important;
}

/* ── Responsive: ≤ 1100 px ───────────────────────────────── */
@media (max-width: 1100px) {
  #builder.builder-grid.is-active {
    grid-template-columns: 106px 1fr !important;
    grid-template-areas:
      "sidebar canvas"
      "detail  detail"
      "bar     bar" !important;
  }

  #builder .detail-panel {
    min-height: auto !important;
    padding: 22px 24px !important;
  }

  #builder .builder-benefits {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #builder .look-canvas.model-preview-mode .pieces-board {
    width: min(92%, 620px) !important;
    height: clamp(460px, 58vh, 600px) !important;
  }
}

/* ── Responsive: ≤ 720 px ────────────────────────────────── */
@media (max-width: 720px) {
  #builder.builder-grid.is-active {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "canvas"
      "sidebar"
      "detail"
      "bar" !important;
  }

  #builder .piece-rail {
    flex-direction: row !important;
    max-height: none !important;
    min-height: auto !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 10px 12px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(237, 205, 160, 0.1) !important;
  }

  #builder .piece-rail::before {
    display: none !important;
  }

  #builder .builder-benefits {
    grid-template-columns: repeat(2, 1fr) !important;
    border-radius: 0 0 28px 28px !important;
  }

  #builder .look-canvas.model-preview-mode {
    padding: 54px 18px 18px !important;
  }

  #builder .look-canvas.model-preview-mode .pieces-board {
    width: 100% !important;
    height: clamp(420px, 62vh, 560px) !important;
  }

  #builder .look-canvas.model-preview-mode .pieces-board img {
    max-width: 96% !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(232, 194, 142, 0.18);
  background: linear-gradient(to bottom, rgba(14, 7, 2, 0.36), rgba(8, 4, 1, 0.62));
  backdrop-filter: blur(24px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  padding: clamp(52px, 6vw, 80px) 0 48px;
  border-bottom: 1px solid rgba(232, 194, 142, 0.12);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-link { display: inline-block; }

.footer-logo { width: 132px; height: auto; display: block; }

.footer-tagline {
  color: rgba(246, 234, 216, 0.48);
  font-size: 13.5px;
  line-height: 1.72;
  margin: 0;
  max-width: 210px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(232, 194, 142, 0.22);
  border-radius: 50%;
  color: rgba(246, 234, 216, 0.52);
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.footer-social-link:hover {
  border-color: rgba(212, 160, 90, 0.54);
  color: var(--gold);
  background: rgba(201, 155, 104, 0.1);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-top: 6px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-heading {
  display: block;
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(246, 234, 216, 0.56);
  line-height: 1;
  transition: color 160ms ease;
}

.footer-col a:hover { color: var(--ivory); }

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(232, 194, 142, 0.12);
}

.footer-newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-newsletter-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 400;
  color: var(--champagne);
}

.footer-newsletter-copy span {
  font-size: 13.5px;
  color: rgba(246, 234, 216, 0.48);
  max-width: 400px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-shrink: 0;
  border: 1px solid rgba(232, 194, 142, 0.28);
  border-radius: 999px;
  background: rgba(90, 58, 34, 0.18);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  min-width: 210px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  height: 46px;
}

.newsletter-form input::placeholder { color: rgba(246, 234, 216, 0.34); }

.newsletter-form button {
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-left: 1px solid rgba(232, 194, 142, 0.18);
  background: linear-gradient(135deg, rgba(196, 138, 58, 0.82), rgba(128, 78, 36, 0.82));
  color: var(--ivory);
  font-size: 12px;
  font-weight: 760;
  font-family: inherit;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, rgba(218, 158, 72, 0.92), rgba(148, 92, 44, 0.92));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(246, 234, 216, 0.34);
}

.footer-craft {
  font-size: 11.5px;
  color: rgba(246, 234, 216, 0.26);
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
}

.footer-pay {
  display: flex;
  gap: 8px;
}

.footer-pay span {
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(246, 234, 216, 0.3);
  padding: 4px 10px;
  border: 1px solid rgba(232, 194, 142, 0.14);
  border-radius: 4px;
}

/* Footer responsive */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-tagline { max-width: none; }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: 0; flex: 1; }
}

@media (max-width: 600px) {
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-craft { text-align: left; }
}

/* ── Shared legal / info page layout ── */
.legal-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(52px, 7vw, 80px);
  border-bottom: 1px solid rgba(232, 194, 142, 0.14);
  margin-bottom: 56px;
}

.legal-hero .eyebrow { margin-bottom: 20px; }

.legal-hero h1 {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.95;
  color: var(--ivory);
  margin: 0 0 20px;
  max-width: 700px;
}

.legal-hero p {
  color: rgba(246, 234, 216, 0.56);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

.legal-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding-bottom: 80px;
}

.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc a {
  font-size: 13px;
  color: rgba(246, 234, 216, 0.46);
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
  line-height: 1.4;
}

.legal-toc a:hover {
  color: var(--ivory);
  border-left-color: var(--gold);
  background: rgba(201, 155, 104, 0.08);
}

.legal-content { max-width: 720px; }

.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
}

.legal-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 194, 142, 0.14);
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 760;
  color: var(--champagne);
  margin: 24px 0 10px;
  letter-spacing: 0.01em;
}

.legal-section p {
  color: rgba(246, 234, 216, 0.62);
  font-size: 15px;
  line-height: 1.78;
  margin: 0 0 16px;
}

.legal-section ul, .legal-section ol {
  color: rgba(246, 234, 216, 0.62);
  font-size: 15px;
  line-height: 1.78;
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-section li { margin-bottom: 8px; }

.legal-section a {
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 160, 90, 0.36);
  transition: color 160ms ease, border-color 160ms ease;
}

.legal-section a:hover { color: var(--champagne); border-color: rgba(244, 223, 191, 0.6); }

@media (max-width: 800px) {
  .legal-body { grid-template-columns: 1fr; gap: 40px; }
  .legal-toc { position: static; display: none; }
}

/* ════════════════════════════════════════════════════════════
   BUNDLE CARD v2 — Hero + Piece Tray ("Shop the Look")
   Replaces the legacy single-frame cross-fade slideshow.
   A card now reads top→bottom as: full styled look (hero),
   then a frosted tray of every piece, then name + count.
   Declared last so it wins the cascade over v1 reel rules.
   ════════════════════════════════════════════════════════════ */

/* Expand the glass panel on the Mix n Match page for a more generous canvas */
body.mix-match-page .shell {
  width: min(1680px, calc(100% - 48px));
}

.bundle-slider {
  padding: clamp(40px, 4vw, 64px) clamp(40px, 4vw, 64px) clamp(34px, 3.2vw, 52px);
}

/* ── Responsive GRID (replaces the horizontal slide/carousel) ── */
.bundle-reel.bundle-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  scroll-snap-type: none !important;
}

@media (max-width: 1240px) {
  .bundle-reel.bundle-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 860px) {
  .bundle-reel.bundle-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .bundle-reel.bundle-grid { grid-template-columns: 1fr !important; }
}

.bundle-reel .bundle-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  background: #140c07 !important;
  flex: none !important;
  width: auto !important;
  aspect-ratio: 3 / 4.15 !important;
  border-radius: 24px !important;
}

/* kill the legacy gradient scrim — hero has its own fade now */
.bundle-reel .bundle-card::after {
  display: none !important;
  content: none !important;
}

/* ── Hero: the complete styled look ── */
.bundle-hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--hero) center 14% / cover no-repeat;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* lighter, shorter fade keeps the look crisp, just seats the tray */
.bundle-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(15, 9, 4, 0.42));
  pointer-events: none;
}

.bundle-reel .bundle-card:hover .bundle-hero {
  transform: scale(1.035);
}

/* ── Piece tray: every piece, always visible ── */
.bundle-tray {
  display: flex;
  gap: 8px;
  padding: 12px 12px 4px;
  background: #140c07;
  position: relative;
  z-index: 4;
}

.bundle-tray-item {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 13px;
  border: 1px solid rgba(237, 205, 160, 0.24);
  background-image: var(--p),
    linear-gradient(160deg, rgba(246, 234, 216, 0.16), rgba(246, 234, 216, 0.05));
  background-size: 86%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.bundle-reel .bundle-card:hover .bundle-tray-item {
  border-color: rgba(237, 205, 160, 0.42);
}

/* ── Label footer: name + piece count ── */
.bundle-reel .bundle-label {
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
  padding: 12px 16px 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #140c07 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  width: auto !important;
}

.bundle-reel .bundle-label span {
  color: rgba(237, 205, 160, 0.66) !important;
  font-size: 9px !important;
}

.bundle-reel .bundle-label strong {
  font-size: clamp(15px, 1.15vw, 19px) !important;
}

/* ── Hover CTA pill on each bundle hero ── */
.bundle-cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 10px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(20, 12, 7, 0.62);
  border: 1px solid rgba(237, 205, 160, 0.5);
  color: var(--champagne);
  font-family: ui-sans-serif, Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bundle-cta svg { width: 14px; height: 14px; }

.bundle-reel .bundle-card:hover .bundle-cta {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ════════════════════════════════════════════════════════════
   LOOK DETAIL — editorial bundle breakdown (Shop-the-Look)
   Worn hero + flat-lay pieces + matched note + buy bar.
   ════════════════════════════════════════════════════════════ */
.look-detail {
  margin-top: 22px;
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.ld-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ld-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none;
  font-size: 12px; font-weight: 760; letter-spacing: 2px; text-transform: uppercase;
  transition: color 200ms ease;
}
.ld-back svg { width: 15px; height: 15px; }
.ld-back:hover { color: var(--champagne); }

/* composition header */
.ld-head {
  text-align: center;
  padding: clamp(18px, 2.4vw, 36px) 0 4px;
  border-top: 1px solid rgba(237, 205, 160, 0.16);
}
.ld-comp {
  display: inline-block; color: var(--gold);
  font-size: 11px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 12px;
}
.ld-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 72px); font-weight: 400;
  color: var(--ivory); line-height: 1; margin: 0 0 16px;
}
.ld-breakdown {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.ld-breakdown i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
.ld-tagline {
  margin: 14px 0 0; color: var(--champagne);
  font-family: Georgia, serif; font-style: italic; font-size: clamp(15px, 1.4vw, 19px);
}

/* body: worn look + pieces breakdown */
.ld-body { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 18px; }

.ld-worn {
  position: relative; margin: 0; min-height: 480px;
  border-radius: 32px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #140c07;
}
.ld-worn img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.ld-worn figcaption {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(5, 3, 1, 0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(237, 205, 160, 0.3);
  color: var(--champagne); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}

.ld-pieces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ld-piece {
  display: flex; flex-direction: column;
  border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}
.ld-piece-tag {
  padding: 16px 16px 0; color: var(--gold);
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
}
.ld-piece-img {
  flex: 1; display: grid; place-items: center;
  margin: 12px; padding: 14px; min-height: 200px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(246, 234, 216, 0.15), rgba(246, 234, 216, 0.04));
}
.ld-piece-img img { max-width: 100%; max-height: 250px; object-fit: contain; display: block; }
.ld-piece strong {
  padding: 0 16px 18px; color: var(--ivory);
  font-family: Georgia, serif; font-weight: 400; font-size: clamp(14px, 1.1vw, 18px);
}

/* foot: perfectly matched + buy */
.ld-foot {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(1.1);
}
.ld-matched strong {
  display: block; font-family: Georgia, serif; font-size: clamp(20px, 2vw, 30px);
  color: var(--ivory); margin-bottom: 8px;
}
.ld-matched span { display: block; color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 460px; }
.ld-swatches { display: flex; gap: 8px; margin-top: 16px; }
.ld-swatches span {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ld-buy { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.ld-price { text-align: right; }
.ld-price span { display: block; color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.ld-price strong { font-family: Georgia, serif; font-size: clamp(22px, 2.2vw, 32px); color: var(--champagne); }
.ld-buy-btns { display: flex; gap: 10px; }

@media (max-width: 900px) {
  .ld-body { grid-template-columns: 1fr; }
  .ld-worn { min-height: 380px; }
  .ld-foot { grid-template-columns: 1fr; }
  .ld-buy { align-items: stretch; }
  .ld-price { text-align: left; }
}
@media (max-width: 560px) {
  .ld-pieces { grid-template-columns: 1fr; }
  .ld-buy-btns { flex-direction: column; }
}

/* hidden attr must win over .look-detail/.capsule-detail display:grid */
.look-detail[hidden], .capsule-detail[hidden] { display: none !important; }

/* ════════════════════════════════════════════════════════════
   CAPSULE DETAIL — Bundle 02 modular capsule (5 ways + 10 pieces)
   ════════════════════════════════════════════════════════════ */
.capsule-detail { margin-top: 22px; display: grid; gap: 20px; scroll-margin-top: 96px; }

.cap-head { text-align: center; padding: clamp(20px,2.6vw,40px) 0 4px; border-top: 1px solid rgba(237,205,160,.16); }
.cap-kicker { display:inline-block; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.cap-head h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px,5vw,76px); font-weight: 400; color: var(--ivory); line-height: .98; margin: 0 0 18px; }
.cap-breakdown { display:inline-flex; align-items:center; gap:14px; color: var(--muted); font-size:12px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; }
.cap-breakdown i { width:4px;height:4px;border-radius:50%;background:var(--gold);display:inline-block; }
.cap-tagline { margin:14px auto 0; max-width:560px; color: var(--champagne); font-family:Georgia,serif; font-style:italic; font-size:clamp(15px,1.4vw,19px); }

.cap-ways, .cap-pieces {
  padding: clamp(22px,2.6vw,38px); border-radius: 32px;
  border: 1px solid rgba(255,255,255,.12); border-top-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.03); box-shadow: inset 0 1px 0 rgba(255,255,255,.26);
  backdrop-filter: blur(14px) saturate(1.1);
}
.cap-section-head { display:flex; align-items:baseline; justify-content:space-between; gap:12px; margin-bottom:18px; flex-wrap:wrap; }
.cap-section-head strong { font-family:Georgia,serif; font-weight:400; font-size:clamp(22px,2.4vw,34px); color:var(--ivory); }
.cap-section-head span { color:var(--muted); font-size:13px; letter-spacing:1px; }

.cap-ways-grid { display:grid; grid-template-columns: repeat(6,1fr); gap:14px; }
.cap-way { margin:0; display:flex; flex-direction:column; }
.cap-way-img {
  aspect-ratio: 3/4.4; border-radius:20px; overflow:hidden;
  background: var(--w) center 12% / cover no-repeat, #140c07;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}
.cap-way:hover .cap-way-img { transform: translateY(-6px); border-color: rgba(237,205,160,.42); }
.cap-way figcaption { padding:12px 4px 0; }
.cap-way figcaption span { display:block; color:var(--gold); font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase; }
.cap-way figcaption strong { display:block; font-family:Georgia,serif; font-weight:400; font-size:clamp(14px,1.1vw,17px); color:var(--ivory); margin:4px 0 2px; }
.cap-way figcaption small { color:var(--muted); font-size:11.5px; }

.cap-cat { margin-top: 24px; }
.cap-cat:first-of-type { margin-top: 0; }
.cap-cat-label { display:flex; align-items:center; gap:8px; color:var(--champagne); font-size:12px; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; margin-bottom:14px; }
.cap-cat-label i { font-style:normal; display:grid; place-items:center; min-width:20px; height:20px; padding:0 6px; border-radius:999px; background:rgba(237,205,160,.16); color:var(--gold); font-size:10px; }
.cap-piece-row { display:grid; grid-template-columns: repeat(5,1fr); gap:12px; }
.cap-piece { display:flex; flex-direction:column; gap:8px; }
.cap-piece-img {
  aspect-ratio:1/1; border-radius:16px;
  background: var(--p) center / 82% no-repeat, linear-gradient(160deg, rgba(246,234,216,.16), rgba(246,234,216,.05));
  border:1px solid rgba(237,205,160,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.cap-piece strong { color:var(--ivory); font-family:Georgia,serif; font-weight:400; font-size:13px; text-align:center; }

@media (max-width: 900px) {
  .cap-ways-grid { grid-template-columns: repeat(3,1fr); }
  .cap-piece-row { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 560px) {
  .cap-ways-grid { grid-template-columns: repeat(2,1fr); }
  .cap-piece-row { grid-template-columns: repeat(3,1fr); }
}

/* ════════════════════════════════════════════════════════════
   CATALOG BROWSE — Bundles page (editorial catalog grid,
   reference layout adapted to DEZIIND dark-amber luxury)
   ════════════════════════════════════════════════════════════ */
.catalog { margin: 6px 0 28px; }

/* utility bar */
.catalog-bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  padding: 16px 2px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(237, 205, 160, 0.24);
}
.catalog-bar-left { display: flex; gap: 26px; }
.cat-tool {
  display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 0; cursor: pointer; padding: 0;
  color: var(--ivory); font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: color .2s ease;
}
.cat-tool svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; }
.cat-tool:hover { color: var(--gold); }

.catalog-bar-center { display: flex; align-items: center; justify-content: center; gap: 14px; }
.cat-chip { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase; }
.cat-count { color: var(--muted); font-size: 12px; letter-spacing: 1px; }

.catalog-bar-right { display: flex; justify-content: flex-end; gap: 6px; }
.cat-view {
  display: grid; place-items: center; width: 34px; height: 34px;
  border: 1px solid rgba(237, 205, 160, 0.22); border-radius: 9px;
  background: none; cursor: pointer; color: rgba(251, 241, 226, 0.55);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.cat-view svg { width: 17px; height: 17px; fill: currentColor; }
.cat-view:hover { color: var(--ivory); border-color: rgba(237, 205, 160, 0.4); }
.cat-view.is-active { color: var(--ivory); border-color: rgba(237, 205, 160, 0.6); background: rgba(237, 205, 160, 0.1); }

/* grid */
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.catalog-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.catalog-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.catalog-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }

/* card */
.catalog-card { display: flex; flex-direction: column; text-decoration: none; cursor: pointer; }
.cc-media {
  position: relative; aspect-ratio: 3 / 4.2; overflow: hidden;
  background: var(--hero) center 12% / cover no-repeat, #140c07;
  transition: filter .35s ease;
}
.catalog-card:hover .cc-media { filter: brightness(1.06) saturate(1.04); }
.cc-save {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  display: grid; place-items: center; border: 0; border-radius: 50%;
  background: rgba(18, 11, 6, 0.42); backdrop-filter: blur(6px);
  color: var(--ivory); cursor: pointer; opacity: 0;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
}
.catalog-card:hover .cc-save, .cc-save:focus-visible { opacity: 1; }
.cc-save svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cc-save:hover { background: rgba(18, 11, 6, 0.72); color: var(--gold); }
.cc-save.is-saved svg { fill: var(--ivory); stroke: var(--ivory); }
.cc-save.is-saved { opacity: 1; }

.cc-info { padding: 13px 4px 22px; display: flex; flex-direction: column; gap: 5px; }
.cc-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.cc-name {
  margin: 0; font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--ivory); line-height: 1.32;
}
.cc-add { font-size: 21px; line-height: 1; color: var(--muted); flex-shrink: 0; transition: color .2s ease, transform .25s ease; }
.catalog-card:hover .cc-add { color: var(--gold); transform: rotate(90deg); }
.cc-sub { font-size: 12px; color: var(--muted); letter-spacing: .4px; }
.cc-price { font-size: 13px; color: var(--champagne); font-weight: 600; letter-spacing: .5px; }
.cc-swatches { display: flex; gap: 6px; margin-top: 5px; }
.cc-swatches span { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.28); }

.catalog-card.is-selected .cc-media { outline: 2px solid var(--gold); outline-offset: -2px; }
.catalog-card.is-selected .cc-name { color: var(--gold); }

/* responsive */
@media (max-width: 1100px) {
  .catalog-grid, .catalog-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid.cols-6 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .catalog-grid, .catalog-grid.cols-4, .catalog-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
  .catalog-bar { grid-template-columns: 1fr auto; }
  .catalog-bar-center { display: none; }
  .catalog-bar-right { display: none; }
}

/* ── In-card style carousel (6 styles + arrows) ── */
.cc-carousel { background: #140c07; }
.cc-slides { position: absolute; inset: 0; z-index: 0; }
.cc-slide {
  position: absolute; inset: 0;
  background: var(--s) center 12% / cover no-repeat;
  opacity: 0; transition: opacity .5s ease;
}
.cc-slide.is-active { opacity: 1; }

.cc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 0; border-radius: 50%; z-index: 4; cursor: pointer;
  background: rgba(18, 11, 6, 0.46); backdrop-filter: blur(6px);
  color: var(--ivory); opacity: 0;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
}
.cc-prev { left: 10px; }
.cc-next { right: 10px; }
.catalog-card:hover .cc-arrow { opacity: 1; }
.cc-arrow:hover { background: rgba(18, 11, 6, 0.8); color: var(--gold); }
.cc-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cc-stylecount {
  position: absolute; top: 12px; left: 12px; z-index: 4;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--ivory);
  background: rgba(18, 11, 6, 0.46); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 999px;
}

.cc-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 4;
}
.cc-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(246, 234, 216, 0.4); transition: background .25s ease, width .25s ease;
}
.cc-dots span.is-active { background: var(--champagne); width: 18px; border-radius: 3px; }

/* ════════════════════════════════════════════════════════════
   FULL-SCREEN BUNDLE MODAL (opens on card click)
   ════════════════════════════════════════════════════════════ */
body.modal-open { overflow: hidden; }
.bundle-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(12px, 3vw, 40px); }
.bundle-modal[hidden] { display: none !important; }
.bm-scrim { position: absolute; inset: 0; background: rgba(8, 4, 2, 0.74); backdrop-filter: blur(6px); }

.bm-shell {
  position: relative; z-index: 1; width: min(1080px, 100%); max-height: 92vh; overflow-y: auto;
  border-radius: 28px; border: 1px solid rgba(237, 205, 160, 0.28); border-top-color: rgba(237, 205, 160, 0.5);
  background: linear-gradient(160deg, #241710, #160d07);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: clamp(22px, 3vw, 40px);
  animation: bmIn .4s cubic-bezier(.22, 1, .36, 1);
}
@keyframes bmIn { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }

.bm-close {
  position: absolute; top: 16px; right: 16px; z-index: 3; width: 40px; height: 40px;
  display: grid; place-items: center; border: 1px solid rgba(237, 205, 160, 0.3); border-radius: 50%;
  background: rgba(20, 12, 7, 0.6); color: var(--ivory); cursor: pointer; transition: color .2s, border-color .2s;
}
.bm-close:hover { color: var(--gold); border-color: rgba(237, 205, 160, 0.6); }
.bm-close svg { width: 18px; height: 18px; }

.bm-head { text-align: center; margin-bottom: 22px; padding: 0 36px; }
.bm-kicker { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; }
.bm-head h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(28px, 3.4vw, 48px); color: var(--ivory); margin: 8px 0 6px; line-height: 1; }
.bm-sub { color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.bm-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 32px); }
.bm-stage { position: relative; border-radius: 20px; overflow: hidden; background: #140c07; aspect-ratio: 3 / 4; }
.bm-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.bm-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px;
  display: grid; place-items: center; border: 0; border-radius: 50%; z-index: 2; cursor: pointer;
  background: rgba(18, 11, 6, 0.55); backdrop-filter: blur(6px); color: var(--ivory);
  transition: background .2s ease, color .2s ease;
}
.bm-prev { left: 12px; } .bm-next { right: 12px; }
.bm-arrow:hover { background: rgba(18, 11, 6, 0.85); color: var(--gold); }
.bm-arrow svg { width: 20px; height: 20px; }
.bm-counter { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--ivory); background: rgba(18, 11, 6, 0.55); padding: 4px 10px; border-radius: 999px; }
.bm-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.bm-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(246, 234, 216, 0.45); transition: background .25s ease, width .25s ease; }
.bm-dots span.is-active { background: var(--champagne); width: 18px; border-radius: 3px; }

.bm-side { display: flex; flex-direction: column; }
.bm-stylemeta { padding-bottom: 16px; border-bottom: 1px solid rgba(237, 205, 160, 0.18); margin-bottom: 18px; }
.bm-style-tag { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.bm-stylemeta strong { display: block; font-family: Georgia, serif; font-weight: 400; font-size: clamp(20px, 2vw, 28px); color: var(--ivory); margin: 6px 0 3px; }
.bm-stylemeta span { color: var(--muted); font-size: 13px; }
.bm-pieces-head { color: var(--champagne); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.bm-pieces { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.bm-piece { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bm-piece-img { width: 100%; aspect-ratio: 1 / 1; border-radius: 11px; background-size: 80%; background-position: center; background-repeat: no-repeat; background-color: rgba(246, 234, 216, 0.1); border: 1px solid rgba(237, 205, 160, 0.22); }
.bm-piece span { color: var(--gold); font-size: 8.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.bm-piece strong { color: var(--muted); font-weight: 500; font-size: 10px; text-align: center; line-height: 1.2; }

.bm-buy { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.bm-price { display: flex; flex-direction: column; }
.bm-price span { color: var(--muted); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.bm-price strong { color: var(--champagne); font-family: Georgia, serif; font-size: 24px; font-weight: 400; }

@media (max-width: 800px) {
  .bm-body { grid-template-columns: 1fr; }
  .bm-stage { aspect-ratio: 4 / 5; }
}

/* ════════════════════════════════════════════════════════════
   PDP DETAIL OVERLAY (Rare Rabbit-style product page on click)
   reuses .bundle-modal / .bm-scrim / .bm-close / @keyframes bmIn
   ════════════════════════════════════════════════════════════ */
.pdp {
  position: relative; z-index: 1;
  width: min(1400px, 100%); height: min(94vh, 100%);
  overflow-y: auto; overflow-x: hidden;
  background: linear-gradient(180deg, #241710, #180e08);
  border: 1px solid rgba(237, 205, 160, 0.26); border-radius: 24px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
  animation: bmIn .4s cubic-bezier(.22, 1, .36, 1);
}
.pdp .bm-close { z-index: 7; }

.pdp-crumb {
  position: sticky; top: 0; z-index: 6;
  display: flex; align-items: center; gap: 8px;
  padding: 16px clamp(18px, 3vw, 40px);
  font-size: 12px; letter-spacing: 1px; color: var(--muted);
  background: rgba(20, 12, 7, 0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(237, 205, 160, 0.14);
}
.pdp-crumb a { color: var(--muted); text-decoration: none; }
.pdp-crumb a:hover { color: var(--gold); }
.pdp-crumb i { opacity: .5; font-style: normal; }
.pdp-crumb strong { color: var(--ivory); font-weight: 500; }

.pdp-main { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(18px, 2.4vw, 40px); padding: clamp(18px, 2.4vw, 40px); align-items: start; }

.pdp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdp-shot { margin: 0; position: relative; border-radius: 14px; overflow: hidden; background: #efe7d9; aspect-ratio: 3 / 4; }
.pdp-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
.pdp-shot-piece { background: linear-gradient(160deg, #efe7d9, #e3d7c2); }
.pdp-shot-piece img { object-fit: contain; padding: 14%; object-position: center; }
.pdp-shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; font-size: 10px; letter-spacing: .5px; text-transform: uppercase; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.55)); opacity: 0; transition: opacity .25s ease; }
.pdp-shot:hover figcaption { opacity: 1; }
.pdp-shot-piece figcaption { color: var(--ink); background: none; opacity: .75; }

.pdp-info { position: sticky; top: 70px; display: flex; flex-direction: column; }
.pdp-title { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(26px, 2.6vw, 40px); color: var(--ivory); margin: 0 0 6px; line-height: 1.05; }
.pdp-sub { color: var(--muted); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 18px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pdp-mrp { color: var(--muted); text-decoration: line-through; font-size: 15px; }
.pdp-now { color: var(--champagne); font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.pdp-off { color: #e0a55c; font-size: 13px; font-weight: 700; }
.pdp-tax { color: rgba(246, 234, 216, 0.5); font-size: 11px; margin-top: 4px; }
.pdp-points { margin-top: 16px; padding: 10px 14px; border-radius: 10px; background: rgba(237, 205, 160, 0.1); border: 1px solid rgba(237, 205, 160, 0.2); color: var(--champagne); font-size: 12px; letter-spacing: 1px; }

.pdp-opt-head { display: flex; justify-content: space-between; align-items: center; margin: 24px 0 12px; }
.pdp-opt-head span { color: var(--ivory); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.pdp-opt-head a { color: var(--gold); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; text-decoration: underline; }
.pdp-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-sizes button { min-width: 52px; padding: 9px 12px; border: 1px solid rgba(237, 205, 160, 0.34); border-radius: 8px; background: transparent; color: var(--ivory); font-size: 13px; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.pdp-sizes button:hover { border-color: var(--gold); }
.pdp-sizes button.sel { background: var(--champagne); color: #2a1a12; border-color: var(--champagne); }
.pdp-sizes button.off { color: rgba(246, 234, 216, 0.3); text-decoration: line-through; border-color: rgba(237, 205, 160, 0.12); cursor: not-allowed; }

.pdp-qty-row { margin: 20px 0; }
.pdp-qty { display: inline-flex; align-items: center; border: 1px solid rgba(237, 205, 160, 0.3); border-radius: 8px; }
.pdp-qty .qbtn { width: 42px; height: 42px; background: transparent; border: 0; color: var(--ivory); font-size: 18px; cursor: pointer; }
.pdp-qty span { min-width: 36px; text-align: center; color: var(--ivory); }

.pdp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdp-cart, .pdp-buy { padding: 16px; border-radius: 8px; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; cursor: pointer; transition: background .2s ease, filter .2s ease; }
.pdp-cart { background: transparent; border: 1px solid var(--champagne); color: var(--champagne); }
.pdp-cart:hover { background: rgba(244, 223, 191, 0.1); }
.pdp-buy { background: var(--champagne); border: 1px solid var(--champagne); color: #2a1a12; }
.pdp-buy:hover { filter: brightness(1.06); }

.pdp-acc { margin-top: 26px; border-top: 1px solid rgba(237, 205, 160, 0.16); }
.pdp-acc details { border-bottom: 1px solid rgba(237, 205, 160, 0.16); }
.pdp-acc summary { list-style: none; cursor: pointer; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; color: var(--ivory); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary i { font-style: normal; color: var(--gold); font-size: 18px; transition: transform .2s ease; }
.pdp-acc details[open] summary i { transform: rotate(45deg); }
.pdp-acc-body { padding: 0 0 16px; color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.pdp-incl { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pdp-incl li { display: flex; gap: 10px; align-items: baseline; color: var(--champagne); font-size: 13px; }
.pdp-incl li span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; min-width: 56px; }

.pdp-reco { padding: clamp(18px, 2.4vw, 40px); border-top: 1px solid rgba(237, 205, 160, 0.16); }
.pdp-reco h3 { font-family: Georgia, serif; font-weight: 400; font-size: 22px; color: var(--ivory); margin: 0 0 18px; }
.pdp-reco-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pdp-reco-card { text-decoration: none; }
.pdp-reco-img { aspect-ratio: 3 / 4; border-radius: 12px; background: #efe7d9 center 12% / cover no-repeat; margin-bottom: 10px; transition: transform .3s ease; }
.pdp-reco-card:hover .pdp-reco-img { transform: translateY(-5px); }
.pdp-reco-card strong { display: block; color: var(--ivory); font-family: Georgia, serif; font-weight: 400; font-size: 14px; }
.pdp-reco-card span { color: var(--muted); font-size: 12px; }

@media (max-width: 900px) {
  .pdp-main { grid-template-columns: 1fr; }
  .pdp-info { position: static; }
  .pdp-reco-row { grid-template-columns: repeat(2, 1fr); }
}
