.boutique-catalog-overlay {
  padding: 0;
  background: #061225;
}

.boutique-catalog-overlay.open {
  display: block;
}

.boutique-catalog-portal {
  --boutique-accent: #e7ff3f;
  --boutique-accent-rgb: 231, 255, 63;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: #06152f;
  outline: none;
}

.boutique-catalog-header {
  position: absolute;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 88px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 38px;
  background: linear-gradient(180deg, rgba(3, 14, 36, .9), rgba(3, 14, 36, .38) 66%, transparent);
}

.boutique-catalog-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font: 800 15px Manrope, sans-serif;
}

.boutique-catalog-brand > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #ff6481;
  font-size: 12px;
  transform: rotate(-8deg);
}

.boutique-catalog-brand small {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 99px;
  font-size: 7px;
  letter-spacing: .17em;
}

.boutique-catalog-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.boutique-catalog-heading small {
  color: var(--boutique-accent);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .21em;
}

.boutique-catalog-heading b {
  font: 700 13px Manrope, sans-serif;
  letter-spacing: .02em;
}

.boutique-catalog-close {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.boutique-catalog-close span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.boutique-catalog-close:hover span,
.boutique-catalog-close:focus-visible span {
  color: #10233a;
  background: var(--boutique-accent);
  transform: rotate(90deg);
}

.boutique-catalog-mobile-close {
  display: none;
}

.boutique-catalog-stage {
  --boutique-bg-x: 0px;
  --boutique-bg-y: 0px;
  --boutique-character-x: 0px;
  --boutique-character-y: 0px;
  position: relative;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #07152f;
}

.boutique-catalog-backdrop {
  position: absolute;
  z-index: -5;
  inset: -7%;
  width: 114%;
  height: 114%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04);
  opacity: 0;
  transform: translate3d(var(--boutique-bg-x), var(--boutique-bg-y), 0) scale(1.08);
  transition: opacity .7s ease;
  will-change: transform;
}

.boutique-catalog-backdrop.is-active {
  opacity: 1;
  animation: boutiqueStadiumDrift 14s ease-in-out infinite alternate;
}

.boutique-catalog-stage::before {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 43, .62), transparent 28%, transparent 72%, rgba(3, 15, 43, .62)),
    linear-gradient(180deg, rgba(4, 17, 45, .2), transparent 42%, rgba(2, 11, 31, .66)),
    radial-gradient(ellipse at 50% 46%, rgba(119, 202, 246, .3), transparent 43%);
  content: "";
  pointer-events: none;
}

.boutique-catalog-stage::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(2, 12, 31, .74));
  content: "";
  pointer-events: none;
}

.boutique-catalog-glow {
  position: absolute;
  z-index: -3;
  top: -25%;
  left: 38%;
  width: 25%;
  height: 150%;
  background: linear-gradient(100deg, transparent 15%, rgba(var(--boutique-accent-rgb), .22) 48%, rgba(117, 211, 255, .2) 54%, transparent 84%);
  filter: blur(9px);
  mix-blend-mode: screen;
  animation: boutiqueLightSweep 6.8s ease-in-out infinite;
  pointer-events: none;
}

.boutique-catalog-particles {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.boutique-catalog-particles i {
  position: absolute;
  bottom: -20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--boutique-accent);
  box-shadow: 0 0 13px var(--boutique-accent);
  opacity: 0;
  animation: boutiqueParticleRise 7s linear infinite;
}

.boutique-catalog-particles i:nth-child(1) { left: 14%; animation-delay: -1s; }
.boutique-catalog-particles i:nth-child(2) { left: 31%; animation-delay: -4.2s; transform: scale(.7); }
.boutique-catalog-particles i:nth-child(3) { left: 54%; animation-delay: -2.7s; transform: scale(1.25); }
.boutique-catalog-particles i:nth-child(4) { left: 72%; animation-delay: -5.4s; transform: scale(.6); }
.boutique-catalog-particles i:nth-child(5) { left: 88%; animation-delay: -3.4s; }

.boutique-product-carousel {
  --boutique-drag-x: 0px;
  position: absolute;
  z-index: 5;
  inset: 72px 0 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.boutique-product-carousel:active {
  cursor: grabbing;
}

.boutique-product-track {
  position: absolute;
  inset: 0;
  perspective: 1600px;
  transform: translate3d(var(--boutique-character-x), var(--boutique-character-y), 0);
  transform-style: preserve-3d;
  will-change: transform;
}

.boutique-product-slide {
  --x: 0vw;
  --slide-scale: 1;
  --slide-opacity: 1;
  position: absolute;
  z-index: var(--slide-z, 1);
  top: 4px;
  bottom: 22px;
  left: 50%;
  display: grid;
  width: min(48vw, 720px);
  grid-template-rows: minmax(0, 1fr) auto;
  border: 0;
  color: inherit;
  background: transparent;
  opacity: var(--slide-opacity);
  text-decoration: none;
  transform: translate3d(calc(-50% + var(--x) + var(--boutique-drag-x)), 0, 0) scale(var(--slide-scale));
  transform-origin: 50% 82%;
  transition: transform .7s cubic-bezier(.2, .78, .2, 1), opacity .4s ease;
  will-change: transform, opacity;
}

.boutique-product-slide[aria-hidden="true"] {
  pointer-events: none;
}

.boutique-product-slide:focus-visible {
  outline: none;
}

.boutique-product-slide.is-active:focus-visible .boutique-product-figure::before {
  position: absolute;
  z-index: 3;
  inset: 4% 14% 2%;
  border: 2px solid var(--boutique-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(var(--boutique-accent-rgb), .17), 0 0 38px rgba(var(--boutique-accent-rgb), .42);
  content: "";
  pointer-events: none;
}

.boutique-product-figure {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.boutique-product-figure::after {
  position: absolute;
  right: 24%;
  bottom: 1.5%;
  left: 24%;
  height: 4%;
  border-radius: 50%;
  background: rgba(1, 10, 27, .48);
  filter: blur(15px);
  content: "";
}

.boutique-product-figure img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 28px rgba(1, 12, 32, .42));
  transform-origin: 50% 82%;
  animation: boutiqueSupporterFloat 4.6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.boutique-product-slide.is-active .boutique-product-figure:hover img,
.boutique-product-slide.is-active .boutique-product-figure:focus-visible img {
  filter: drop-shadow(0 34px 32px rgba(1, 12, 32, .55)) saturate(1.08) brightness(1.04);
}

.boutique-product-caption {
  position: relative;
  z-index: 8;
  display: flex;
  min-height: 137px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  filter: drop-shadow(0 7px 15px rgba(2, 11, 28, .64));
}

.boutique-product-caption::before {
  position: absolute;
  z-index: -1;
  top: 25px;
  left: 50%;
  width: min(330px, 80vw);
  height: 34px;
  background: linear-gradient(90deg, transparent, rgba(var(--boutique-accent-rgb), .72) 18%, rgba(var(--boutique-accent-rgb), .72) 82%, transparent);
  clip-path: polygon(5% 18%, 100% 0, 95% 82%, 0 100%);
  content: "";
  transform: translateX(-50%) rotate(-1deg);
}

.boutique-product-caption small {
  color: var(--boutique-accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .22em;
}

.boutique-product-caption h2 {
  margin: 3px 0 7px;
  font-family: "Ka Blam", Impact, sans-serif;
  font-size: clamp(42px, 4.7vw, 73px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: .04em;
}

.boutique-product-caption h2.is-long-title {
  max-width: min(94vw, 760px);
  font-size: clamp(28px, 3.45vw, 52px);
  line-height: .94;
  letter-spacing: .025em;
  white-space: nowrap;
}

.boutique-product-caption > span {
  color: rgba(255, 255, 255, .75);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.boutique-product-arrow {
  position: absolute;
  z-index: 46;
  top: 48%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  color: #10233a;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 35px rgba(2, 12, 31, .24);
  font-size: 20px;
  backdrop-filter: blur(12px);
}

.boutique-product-arrow.previous { left: 28px; }
.boutique-product-arrow.next { right: 28px; }
.boutique-product-arrow[hidden] { display: none; }

.boutique-product-dots {
  position: absolute;
  z-index: 48;
  right: 34px;
  bottom: 28px;
  display: flex;
  gap: 6px;
}

.boutique-product-dots:empty {
  display: none;
}

.boutique-product-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
}

.boutique-product-dot.active {
  width: 24px;
  border-radius: 99px;
  background: var(--boutique-accent);
}

@keyframes boutiqueStadiumDrift {
  0% { transform: translate3d(calc(var(--boutique-bg-x) - 12px), calc(var(--boutique-bg-y) - 4px), 0) scale(1.08); }
  100% { transform: translate3d(calc(var(--boutique-bg-x) + 12px), calc(var(--boutique-bg-y) + 5px), 0) scale(1.12); }
}

@keyframes boutiqueLightSweep {
  0%, 15% { opacity: 0; transform: translateX(-210%) skewX(-10deg); }
  36% { opacity: 1; }
  62%, 100% { opacity: 0; transform: translateX(280%) skewX(-10deg); }
}

@keyframes boutiqueParticleRise {
  0% { opacity: 0; transform: translateY(0) scale(.6); }
  18% { opacity: .7; }
  76% { opacity: .35; }
  100% { opacity: 0; transform: translateY(-92vh) scale(1.2); }
}

@keyframes boutiqueSupporterFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  45% { transform: translate3d(0, -9px, 0) scale(1.008); }
}

@media (max-width: 800px) {
  .boutique-catalog-header {
    height: 66px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .boutique-catalog-heading {
    display: none;
  }

  .boutique-catalog-close {
    display: none;
  }

  .boutique-catalog-mobile-close {
    position: absolute;
    z-index: 120;
    top: 13px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 50%;
    color: #fff;
    background: rgba(4, 18, 43, .42);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    transition: color .25s ease, background .25s ease, transform .25s ease;
  }

  .boutique-catalog-mobile-close:hover,
  .boutique-catalog-mobile-close:focus-visible {
    color: #10233a;
    background: var(--boutique-accent);
    transform: rotate(90deg);
  }

  .boutique-catalog-brand small {
    display: none;
  }

  .boutique-product-carousel {
    inset: 58px 0 0;
  }

  .boutique-product-slide {
    top: 6px;
    bottom: 12px;
    width: min(92vw, 570px);
  }

  .boutique-product-caption {
    min-height: 145px;
  }

  .boutique-product-caption h2 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .boutique-product-figure {
    padding: 0;
  }

  .boutique-product-figure img {
    width: 88%;
  }

  .boutique-product-arrow {
    top: 45%;
    width: 44px;
    height: 44px;
  }

  .boutique-product-arrow.previous { left: 10px; }
  .boutique-product-arrow.next { right: 10px; }

}

@media (max-width: 480px) {
  .boutique-catalog-brand b {
    font-size: 13px;
  }

  .boutique-product-slide {
    width: 96vw;
  }

  .boutique-product-caption {
    min-height: 152px;
  }

  .boutique-product-figure {
    padding: 0;
  }

  .boutique-product-figure img {
    width: 88%;
  }

  .boutique-product-caption::before {
    width: 250px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .boutique-catalog-backdrop,
  .boutique-catalog-glow,
  .boutique-catalog-particles i,
  .boutique-product-figure img {
    animation: none;
  }

  .boutique-product-slide {
    transition: none;
  }
}
