/** Shopify CDN: Minification failed

Line 998:0 Unexpected "}"

**/
/* ──────────────────────────────────────────────────────────────
   Collection Lookbook — Veste Couture
   All styles scoped under .section-collection-lookbook
   No global selectors, no theme collisions.
   ────────────────────────────────────────────────────────────── */

.section-collection-lookbook {
  --cl-accent: #d97b5f;
  --cl-ink:    #1f1a14;
  --cl-cream:  #f5efe6;
  --cl-muted:  #3a3428;

  background: var(--cl-cream);
  color: var(--cl-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 300;
  overflow: hidden; /* prevent horizontal scroll leak */
}
.section-collection-lookbook *,
.section-collection-lookbook *::before,
.section-collection-lookbook *::after {
  box-sizing: border-box;
}
.section-collection-lookbook button {
  font-family: inherit;
  color: inherit;
}

/* ─── Intro ─── */
.section-collection-lookbook .cl-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  padding: 56px 48px 32px;
}
.section-collection-lookbook .cl-kicker {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cl-accent);
  margin-bottom: 20px;
}
.section-collection-lookbook .cl-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 9vw, 128px);
  line-height: .92;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--cl-ink);
}
.section-collection-lookbook .cl-meta {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cl-muted);
  opacity: .7;
}
.section-collection-lookbook .cl-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cl-muted);
  max-width: 480px;
  text-wrap: pretty;
  margin: 0 0 18px;
}
.section-collection-lookbook .cl-description p { margin: 0 0 10px; }
.section-collection-lookbook .cl-description p:last-child { margin-bottom: 0; }

/* ─── Lookbook ─── */
.section-collection-lookbook .cl-lookbook {
  padding: 16px 48px 12px;
}
.section-collection-lookbook .cl-lookbook__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cl-muted);
}
.section-collection-lookbook .cl-arrows {
  display: flex;
  gap: 6px;
}
.section-collection-lookbook .cl-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(60,50,40,.2);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.section-collection-lookbook .cl-arrow:hover {
  background: var(--cl-ink);
  color: var(--cl-cream);
  border-color: var(--cl-ink);
}
.section-collection-lookbook .cl-lookbook__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.section-collection-lookbook .cl-lookbook__track::-webkit-scrollbar { display: none; }

.section-collection-lookbook .cl-look-tile {
  flex: 0 0 360px;
  height: 520px;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  color: inherit;
  text-align: left;
  overflow: hidden;
}
.section-collection-lookbook .cl-look-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,0,.2,1);
}
.section-collection-lookbook .cl-look-tile:hover .cl-look-tile__img {
  transform: scale(1.04);
}
.section-collection-lookbook .cl-look-tile__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.section-collection-lookbook .cl-look-tile__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--cl-cream);
  background: rgba(0,0,0,.35);
  padding: 5px 9px;
  backdrop-filter: blur(4px);
}
.section-collection-lookbook .cl-look-tile__title {
  position: absolute;
  left: 18px;
  bottom: 46px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--cl-cream);
  text-wrap: balance;
  max-width: calc(100% - 36px);
}
.section-collection-lookbook .cl-look-tile__cta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cl-cream);
  opacity: .9;
}
.section-collection-lookbook .cl-lookbook__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.section-collection-lookbook .cl-dot {
  width: 6px;
  height: 2px;
  background: rgba(60,50,40,.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .25s;
}
.section-collection-lookbook .cl-dot.is-active {
  width: 28px;
  background: var(--cl-accent);
}

.section-collection-lookbook .cl-rule {
  margin: 24px 48px;
  height: 1px;
  background: rgba(60,50,40,.15);
}

/* ─── Catalog ─── */
.section-collection-lookbook .cl-catalog {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 8px 48px 96px;
  align-items: start;
}

/* ─── Filters ─── */
.section-collection-lookbook .cl-filters {
  position: sticky;
  top: 88px;
}
.section-collection-lookbook .cl-filters__head {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cl-muted);
  opacity: .7;
  margin: 0 0 20px;
  font-weight: 400;
}
.section-collection-lookbook .cl-filter-group {
  border-bottom: 1px solid rgba(60,50,40,.12);
  padding: 16px 0;
}
.section-collection-lookbook .cl-filter-group:first-of-type { padding-top: 0; }
.section-collection-lookbook .cl-filter-group__title {
  list-style: none;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.section-collection-lookbook .cl-filter-group__title::-webkit-details-marker { display: none; }
.section-collection-lookbook .cl-filter-group[open] .cl-filter-group__toggle { transform: rotate(180deg); }
.section-collection-lookbook .cl-filter-group__toggle {
  opacity: .5;
  font-size: 11px;
  transition: transform .2s;
}
.section-collection-lookbook .cl-filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.section-collection-lookbook .cl-filter-group__options--swatch {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.section-collection-lookbook .cl-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  padding: 2px 0;
}
.section-collection-lookbook .cl-check input {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(60,50,40,.4);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: none;
}
.section-collection-lookbook .cl-check input:checked {
  background: var(--cl-ink);
  border-color: var(--cl-ink);
}
.section-collection-lookbook .cl-check input:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid var(--cl-cream);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.section-collection-lookbook .cl-check__label { flex: 1; }
.section-collection-lookbook .cl-check__count { opacity: .5; font-size: 11px; }
.section-collection-lookbook .cl-check.is-disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

.section-collection-lookbook .cl-size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(60,50,40,.25);
  font-size: 11px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .12s, color .12s, border-color .12s;
  min-width: 40px;
}
.section-collection-lookbook .cl-size-pill.is-active {
  background: var(--cl-ink);
  color: var(--cl-cream);
  border-color: var(--cl-ink);
}
.section-collection-lookbook .cl-size-pill.is-disabled {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.section-collection-lookbook .cl-price-range {
  display: flex;
  gap: 10px;
}
.section-collection-lookbook .cl-price-range label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cl-muted);
  opacity: .7;
}
.section-collection-lookbook .cl-price-range input {
  border: 1px solid rgba(60,50,40,.25);
  background: transparent;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
  color: var(--cl-ink);
}

.section-collection-lookbook .cl-clear-all {
  margin-top: 20px;
  background: transparent;
  border: none;
  color: var(--cl-muted);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: .7;
  padding: 0;
}
.section-collection-lookbook .cl-clear-all:hover { opacity: 1; }

/* ─── Grid bar ─── */
.section-collection-lookbook .cl-grid-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--cl-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.section-collection-lookbook .cl-grid-bar__left {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.section-collection-lookbook .cl-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid rgba(60,50,40,.25);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .12s;
}
.section-collection-lookbook .cl-pill:hover { background: rgba(60,50,40,.06); }
.section-collection-lookbook .cl-pill__x { opacity: .6; font-size: 13px; line-height: 1; }

.section-collection-lookbook .cl-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-collection-lookbook .cl-sort__label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
}
.section-collection-lookbook .cl-sort select {
  background: transparent;
  border: 1px solid rgba(60,50,40,.25);
  padding: 7px 26px 7px 10px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  color: var(--cl-ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none' stroke='%233a3428' stroke-width='1.2'%3E%3Cpath d='M2 4l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

/* ─── Product grid ─── */
.section-collection-lookbook .cl-product-grid {
  display: grid;
  grid-template-columns: repeat(var(--cl-cols, 4), 1fr);
  gap: 32px 18px;
}
.section-collection-lookbook .cl-pcard {
  position: relative;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  display: block;
}
.section-collection-lookbook .cl-pcard__pic {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(60,50,40,.05);
}
.section-collection-lookbook .cl-pcard__main,
.section-collection-lookbook .cl-pcard__alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s;
}
.section-collection-lookbook .cl-pcard__alt { opacity: 0; }
.section-collection-lookbook .cl-pcard:hover .cl-pcard__main { opacity: 0; }
.section-collection-lookbook .cl-pcard:hover .cl-pcard__alt { opacity: 1; }

.section-collection-lookbook .cl-pcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cl-cream);
  padding: 4px 9px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  z-index: 2;
}
.section-collection-lookbook .cl-pcard__heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245,239,230,.85);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  font-size: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.section-collection-lookbook .cl-pcard__heart:hover { background: var(--cl-cream); }
.section-collection-lookbook .cl-pcard__heart.is-saved { background: var(--cl-accent); color: var(--cl-cream); }
.section-collection-lookbook .cl-pcard__heart.is-saved::after { content: '♥'; }
.section-collection-lookbook .cl-pcard__heart.is-saved { font-size: 0; }
.section-collection-lookbook .cl-pcard__heart.is-saved::after { font-size: 14px; }

.section-collection-lookbook .cl-pcard__quickadd {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--cl-ink);
  color: var(--cl-cream);
  border: none;
  padding: 11px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  z-index: 2;
}
.section-collection-lookbook .cl-pcard:hover .cl-pcard__quickadd {
  opacity: 1;
  transform: translateY(0);
}

.section-collection-lookbook .cl-pcard__meta {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.section-collection-lookbook .cl-pcard__name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.15;
  flex: 1;
  min-width: 0;
}
.section-collection-lookbook .cl-pcard__price {
  font-size: 12px;
  opacity: .8;
  white-space: nowrap;
}
.section-collection-lookbook .cl-pcard__price--sale { color: var(--cl-accent); }
.section-collection-lookbook .cl-pcard__price--was { text-decoration: line-through; opacity: .5; margin-left: 6px; }

.section-collection-lookbook .cl-empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  font-size: 14px;
  color: var(--cl-muted);
}
.section-collection-lookbook .cl-empty__clear {
  margin-top: 12px;
  background: transparent;
  border: 1px solid rgba(60,50,40,.25);
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
}

.section-collection-lookbook .cl-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cl-muted);
}
.section-collection-lookbook .cl-pagination a { color: inherit; text-decoration: none; }
.section-collection-lookbook .cl-pagination a:hover { color: var(--cl-ink); }

/* ─── Modal ─── */
.section-collection-lookbook .cl-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(20,15,10,.55);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  justify-content: flex-end;
}
.section-collection-lookbook .cl-modal-bg[hidden] { display: none; }
.section-collection-lookbook .cl-modal-bg[data-style="hotspot"] .cl-side-panel { display: none; }
.section-collection-lookbook .cl-modal-bg:not([data-style="hotspot"]) .cl-hotspot-stage { display: none; }
.section-collection-lookbook .cl-modal-bg[data-style="hotspot"] { justify-content: center; align-items: center; padding: 40px; }

/* side panel */
.section-collection-lookbook .cl-side-panel {
  width: 520px;
  max-width: 100%;
  background: var(--cl-cream);
  display: flex;
  flex-direction: column;
  animation: cl-slide-in .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes cl-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

.section-collection-lookbook .cl-side-panel__hero {
  position: relative;
  height: 300px;
  flex: none;
}
.section-collection-lookbook .cl-side-panel__hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.section-collection-lookbook .cl-side-panel__num {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--cl-cream);
  background: rgba(0,0,0,.35);
  padding: 5px 9px;
  backdrop-filter: blur(4px);
}
.section-collection-lookbook .cl-side-panel__close,
.section-collection-lookbook .cl-hotspot-stage__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: none;
  background: rgba(245,239,230,.85);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.section-collection-lookbook .cl-side-panel__body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}
.section-collection-lookbook .cl-side-panel__sub {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cl-accent);
  margin-bottom: 6px;
}
.section-collection-lookbook .cl-side-panel__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  margin: 0 0 22px;
  font-weight: 300;
}
.section-collection-lookbook .cl-side-panel__row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(60,50,40,.12);
}
.section-collection-lookbook .cl-side-panel__row .thumb {
  width: 64px; height: 84px;
  background-size: cover;
  background-position: center;
  flex: none;
  background-color: rgba(60,50,40,.05);
}
.section-collection-lookbook .cl-side-panel__row .info { flex: 1; min-width: 0; }
.section-collection-lookbook .cl-side-panel__row .nm {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.1;
}
.section-collection-lookbook .cl-side-panel__row .px {
  font-size: 12px; opacity: .75; margin-top: 2px;
}
.section-collection-lookbook .cl-side-panel__row .sz {
  display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap;
}
.section-collection-lookbook .cl-side-panel__row .sz button {
  padding: 4px 9px;
  border: 1px solid rgba(60,50,40,.25);
  background: transparent;
  font-size: 10px;
  letter-spacing: .1em;
  cursor: pointer;
}
.section-collection-lookbook .cl-side-panel__row .sz button.active {
  background: var(--cl-ink);
  color: var(--cl-cream);
  border-color: var(--cl-ink);
}
.section-collection-lookbook .cl-side-panel__row .sz button[disabled] {
  opacity: .3; cursor: not-allowed; text-decoration: line-through;
}
.section-collection-lookbook .cl-side-panel__row .add {
  align-self: center;
  padding: 9px 14px;
  border: 1px solid var(--cl-ink);
  background: transparent;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  flex: none;
}
.section-collection-lookbook .cl-side-panel__row .add:hover {
  background: var(--cl-ink);
  color: var(--cl-cream);
}
.section-collection-lookbook .cl-side-panel__row .add[disabled] {
  opacity: .4; cursor: not-allowed;
}
.section-collection-lookbook .cl-side-panel__footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(60,50,40,.15);
  flex: none;
}
.section-collection-lookbook .cl-add-all {
  width: 100%;
  background: var(--cl-ink);
  color: var(--cl-cream);
  border: none;
  padding: 14px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  cursor: pointer;
}
.section-collection-lookbook .cl-add-all:hover { background: var(--cl-accent); }
.section-collection-lookbook .cl-add-all[disabled] { opacity: .5; cursor: not-allowed; }

/* hotspot stage */
.section-collection-lookbook .cl-hotspot-stage {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-collection-lookbook .cl-hotspot-stage img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
}
.section-collection-lookbook .cl-hotspot-stage__meta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--cl-cream);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.section-collection-lookbook .cl-hotspot-stage__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  margin-top: 6px;
}
.section-collection-lookbook .cl-hotspot {
  position: absolute;
  width: 32px; height: 32px;
  background: var(--cl-cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cl-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(245,239,230,.3);
}
@keyframes cl-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,239,230,.3); }
  50%      { box-shadow: 0 0 0 10px rgba(245,239,230,0); }
}
.section-collection-lookbook .cl-hotspot .plus {
  position: relative;
  width: 12px; height: 12px;
}
.section-collection-lookbook .cl-hotspot .plus::before,
.section-collection-lookbook .cl-hotspot .plus::after {
  content: ''; position: absolute; background: var(--cl-ink);
}
.section-collection-lookbook .cl-hotspot .plus::before { left: 5px; top: 0; width: 2px; height: 12px; }
.section-collection-lookbook .cl-hotspot .plus::after  { left: 0; top: 5px; width: 12px; height: 2px; }

.section-collection-lookbook .cl-hotspot-card {
  position: absolute;
  transform: translate(-50%, calc(-100% - 22px));
  background: var(--cl-cream);
  padding: 14px;
  width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  display: flex;
  gap: 12px;
  z-index: 2;
}
.section-collection-lookbook .cl-hotspot-card .thumb {
  width: 60px; height: 80px; flex: none;
  background-size: cover; background-position: center;
}
.section-collection-lookbook .cl-hotspot-card .nm {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.1;
}
.section-collection-lookbook .cl-hotspot-card .px { font-size: 11px; opacity: .7; margin-top: 4px; }
.section-collection-lookbook .cl-hotspot-card button {
  margin-top: 8px;
  border: 1px solid var(--cl-ink);
  background: transparent;
  padding: 5px 10px;
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ─── Mobile filter drawer ─── */
.section-collection-lookbook .cl-mobile-filter-bar {
  display: none;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(60,50,40,.12);
  position: sticky;
  top: 60px;
  background: var(--cl-cream);
  z-index: 30;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-collection-lookbook .cl-mobile-filter-bar button {
  background: transparent;
  border: 1px solid rgba(60,50,40,.25);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--cl-ink);
}
.section-collection-lookbook .cl-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(20,15,10,.55);
  backdrop-filter: blur(8px);
}
.section-collection-lookbook .cl-mobile-drawer[hidden] { display: none; }
.section-collection-lookbook .cl-mobile-drawer__sheet {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 84vw;
  max-width: 380px;
  background: var(--cl-cream);
  padding: 24px 24px 80px;
  overflow-y: auto;
}
.section-collection-lookbook .cl-mobile-drawer__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}
.section-collection-lookbook .cl-mobile-drawer__apply {
  position: fixed;
  left: 0; bottom: 0;
  width: 84vw;
  max-width: 380px;
  background: var(--cl-ink);
  color: var(--cl-cream);
  border: none;
  padding: 16px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .section-collection-lookbook .cl-intro { padding: 40px 24px 24px; }
  .section-collection-lookbook .cl-title { font-size: clamp(56px, 8vw, 88px); }
  .section-collection-lookbook .cl-lookbook { padding: 12px 24px 8px; }
  .section-collection-lookbook .cl-rule { margin: 0 24px; }
  .section-collection-lookbook .cl-catalog {
    padding: 24px 24px 64px;
    gap: 32px;
    grid-template-columns: 200px 1fr;
  }
  .section-collection-lookbook .cl-product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px 16px;
  }
  .section-collection-lookbook .cl-side-panel { width: 440px; }
}

@media (max-width: 720px) {
  /* Intro — handoff spec exact */
  .section-collection-lookbook .cl-kicker { display: none; }
  .section-collection-lookbook .cl-intro {
    grid-template-columns: 1fr;
    padding: 14px 20px 4px;
    gap: 8px;
    align-items: start;
  }
  .section-collection-lookbook .cl-title {
    font-size: 52px;
    line-height: 0.95;
    white-space: normal;
    margin: 0;
  }
  .section-collection-lookbook .cl-description { display: none; }
  .section-collection-lookbook .cl-meta {
    font-size: 9.5px;
    letter-spacing: 0.35em;
    margin-top: 4px;
  }

  /* Lookbook strip — handoff spec exact */
  .section-collection-lookbook .cl-lookbook { padding: 4px 20px 4px; }
  .section-collection-lookbook .cl-lookbook__head {
    font-size: 10px;
    margin: 8px 0 8px;
    gap: 12px;
  }
  .section-collection-lookbook .cl-arrow {
    width: 34px;
    height: 34px;
    border-radius: 17px;
  }
  .section-collection-lookbook .cl-lookbook__track {
    gap: 10px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    padding-left: 0;
    padding-right: 0;
  }
  .section-collection-lookbook .cl-look-tile {
    flex: 0 0 calc(100vw - 80px);
    height: 460px;
    scroll-snap-align: center;
  }
  .section-collection-lookbook .cl-look-tile__title { font-size: 20px; }
  .section-collection-lookbook .cl-rule { margin: 0 20px; }

  /* Catalog grid + filters mobile — kept from previous */
  .section-collection-lookbook .cl-mobile-filter-bar { display: flex; }
  .section-collection-lookbook .cl-catalog {
    display: block;
    padding: 16px 20px 56px;
  }
  .section-collection-lookbook .cl-filters { display: none; }
  .section-collection-lookbook .cl-grid-bar { font-size: 10px; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
  .section-collection-lookbook .cl-pill { padding: 4px 9px; font-size: 9px; }
  .section-collection-lookbook .cl-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 12px;
  }
  .section-collection-lookbook .cl-pcard__name { font-size: 15px; }
  .section-collection-lookbook .cl-pcard__price { font-size: 11px; }
  .section-collection-lookbook .cl-pcard__quickadd {
    opacity: 1; transform: none; padding: 9px; font-size: 9px;
  }
  .section-collection-lookbook .cl-pcard__heart { display: none; }

  .section-collection-lookbook .cl-side-panel {
    width: 100vw;
    max-width: 100vw;
    height: 88vh;
    margin-top: auto;
    border-radius: 14px 14px 0 0;
    animation: cl-slide-up .28s cubic-bezier(.2,.8,.2,1);
  }
  @keyframes cl-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .section-collection-lookbook .cl-modal-bg { align-items: flex-end; justify-content: stretch; }
  .section-collection-lookbook .cl-side-panel__hero { height: 240px; }
  .section-collection-lookbook .cl-side-panel__hero::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.6);
    z-index: 2;
  }
  .section-collection-lookbook .cl-side-panel__body { padding: 20px 22px; }
  .section-collection-lookbook .cl-side-panel__title { font-size: 28px; }
  .section-collection-lookbook .cl-side-panel__footer { padding: 14px 22px; }

  .section-collection-lookbook .cl-hotspot-stage { padding: 20px; }
  .section-collection-lookbook .cl-hotspot-stage__title { font-size: 28px; }
}
}

@media (prefers-reduced-motion: reduce) {
  .section-collection-lookbook * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
