.msv-section {
  --msv-red: #e30613;
  --msv-red-dark: #b9040e;
  --msv-ink: #151515;
  --msv-muted: #6d6d6d;
  --msv-line: #e9e9e9;
  --msv-soft: #f6f6f6;
  --msv-white: #ffffff;
  position: relative;
  width: 100%;
  padding: clamp(54px, 6vw, 96px) 0;
  color: var(--msv-ink);
  background: var(--msv-white);
  font-family: inherit;
  overflow: clip;
}


.msv-section--wide {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.msv-section *,
.msv-section *::before,
.msv-section *::after {
  box-sizing: border-box;
}

.msv-section [hidden] {
  display: none !important;
}

.msv-shell {
  width: min(1800px, calc(100% - 48px));
  margin: 0 auto;
}

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

.msv-heading-copy {
  max-width: 760px;
}

.msv-kicker {
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--msv-red);
}

.msv-title {
  margin: 0;
  color: var(--msv-ink);
  font: inherit;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
}

.msv-subtitle {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--msv-muted);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
}

.msv-arrows {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.msv-arrow {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  color: var(--msv-ink);
  background: var(--msv-white);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.msv-arrow:hover,
.msv-arrow:focus-visible {
  color: var(--msv-white);
  border-color: var(--msv-red);
  background: var(--msv-red);
  transform: translateY(-1px);
}

.msv-track {
  display: flex;
  gap: 14px;
  width: 100%;
  padding: 2px 2px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.msv-track::-webkit-scrollbar {
  display: none;
}

.msv-slide {
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 0;
  scroll-snap-align: start;
}

.msv-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  color: var(--msv-white);
  background: #171717;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .09);
  cursor: pointer;
  text-align: left;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease;
}

.msv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .15);
}

.msv-card:focus-visible {
  outline: 3px solid var(--msv-red);
  outline-offset: 4px;
}

.msv-card-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #161616;
  transform: scale(1.001);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

.msv-card:hover .msv-card-video {
  transform: scale(1.035);
}

.msv-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 36%, rgba(0,0,0,.68) 100%);
}

.msv-card-topline {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(12,12,12,.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.msv-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--msv-red);
  box-shadow: 0 0 0 4px rgba(227,6,19,.2);
}

.msv-card-meta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}

.msv-card-meta strong {
  display: block;
  overflow: hidden;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.msv-card-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  opacity: .94;
}

body.msv-modal-open {
  overflow: hidden !important;
}

.msv-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.msv-modal.is-open {
  display: flex;
}

.msv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, .72);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  animation: msvFadeIn .18s ease both;
}

.msv-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(420px, 1.07fr);
  width: min(1180px, calc(100vw - 48px));
  height: min(780px, calc(100dvh - 48px));
  max-height: 900px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.33);
  animation: msvPopIn .24s cubic-bezier(.2,.8,.2,1) both;
}

.msv-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 8;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 3px;
  border: 0;
  border-radius: 50%;
  color: #161616;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  font: inherit;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.msv-modal-close:hover,
.msv-modal-close:focus-visible {
  color: #fff;
  background: var(--msv-red);
  outline: none;
}

.msv-modal-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #111;
}

.msv-modal-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.msv-modal-video:not([src]) {
  opacity: 0;
}

.msv-modal-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  transform: translate(-50%,-50%);
}

.msv-modal-content {
  min-width: 0;
  min-height: 0;
  background: #fff;
}

.msv-modal-scroll {
  height: 100%;
  padding: 52px clamp(28px, 4vw, 58px) 42px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.msv-modal-brand {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--msv-red);
  background: rgba(227,6,19,.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
}

.msv-modal-creator-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.msv-modal-title {
  margin: 0;
  color: var(--msv-ink);
  font: inherit;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.msv-instagram-link {
  flex: 0 0 auto;
  color: var(--msv-muted);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.msv-instagram-link:hover,
.msv-instagram-link:focus-visible {
  color: var(--msv-red);
}

.msv-modal-caption {
  margin-top: 14px;
  color: var(--msv-muted);
  font-size: 14px;
  line-height: 1.55;
}

.msv-modal-caption:empty {
  display: none;
}

.msv-modal-caption p {
  margin: 0 0 10px;
}

.msv-product-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--msv-line);
}

.msv-section-label {
  margin-bottom: 14px;
  color: var(--msv-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.msv-featured-products {
  display: grid;
  gap: 12px;
}

.msv-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--msv-line);
  border-radius: 18px;
  background: #fff;
}

.msv-product-image-link {
  position: relative;
  display: block;
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 13px;
  background: var(--msv-soft);
}

.msv-product-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.msv-product-sale {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  padding: 5px 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--msv-red);
  font-size: 10px;
  font-weight: 800;
}

.msv-product-body {
  min-width: 0;
}

.msv-product-name {
  display: block;
  margin: 0 0 7px;
  color: var(--msv-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.msv-product-name:hover,
.msv-product-name:focus-visible {
  color: var(--msv-red);
}

.msv-product-price {
  min-height: 22px;
  margin-bottom: 11px;
  color: var(--msv-ink);
  font-size: 15px;
  font-weight: 700;
}

.msv-product-price del {
  margin-right: 5px;
  color: #8b8b8b;
  font-weight: 500;
}

.msv-product-price ins {
  color: var(--msv-red);
  text-decoration: none;
}

.msv-product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.msv-product-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--msv-red);
  border-radius: 999px;
  color: #fff;
  background: var(--msv-red);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.msv-product-button:hover,
.msv-product-button:focus-visible {
  color: #fff;
  border-color: var(--msv-red-dark);
  background: var(--msv-red-dark);
  transform: translateY(-1px);
}

.msv-related-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.msv-related-card {
  min-width: 0;
}

.msv-related-card a {
  color: inherit;
  text-decoration: none;
}

.msv-related-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 9px;
  border-radius: 13px;
  background: var(--msv-soft);
}

.msv-related-image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.msv-related-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--msv-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.msv-related-price {
  display: block;
  margin-top: 5px;
  color: var(--msv-red);
  font-size: 12px;
  font-weight: 700;
}

.msv-related-price del {
  color: #949494;
  font-weight: 500;
}

.msv-related-price ins {
  text-decoration: none;
}

@keyframes msvFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes msvPopIn {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1279px) {
  .msv-shell {
    width: min(100% - 40px, 1280px);
  }

  .msv-slide {
    flex-basis: calc((100% - 42px) / 4);
  }
}

@media (max-width: 1023px) {
  .msv-shell {
    width: min(100% - 40px, 960px);
  }

  .msv-slide {
    flex-basis: calc((100% - 28px) / 3);
  }

  .msv-modal-panel {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  }

  .msv-modal-scroll {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .msv-section {
    padding: 50px 0 58px;
  }

  .msv-shell {
    width: 100%;
  }

  .msv-heading-row {
    align-items: flex-start;
    margin-bottom: 22px;
    padding: 0 20px;
  }

  .msv-title {
    font-size: clamp(31px, 10vw, 44px);
  }

  .msv-subtitle {
    margin-top: 10px;
    font-size: 15px;
  }

  .msv-arrows {
    display: none;
  }

  .msv-track {
    gap: 12px;
    padding: 2px 20px 10px;
    scroll-padding-inline: 20px;
  }

  .msv-slide {
    flex: 0 0 min(82vw, 360px);
  }

  .msv-card {
    border-radius: 20px;
  }

  .msv-card:hover {
    transform: none;
  }

  .msv-modal {
    align-items: stretch;
    padding: 0;
  }

  .msv-modal-panel {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: var(--msv-mobile-media-height, minmax(330px, 58dvh)) minmax(0, 1fr);
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    transition: grid-template-rows .72s cubic-bezier(.4,0,.2,1);
  }

  .msv-modal-close {
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
  }

  .msv-modal-media {
    min-height: 0;
  }

  .msv-modal-content {
    position: relative;
    z-index: 2;
    min-height: 0;
    overflow: hidden;
    box-shadow: 0 -1px 0 rgba(255,255,255,.08);
    transition: box-shadow .18s ease;
  }

  .msv-modal-panel.is-mobile-condensed .msv-modal-content {
    box-shadow: 0 -14px 34px rgba(0,0,0,.16);
  }

  .msv-modal-scroll {
    height: 100%;
    padding: 26px 20px calc(32px + env(safe-area-inset-bottom));
  }

  .msv-modal-brand {
    margin-bottom: 10px;
  }

  .msv-modal-creator-row {
    display: block;
  }

  .msv-modal-title {
    padding-right: 0;
    font-size: 28px;
  }

  .msv-instagram-link {
    display: inline-block;
    margin-top: 9px;
  }

  .msv-product-section {
    margin-top: 22px;
    padding-top: 20px;
  }

  .msv-product-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 13px;
    padding: 10px;
    border-radius: 16px;
  }

  .msv-product-image-link {
    width: 92px;
    border-radius: 11px;
  }

  .msv-product-button {
    min-height: 44px;
    padding-inline: 14px;
  }

  .msv-related-products {
    display: flex;
    gap: 12px;
    padding-bottom: 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .msv-related-products::-webkit-scrollbar {
    display: none;
  }

  .msv-related-card {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
}

@media (max-width: 420px) {
  .msv-slide {
    flex-basis: min(86vw, 350px);
  }

  .msv-modal-panel {
    grid-template-rows: var(--msv-mobile-media-height, minmax(300px, 55dvh)) minmax(0, 1fr);
  }

  .msv-product-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .msv-product-image-link {
    width: 82px;
  }

  .msv-product-actions {
    gap: 8px;
  }

  .msv-product-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msv-section *,
  .msv-section *::before,
  .msv-section *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .msv-modal-panel,
  .msv-modal-content {
    transition-duration: .001ms !important;
  }
}

.msv-modal {
  --msv-red: #e30613;
  --msv-red-dark: #b9040e;
  --msv-ink: #151515;
  --msv-muted: #6d6d6d;
  --msv-line: #e9e9e9;
  --msv-soft: #f6f6f6;
  --msv-white: #ffffff;
  color: var(--msv-ink);
  font-family: inherit;
}

.msv-modal *,
.msv-modal *::before,
.msv-modal *::after {
  box-sizing: border-box;
}

/* Carousel controls */
.msv-card-meta small {
  display: block;
  overflow: hidden;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.msv-arrow:disabled,
.msv-arrow[aria-disabled="true"] {
  color: #b7b7b7;
  border-color: #ececec;
  background: #fafafa;
  cursor: default;
  pointer-events: none;
  transform: none;
  opacity: .55;
}

.msv-arrows.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.msv-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 24px;
  margin-top: 18px;
}

.msv-page-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7d7d7;
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease, transform .2s ease;
}

.msv-page-dot:hover,
.msv-page-dot:focus-visible {
  background: #aaa;
  outline: none;
  transform: scale(1.08);
}

.msv-page-dot.is-active {
  width: 24px;
  background: var(--msv-red);
}

.msv-modal-byline {
  margin-top: 6px;
  color: var(--msv-muted);
  font-size: 13px;
  font-weight: 650;
}

.msv-track {
  scroll-snap-stop: always;
}

@media (max-width: 767px) {
  .msv-pagination {
    margin-top: 14px;
    padding-inline: 20px;
  }
}
