/* ═══════════════════════════════════════════════════════════════
   QUEEN'S COLLECTION — LOOKBOOK STYLES
   lookbook.css

   Contents:
   1.  Page Setup & Hero
   2.  Season Filter Tabs
   3.  Horizontal Scroll Gallery (desktop)
   4.  Vertical Gallery (mobile)
   5.  Campaign Slide Cards
   6.  Shop-the-Look Panel
   7.  Full-Screen Viewer / Lightbox
   8.  Editorial Grid Section
   9.  Behind-the-Scenes Strip
   10. Video Embed Section
   11. Responsive
═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   1. PAGE SETUP & HERO
───────────────────────────────────────── */
.lookbook-page {
  background: var(--black);
  overflow-x: hidden;
}

.lookbook-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.lookbook-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.1) 0%,
      rgba(0,0,0,0.05) 40%,
      rgba(0,0,0,0.75) 100%
    ),
    linear-gradient(135deg,
      #1a0a05 0%,
      #3d1a0a 25%,
      #8B2020 50%,
      #6B521F 75%,
      #0a0a0a 100%
    );
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.lookbook-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -30deg,
      transparent, transparent 60px,
      rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px
    ),
    repeating-linear-gradient(
      30deg,
      transparent, transparent 60px,
      rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px
    );
}

.lookbook-hero__kente {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0, var(--gold) 16px,
    var(--black) 16px, var(--black) 20px,
    var(--kente-red) 20px, var(--kente-red) 32px,
    var(--black) 32px, var(--black) 36px,
    var(--kente-green) 36px, var(--kente-green) 48px,
    var(--black) 48px, var(--black) 52px
  );
}

.lookbook-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 var(--space-16);
  width: 100%;
}

.lookbook-hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.lookbook-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.lookbook-hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.lookbook-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.lookbook-hero__season {
  font-size: var(--text-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-60);
}

.lookbook-hero__divider {
  width: 1px;
  height: 16px;
  background: var(--white-30);
}

.lookbook-hero__count {
  font-size: var(--text-xs);
  letter-spacing: 2px;
  color: var(--white-30);
}

.lookbook-hero__scroll-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
  cursor: pointer;
}

.lookbook-hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Floating scroll indicator */
.lookbook-scroll-indicator {
  position: absolute;
  right: var(--space-8);
  bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  z-index: 3;
}

.lookbook-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
  writing-mode: vertical-rl;
}

.lookbook-scroll-indicator__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}


/* ─────────────────────────────────────────
   2. SEASON FILTER TABS
───────────────────────────────────────── */
.lookbook-filters {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--black-border);
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  z-index: 20;
}

.lookbook-filters__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.lookbook-filters__tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.lookbook-filter-tab {
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--black-border);
  color: var(--white-60);
  cursor: pointer;
  transition: all var(--dur-base);
  background: transparent;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
}

.lookbook-filter-tab:hover {
  border-color: var(--gold-dim);
  color: var(--white-90);
}

.lookbook-filter-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 500;
}

.lookbook-filters__view {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.lookbook-view-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-30);
  cursor: pointer;
  transition: all var(--dur-fast);
  background: transparent;
  border-radius: var(--radius-sm);
}

.lookbook-view-btn.is-active,
.lookbook-view-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}


/* ─────────────────────────────────────────
   3. HORIZONTAL SCROLL GALLERY (desktop)
───────────────────────────────────────── */
.horizontal-gallery {
  position: relative;
  overflow: hidden;
  padding: var(--space-16) 0;
}

.horizontal-gallery__track {
  display: flex;
  gap: var(--space-4);
  padding: 0 var(--space-8);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  will-change: transform;
  -webkit-overflow-scrolling: touch;
}

.horizontal-gallery__track:active { cursor: grabbing; }
.horizontal-gallery__track::-webkit-scrollbar { display: none; }

/* Gradient fade edges */
.horizontal-gallery::before,
.horizontal-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.horizontal-gallery::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.horizontal-gallery::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

/* Scroll progress bar */
.gallery-progress {
  height: 1px;
  background: var(--black-border);
  margin: 0 var(--space-8);
  position: relative;
  margin-bottom: var(--space-8);
}

.gallery-progress__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  transition: width 0.1s linear;
  width: 0%;
}

/* Nav arrows */
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.gallery-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--gold-dim);
  cursor: pointer;
  transition: all var(--dur-base);
  background: transparent;
  border-radius: var(--radius-sm);
}

.gallery-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}


/* ─────────────────────────────────────────
   4. CAMPAIGN SLIDE CARDS
───────────────────────────────────────── */
.campaign-slide {
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: transform var(--dur-slow) var(--ease-out);
}

.campaign-slide:hover {
  transform: scale(1.01);
}

/* Size variants */
.campaign-slide--portrait {
  width: 340px;
  aspect-ratio: 2 / 3;
}

.campaign-slide--landscape {
  width: 560px;
  aspect-ratio: 16 / 10;
}

.campaign-slide--square {
  width: 420px;
  aspect-ratio: 1;
}

.campaign-slide--wide {
  width: 680px;
  aspect-ratio: 16 / 9;
}

.campaign-slide__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-slow) var(--ease-out);
}

.campaign-slide:hover .campaign-slide__bg {
  transform: scale(1.04);
}

/* African-inspired gradient placeholders */
.campaign-slide__bg--1 {
  background: linear-gradient(160deg, #1a0505 0%, #8B2020 35%, #C9A84C 65%, #3d1a0a 100%);
}
.campaign-slide__bg--2 {
  background: linear-gradient(160deg, #030d05 0%, #1A5C2E 40%, #8B6F35 70%, #050a05 100%);
}
.campaign-slide__bg--3 {
  background: linear-gradient(160deg, #0a0815 0%, #2d1a5c 40%, #8B2020 70%, #1a0510 100%);
}
.campaign-slide__bg--4 {
  background: linear-gradient(160deg, #0a0505 0%, #5c1a1a 35%, #C9A84C 60%, #1a0a05 100%);
}
.campaign-slide__bg--5 {
  background: linear-gradient(160deg, #050a05 0%, #1A5C2E 30%, #C9A84C 55%, #1a1a05 100%);
}
.campaign-slide__bg--6 {
  background: linear-gradient(160deg, #050505 0%, #3d0a1a 35%, #8B6F35 65%, #0a0505 100%);
}
.campaign-slide__bg--7 {
  background: linear-gradient(160deg, #05050a 0%, #1a1a5c 35%, #8B2020 65%, #050510 100%);
}
.campaign-slide__bg--8 {
  background: linear-gradient(160deg, #0a0505 0%, #6B521F 35%, #1A5C2E 65%, #050a05 100%);
}

/* Kente geometric pattern overlay */
.campaign-slide__overlay-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent, transparent 30px,
      rgba(201,168,76,0.06) 30px, rgba(201,168,76,0.06) 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 30px,
      rgba(201,168,76,0.04) 30px, rgba(201,168,76,0.04) 31px
    );
}

/* Dark gradient overlay at bottom for text */
.campaign-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--dur-base);
}

.campaign-slide:hover .campaign-slide__overlay { opacity: 1; }

/* Slide info */
.campaign-slide__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  transform: translateY(8px);
  transition: transform var(--dur-base) var(--ease-out);
  z-index: 2;
}

.campaign-slide:hover .campaign-slide__info {
  transform: translateY(0);
}

.campaign-slide__season {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.campaign-slide__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-3);
  font-style: italic;
}

.campaign-slide__cta {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--dur-base);
}

.campaign-slide:hover .campaign-slide__cta { gap: var(--space-3); }

/* Number label */
.campaign-slide__number {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: rgba(201,168,76,0.15);
  line-height: 1;
  z-index: 1;
  font-style: italic;
  user-select: none;
}

/* Shop-the-look trigger button */
.shop-look-btn {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  background: rgba(10,10,10,0.75);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  cursor: pointer;
  transition: all var(--dur-base);
  font-family: var(--font-body);
  z-index: 3;
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  opacity: 0;
}

.campaign-slide:hover .shop-look-btn {
  opacity: 1;
}

.shop-look-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}


/* ─────────────────────────────────────────
   5. SHOP-THE-LOOK PANEL
───────────────────────────────────────── */
.shop-look-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--black-soft);
  border-left: var(--border-gold);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.shop-look-panel.is-open { transform: translateX(0); }

.shop-look-panel__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: calc(var(--z-drawer) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base), visibility var(--dur-base);
}

.shop-look-panel__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.shop-look-panel__header {
  padding: var(--space-5) var(--space-6);
  border-bottom: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.shop-look-panel__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
}

.shop-look-panel__subtitle {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.shop-look-panel__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white-60);
  cursor: pointer;
  background: transparent;
  transition: all var(--dur-fast);
  border-radius: var(--radius-sm);
}

.shop-look-panel__close:hover { color: var(--gold); border-color: var(--gold-dim); }

.shop-look-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5) var(--space-6);
}

/* Look image strip */
.look-image-strip {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-sm);
}

.look-image-strip__fill {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}

.look-image-strip:hover .look-image-strip__fill {
  transform: scale(1.04);
}

/* Products in the look */
.look-products {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.look-product-row {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--black-border);
}

.look-product-row:last-child { border-bottom: none; }

.look-product-row__img {
  width: 72px;
  aspect-ratio: 3/4;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.look-product-row__fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(201,168,76,0.2);
}

.look-product-row__info {
  flex: 1;
  min-width: 0;
}

.look-product-row__category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 4px;
}

.look-product-row__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.look-product-row__price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--gold);
}

.look-product-row__add {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--dur-fast);
  background: transparent;
  font-size: var(--text-lg);
  border-radius: var(--radius-sm);
}

.look-product-row__add:hover {
  background: var(--gold);
  color: var(--black);
}

.shop-look-panel__footer {
  padding: var(--space-5) var(--space-6);
  border-top: var(--border-gold);
  flex-shrink: 0;
}


/* ─────────────────────────────────────────
   6. FULL-SCREEN LIGHTBOX
───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base), visibility var(--dur-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__placeholder {
  width: min(80vw, 700px);
  aspect-ratio: 2/3;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(201,168,76,0.15);
}

.lightbox__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white-60);
  cursor: pointer;
  background: transparent;
  transition: all var(--dur-fast);
  border-radius: var(--radius-sm);
  z-index: 2;
}

.lightbox__close:hover { color: var(--white); border-color: var(--gold-dim); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white-60);
  cursor: pointer;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  transition: all var(--dur-base);
  border-radius: var(--radius-sm);
}

.lightbox__nav:hover { color: var(--gold); border-color: var(--gold-dim); }
.lightbox__nav--prev { left: var(--space-6); }
.lightbox__nav--next { right: var(--space-6); }

.lightbox__caption {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  padding: var(--space-3) var(--space-6);
  border: 1px solid var(--black-border);
  white-space: nowrap;
  border-radius: var(--radius-full);
}

.lightbox__caption-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  font-style: italic;
}

.lightbox__caption-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 2px;
}

.lightbox__counter {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white-30);
}


/* ─────────────────────────────────────────
   7. EDITORIAL GRID SECTION
───────────────────────────────────────── */
.editorial-grid-section {
  padding: var(--space-24) 0;
}

.editorial-grid-section .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.editorial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--space-4);
}

.editorial-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-md);
}

.editorial-cell--tall {
  grid-row: span 2;
}

.editorial-cell--wide {
  grid-column: span 2;
}

.editorial-cell__fill {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--dur-slow) var(--ease-out);
}

.editorial-cell--tall .editorial-cell__fill {
  min-height: 580px;
}

.editorial-cell--wide .editorial-cell__fill {
  min-height: 280px;
}

.editorial-cell:hover .editorial-cell__fill {
  transform: scale(1.03);
}

/* Editorial colour fills */
.editorial-cell__fill--1 { background: linear-gradient(160deg, #1a0505, #8B2020 50%, #C9A84C); }
.editorial-cell__fill--2 { background: linear-gradient(160deg, #030d05, #1A5C2E 50%, #8B6F35); }
.editorial-cell__fill--3 { background: linear-gradient(160deg, #0a0505, #5c1a1a 50%, #C9A84C); }
.editorial-cell__fill--4 { background: linear-gradient(160deg, #050a05, #1A5C2E 50%, #C9A84C); }
.editorial-cell__fill--5 { background: linear-gradient(160deg, #0a0815, #2d1a5c 50%, #8B2020); }
.editorial-cell__fill--6 { background: linear-gradient(160deg, #0a0505, #6B521F 50%, #1A5C2E); }

.editorial-cell__overlay {
  width: 100%;
  padding: var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.editorial-cell:hover .editorial-cell__overlay { opacity: 1; }

.editorial-cell__label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.editorial-cell__caption {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  font-style: italic;
}


/* ─────────────────────────────────────────
   8. BEHIND-THE-SCENES STRIP
───────────────────────────────────────── */
.bts-strip {
  padding: var(--space-16) 0;
  background: var(--black-soft);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  overflow: hidden;
}

.bts-strip__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.bts-strip__row {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding: 0 var(--space-6);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bts-strip__row::-webkit-scrollbar { display: none; }

.bts-thumb {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.bts-thumb__fill {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bts-thumb:hover .bts-thumb__fill { transform: scale(1.06); }

.bts-thumb__fill--1 { background: linear-gradient(160deg, #1a0505, #5c1a1a); }
.bts-thumb__fill--2 { background: linear-gradient(160deg, #030d05, #1a3d1a); }
.bts-thumb__fill--3 { background: linear-gradient(160deg, #0a0505, #3d2a05); }
.bts-thumb__fill--4 { background: linear-gradient(160deg, #050510, #1a1a3d); }
.bts-thumb__fill--5 { background: linear-gradient(160deg, #0a0505, #3d1a1a); }
.bts-thumb__fill--6 { background: linear-gradient(160deg, #030d05, #0a2d0a); }

.bts-thumb__icon {
  font-size: 2rem;
  color: rgba(201,168,76,0.15);
}

.bts-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.bts-thumb:hover .bts-thumb__play { opacity: 1; }

.bts-thumb__play-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: var(--text-xl);
  padding-left: 4px; /* optical centre for triangle */
}


/* ─────────────────────────────────────────
   9. RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .editorial-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-cell--wide {
    grid-column: span 2;
  }

  .shop-look-panel { width: 340px; }
}

@media (max-width: 768px) {
  .lookbook-hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .horizontal-gallery__track {
    padding: 0 var(--space-4);
  }

  .campaign-slide--portrait  { width: 260px; }
  .campaign-slide--landscape { width: 340px; }
  .campaign-slide--square    { width: 280px; }
  .campaign-slide--wide      { width: 320px; }

  .editorial-masonry {
    grid-template-columns: 1fr;
  }

  .editorial-cell--tall,
  .editorial-cell--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .editorial-cell__fill,
  .editorial-cell--tall .editorial-cell__fill,
  .editorial-cell--wide .editorial-cell__fill {
    min-height: 240px;
  }

  .shop-look-panel {
    width: 100vw;
    border-left: none;
    border-top: var(--border-gold);
    top: auto;
    height: 85vh;
    transform: translateY(100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .shop-look-panel.is-open { transform: translateY(0); }

  .lightbox__nav { display: none; }
}
