:root {
  --msc-ink: #1f1b17;
  --msc-muted: #70685f;
  --msc-warm: #f5eee7;
  --msc-line: #ded4c8;
  --msc-gold: #9a7958;
  --msc-paper: #fffdfa;
}

.msc-reel-section {
  width: min(1240px, calc(100% - 40px));
  margin: clamp(56px, 7vw, 104px) auto;
  color: var(--msc-ink);
}

.msc-reel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.msc-reel-heading > div:first-child { max-width: 760px; }

.msc-reel-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--msc-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.msc-reel-heading h2 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}

.msc-reel-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--msc-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
}

.msc-reel-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.msc-reel-nav button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--msc-line);
  border-radius: 999px;
  background: var(--msc-paper);
  color: var(--msc-ink);
  font-size: 20px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.msc-reel-nav button:hover { background: var(--msc-ink); color: #fff; transform: translateY(-1px); }
.msc-reel-nav button:focus-visible,
.msc-reel-play:focus-visible,
.msc-reel-instagram:focus-visible,
.msc-reel-label:focus-visible { outline: 3px solid rgba(154, 121, 88, .45); outline-offset: 3px; }

.msc-reel-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 31%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1px 1px 12px;
}
.msc-reel-rail::-webkit-scrollbar { display: none; }

.msc-reel-card {
  min-width: 0;
  scroll-snap-align: start;
  color: var(--msc-ink);
}

.msc-reel-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(47, 39, 33, .17);
  border-radius: 24px;
  background: #25211e;
  box-shadow: 0 18px 55px rgba(39, 31, 25, .09);
  isolation: isolate;
}

.msc-reel-frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(20, 16, 13, .58));
}

.msc-reel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #25211e;
}

.msc-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 74px;
  height: 74px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(32, 27, 23, .82);
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .08);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}
.msc-reel-play::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}
.msc-reel-card .msc-reel-play,
.msc-editorial-reel__frame .msc-reel-play,
.msc-collection-hero-reel .msc-reel-play {
  opacity: 0;
  pointer-events: none;
}
.msc-product-reel-slide .msc-reel-play,
.msc-reel-card.is-playback-blocked .msc-reel-play,
.msc-editorial-reel__frame.is-playback-blocked .msc-reel-play,
.msc-collection-hero-reel.is-playback-blocked .msc-reel-play {
  opacity: 1;
  pointer-events: auto;
}
.msc-reel-card.is-playing .msc-reel-play,
.msc-reel-card.is-attempting .msc-reel-play,
.msc-product-reel-slide.is-playing .msc-reel-play,
.msc-product-reel-slide.is-attempting .msc-reel-play,
.msc-editorial-reel__frame.is-playing .msc-reel-play,
.msc-editorial-reel__frame.is-attempting .msc-reel-play,
.msc-collection-hero-reel.is-playing .msc-reel-play,
.msc-collection-hero-reel.is-attempting .msc-reel-play { opacity: 0; pointer-events: none; }
.msc-reel-play:hover {
  background: rgba(24, 20, 17, .9);
  transform: translate(-50%, -50%) scale(1.04) !important;
}

/* Theme button rules are intentionally stronger; keep media play affordances circular. */
.msc-reel-card > .msc-reel-frame > .msc-reel-play,
.msc-editorial-reel__frame > .msc-reel-play,
.msc-collection-hero-reel__frame > .msc-reel-play {
  position: absolute !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  z-index: 6 !important;
  width: 74px !important;
  height: 74px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  transform: translate(-50%, -50%) !important;
}

.msc-reel-instagram {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(26, 21, 18, .78);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  backdrop-filter: blur(10px);
}

.msc-reel-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px 0;
  color: var(--msc-ink) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none !important;
}

/* Product gallery slide: same proportions and controls as image slides. */
.woocommerce-product-gallery__wrapper .msc-product-reel-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--msc-warm);
}

.msc-product-reel-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #28231f;
}

.msc-product-reel-open-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}

.msc-product-reel-open-link img,
.msc-product-reel-open-link .msc-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msc-product-reel-open-link .msc-product-reel-poster { z-index: 0; }
.msc-product-reel-open-link .msc-reel-video { z-index: 1; }

.msc-product-reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18,14,12,0) 34%, rgba(18,14,12,.2) 54%, rgba(18,14,12,.9) 100%);
}

.msc-product-reel-copy {
  position: absolute;
  right: clamp(22px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 42px);
  left: clamp(22px, 4vw, 44px);
  z-index: 4;
  display: block;
  max-width: 590px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.32);
  pointer-events: none;
}

.msc-product-reel-instagram {
  z-index: 6;
}
.msc-product-reel-copy > span {
  display: block;
  margin-bottom: 8px;
  color: #e7d3bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}
.msc-product-reel-copy strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}
.msc-product-reel-copy p {
  max-width: 520px;
  margin: 13px 0 0;
  color: rgba(255,255,255,.83);
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.5;
}
.msc-reel-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 20px; }

.woocommerce-product-gallery__wrapper .msc-product-reel-slide .msc-reel-video {
  cursor: pointer;
}

body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide .msc-product-reel-card,
body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide .msc-product-reel-open-link,
body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide .msc-product-reel-poster,
body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide .msc-reel-video {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  box-sizing: border-box !important;
}

body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide .msc-product-reel-poster,
body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide .msc-reel-video {
  display: block !important;
  object-fit: cover !important;
}

body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide > .msc-product-reel-card > .msc-reel-play {
  z-index: 5;
  width: 64px;
  height: 64px;
  min-width: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

body.single-product .woocommerce-product-gallery__wrapper .msc-product-reel-slide > .msc-product-reel-card > .msc-reel-play::before {
  left: 25px;
  top: 20px;
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 18px;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li.msc-product-reel-thumb,
body.single-product .woocommerce-product-gallery .flex-control-nav li.msc-product-reel-thumb {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li.msc-product-reel-thumb img,
body.single-product .woocommerce-product-gallery .flex-control-nav li.msc-product-reel-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.msc-product-reel-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 50%;
  background: rgba(32,27,23,.78);
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  transform: translate(-50%, -50%);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.msc-product-reel-thumb-play::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 12px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #fff;
}
.msc-product-reel-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

/* Collection hero: the first reel is part of the collection story, not a block above it. */
.msc-collection-hero-reel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: inherit;
  background: #26211d;
  color: #fff;
  isolation: isolate;
}

.msc-collection-hero-reel__frame,
.msc-collection-hero-reel__frame .msc-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.msc-collection-hero-reel__frame .msc-reel-video {
  object-position: center 42%;
}

.msc-collection-hero-reel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18,15,13,.02) 38%, rgba(18,15,13,.83) 100%);
}

.msc-collection-hero-reel__copy {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 3vw, 34px);
  right: auto;
  bottom: auto;
  left: clamp(24px, 4vw, 54px);
}

.msc-collection-hero-reel__copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(26,21,18,.76);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  backdrop-filter: blur(10px);
}

/* Secondary films are woven between text sections as an editorial spread. */
.msc-editorial-reel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(320px, 1.12fr);
  align-items: stretch;
  width: min(1240px, calc(100% - 40px));
  min-height: 560px;
  margin: clamp(56px, 7vw, 100px) auto;
  overflow: hidden;
  border: 1px solid var(--msc-line);
  border-radius: 30px;
  background: #f7f1ea;
  color: var(--msc-ink);
  box-shadow: 0 24px 72px rgba(42, 33, 27, .08);
  isolation: isolate;
}

.msc-editorial-reel--reverse {
  grid-template-columns: minmax(320px, 1.12fr) minmax(300px, .88fr);
}

.msc-editorial-reel--reverse .msc-editorial-reel__frame { order: 2; }
.msc-editorial-reel--reverse .msc-editorial-reel__copy { order: 1; }

.msc-editorial-reel__frame {
  position: relative !important;
  min-height: 560px;
  overflow: hidden;
  background: #25211e;
  isolation: isolate;
}

.msc-editorial-reel__ambient {
  display: none;
}

.msc-editorial-reel__frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(20,16,13,.45));
}

.msc-editorial-reel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 84px);
}

.msc-editorial-reel__copy h2 {
  max-width: 610px;
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.03em;
}

.msc-editorial-reel__copy p {
  max-width: 610px;
  margin: 0;
  color: var(--msc-muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.62;
}

.msc-editorial-reel__copy > a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--msc-ink) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

.msc-editorial-reel--product {
  clear: both;
  width: min(1240px, calc(100% - 32px));
}

/* Product video is an editorial section, never a gallery slide. */
.msc-product-primary-slot {
  position: relative !important;
  z-index: 1301 !important;
  clear: both;
  width: 100%;
  scroll-margin-top: 96px;
  isolation: isolate;
}

.msc-editorial-reel--product-primary {
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  width: min(1240px, calc(100% - 32px));
  min-height: 620px;
  margin-top: clamp(38px, 5vw, 66px);
  margin-bottom: clamp(54px, 7vw, 92px);
  border: 0;
  border-radius: 0;
  background: #201b18;
  color: #fff;
  box-shadow: none;
}

.msc-editorial-reel--product-primary .msc-editorial-reel__frame {
  display: grid;
  min-height: 620px;
  padding: 28px;
  place-items: center;
  background: #211c18;
}

.msc-editorial-reel--product-primary .msc-editorial-reel__ambient,
.msc-editorial-reel--product .msc-editorial-reel__ambient {
  position: absolute;
  display: block;
  inset: -34px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.msc-editorial-reel--product-primary .msc-editorial-reel__ambient img,
.msc-editorial-reel--product .msc-editorial-reel__ambient img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) saturate(.78);
  opacity: .58;
  transform: scale(1.12);
}

.msc-editorial-reel--product-primary .msc-editorial-reel__frame::before,
.msc-editorial-reel--product .msc-editorial-reel__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(25, 21, 18, .48);
}

.msc-editorial-reel--product-primary .msc-editorial-reel__frame::after {
  display: none;
}

.msc-editorial-reel--product-primary .msc-editorial-reel__frame .msc-reel-video,
.msc-editorial-reel--product .msc-editorial-reel__frame .msc-reel-video {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: calc(100% - 12px);
  margin: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.msc-editorial-reel--product-primary .msc-editorial-reel__copy {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(32,27,24,.92), rgba(32,27,24,.98));
}

.msc-editorial-reel--product-primary .msc-editorial-reel__copy h2,
.msc-editorial-reel--product-primary .msc-editorial-reel__copy > a {
  color: #fff !important;
}

.msc-editorial-reel--product-primary .msc-editorial-reel__copy p {
  color: rgba(255,255,255,.73);
}

.msc-editorial-reel--product-primary .msc-reel-kicker {
  color: #d6b18a;
}

.msc-editorial-reel--product-primary .msc-editorial-reel__frame > .msc-reel-instagram {
  display: none;
}

.msc-editorial-reel--product {
  border-color: rgba(130, 105, 81, .18);
  background: #fbf7f2;
}

.msc-editorial-reel--product .msc-editorial-reel__frame {
  display: grid;
  padding: 24px;
  place-items: center;
}

body.single-product div.product .summary .msc-product-reel-jump {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  margin: 16px 0 4px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--msc-line);
  border-radius: 999px;
  background: rgba(255,253,250,.94);
  color: var(--msc-ink) !important;
  text-decoration: none !important;
}

body.single-product .woocommerce-product-gallery {
  position: relative;
}

body.single-product .woocommerce-product-gallery > .msc-product-reel-jump--gallery {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  max-width: calc(100% - 100px);
  margin: 0;
  padding: 6px 13px 6px 6px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(31,27,23,.82);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(26,21,18,.18);
  text-decoration: none !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.msc-product-reel-jump__icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #29231f;
  box-shadow: 0 8px 22px rgba(38, 30, 25, .13);
  transition: transform .2s ease, background-color .2s ease;
}

.msc-product-reel-jump__icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 12px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #fff;
}

.msc-product-reel-jump__copy {
  display: block;
  min-width: 0;
}

.msc-product-reel-jump__copy strong,
.msc-product-reel-jump__copy small {
  display: block;
}

.msc-product-reel-jump__copy strong {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.msc-product-reel-jump__copy small { display: none; }

.msc-product-reel-jump__arrow {
  padding-right: 4px;
  color: var(--msc-muted);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}

.msc-product-reel-jump:hover .msc-product-reel-jump__icon,
.msc-product-reel-jump:focus-visible .msc-product-reel-jump__icon {
  transform: scale(1.05);
  background: #120f0d;
}

.msc-product-reel-jump:hover .msc-product-reel-jump__arrow,
.msc-product-reel-jump:focus-visible .msc-product-reel-jump__arrow {
  color: var(--msc-ink);
  transform: translateY(3px);
}

[data-mbv-collection-slot="after-gallery"] .msc-editorial-reel {
  width: 100%;
  margin-block: 0;
}

[data-mbv-social-slot] {
  width: 100%;
  min-width: 0;
}

.msc-showroom-featured-grid {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

[data-mbv-social-slot] .msc-editorial-reel {
  width: min(1240px, calc(100% - 40px));
}

/* Homepage: replace only the visual mosaic, keep approved copy and showroom trust block. */
.mbv-ha-instagram__media.msc-home-enhanced { min-height: 0 !important; }
.msc-home-reels {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(160px, .8fr);
  gap: 12px;
  width: 100%;
  min-height: 520px;
}
.msc-home-reels__stack { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; min-height: 0; }
.msc-reel-card--home-main .msc-reel-frame,
.msc-reel-card--home-side .msc-reel-frame { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 18px; }
.msc-reel-card--home-main .msc-reel-label,
.msc-reel-card--home-side .msc-reel-label { display: none; }
.msc-reel-card--home-side .msc-reel-instagram { display: none; }
.msc-reel-card--home-side .msc-reel-play { width: 54px; height: 54px; }
.msc-reel-card--home-side .msc-reel-play::before { left: 22px; top: 17px; border-top-width: 10px; border-bottom-width: 10px; border-left-width: 15px; }

/* Extra curated cards appended to the existing showroom rail. */
#mbv-sr-reels > .msc-reel-card--showroom {
  flex: 0 0 min(29vw, 360px);
  min-width: min(29vw, 360px);
}
#mbv-sr-reels .msc-reel-card--showroom .msc-reel-frame { border-radius: 22px; }

@media (max-width: 900px) {
  .msc-reel-section { width: min(100% - 30px, 760px); margin-block: 52px; }
  .msc-reel-heading { align-items: center; }
  .msc-reel-heading h2 { font-size: clamp(34px, 7vw, 48px); }
  .msc-reel-rail { grid-auto-columns: minmax(260px, 66%); }
  .msc-home-reels { min-height: 450px; }
  .msc-collection-hero-reel { min-height: inherit; }
  .msc-editorial-reel,
  .msc-editorial-reel--reverse {
    grid-template-columns: minmax(260px, .9fr) minmax(300px, 1.1fr);
    min-height: 500px;
  }
  .msc-editorial-reel__frame { min-height: 500px; }
  .msc-editorial-reel__copy { padding: 38px; }
  #mbv-sr-reels > .msc-reel-card--showroom { flex-basis: min(72vw, 390px); min-width: min(72vw, 390px); }
}

@media (max-width: 640px) {
  .msc-reel-section { width: calc(100% - 28px); margin-block: 44px; }
  .msc-reel-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    margin-bottom: 20px;
  }
  .msc-reel-heading > div:first-child { max-width: none; }
  .msc-reel-heading h2 { max-width: 360px; font-size: clamp(30px, 9vw, 38px); line-height: .96; }
  .msc-reel-heading p { font-size: 14px; }
  .msc-reel-nav { justify-self: end; gap: 7px; }
  .msc-reel-nav button { width: 44px; height: 44px; }
  .msc-reel-rail { grid-auto-columns: minmax(248px, 84%); gap: 12px; margin-right: -14px; }
  .msc-reel-frame { border-radius: 20px; }
  .msc-reel-instagram { right: 12px; bottom: 12px; min-height: 38px; padding-inline: 14px; font-size: 11px; }
  .msc-reel-label { font-size: 13px; }

  .msc-product-reel-card { min-height: 0; }
  .msc-product-reel-copy { left: 20px; right: 20px; bottom: 22px; }
  .msc-product-reel-copy strong { font-size: clamp(27px, 8vw, 33px); }
  .msc-product-reel-copy p { font-size: 13px; }
  .msc-reel-actions { gap: 8px; margin-top: 16px; }
  .msc-product-reel-copy a { min-height: 40px; height: 40px; padding-inline: 14px; font-size: 11px; }

  .msc-collection-hero-reel {
    min-height: inherit;
    border-radius: 22px;
  }
  .msc-collection-hero-reel__copy {
    top: 18px;
    right: auto;
    bottom: auto;
    left: 20px;
  }

  .msc-editorial-reel,
  .msc-editorial-reel--reverse {
    display: flex;
    flex-direction: column;
    width: calc(100% - 28px);
    min-height: 0;
    margin-block: 46px;
    border-radius: 22px;
  }
  .msc-editorial-reel--reverse .msc-editorial-reel__frame,
  .msc-editorial-reel--reverse .msc-editorial-reel__copy { order: initial; }
  .msc-editorial-reel__frame {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .msc-editorial-reel__copy { padding: 29px 23px 32px; }
  .msc-editorial-reel__copy h2 { margin-bottom: 14px; font-size: clamp(30px, 9vw, 39px); }
  .msc-editorial-reel__copy p { font-size: 14px; }
  .msc-editorial-reel__copy > a { margin-top: 22px; }
  .msc-product-primary-slot { scroll-margin-top: 78px; }
  .msc-editorial-reel--product-primary {
    width: calc(100% - 28px);
    margin-top: 34px;
    margin-bottom: 46px;
    border-radius: 22px;
    background: #fbf7f2;
  }
  .msc-editorial-reel--product,
  .msc-editorial-reel--product-primary {
    width: calc(100% - 28px);
  }
  .msc-editorial-reel--product .msc-editorial-reel__frame,
  .msc-editorial-reel--product-primary .msc-editorial-reel__frame {
    min-height: 0;
    padding: 0;
    aspect-ratio: 9 / 16;
    background: #211c18;
  }
  .msc-editorial-reel--product .msc-editorial-reel__ambient,
  .msc-editorial-reel--product-primary .msc-editorial-reel__ambient {
    display: none;
  }
  .msc-editorial-reel--product .msc-editorial-reel__frame::before,
  .msc-editorial-reel--product-primary .msc-editorial-reel__frame::before {
    display: none;
  }
  .msc-editorial-reel--product .msc-editorial-reel__frame .msc-reel-video,
  .msc-editorial-reel--product-primary .msc-editorial-reel__frame .msc-reel-video {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
  }
  .msc-editorial-reel--product-primary .msc-editorial-reel__copy {
    background: #fbf7f2;
  }
  .msc-editorial-reel--product-primary .msc-editorial-reel__copy h2,
  .msc-editorial-reel--product-primary .msc-editorial-reel__copy > a {
    color: var(--msc-ink) !important;
  }
  .msc-editorial-reel--product-primary .msc-editorial-reel__copy p {
    color: var(--msc-muted);
  }
  .msc-editorial-reel--product-primary .msc-reel-kicker {
    color: var(--msc-gold);
  }
  body.single-product div.product .summary .msc-product-reel-jump {
    display: inline-flex;
    gap: 8px;
    margin-top: 15px;
    padding: 5px 11px 5px 5px;
  }
  body.single-product .woocommerce-product-gallery > .msc-product-reel-jump--gallery {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 76px);
    padding: 5px 11px 5px 5px;
  }
  .msc-product-reel-jump__icon { width: 28px; height: 28px; }
  .msc-product-reel-jump__icon::after { top: 7px; left: 11px; }
  .msc-product-reel-jump__copy strong { font-size: 12px; }
  .msc-showroom-featured-grid,
  [data-mbv-social-slot] .msc-editorial-reel { width: calc(100% - 28px); }

  .msc-home-reels {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .msc-reel-card--home-main .msc-reel-frame { aspect-ratio: 4 / 5; }
  .msc-home-reels__stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 10px;
  }
  .msc-reel-card--home-side .msc-reel-frame { aspect-ratio: 1 / 1; }
  .msc-reel-card--home-side .msc-reel-frame::after { display: none; }
  #mbv-sr-reels > .msc-reel-card--showroom { flex-basis: calc(88vw - 28px); min-width: calc(88vw - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  .msc-reel-rail { scroll-behavior: auto; }
  .msc-reel-nav button,
  .msc-reel-play { transition: none; }
  .msc-reel-card:not(.is-playing) .msc-reel-play,
  .msc-editorial-reel__frame:not(.is-playing) .msc-reel-play,
  .msc-collection-hero-reel:not(.is-playing) .msc-reel-play {
    opacity: 1;
    pointer-events: auto;
  }
}
