/* Converted from Fullscreen Video Background.html */
@font-face {
      font-family: "Grid";
      src: url("https://res.cloudinary.com/dlpufegqf/raw/upload/v1776867314/Grid_u40q4g.woff2") format("woff2");
      font-display: swap;
    }

    @font-face {
      font-family: "TT Squares";
      src: url("https://res.cloudinary.com/dlpufegqf/raw/upload/v1776944912/TT_Squares_Regular_dgybrn.otf") format("opentype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "JetBrains Mono NL";
      src: url("https://res.cloudinary.com/dlpufegqf/raw/upload/v1776701918/JetBrains_Mono_NL_dcxaro.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Bebas Neue Bold";
      src: url("https://res.cloudinary.com/dlpufegqf/raw/upload/v1777033490/BebasNeueBold_ckeuve.woff2") format("woff2");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }


    @font-face {
      font-family: "Barlow Condensed Cart Bold";
      src: url("https://res.cloudinary.com/dlpufegqf/raw/upload/v1777120148/BarlowCondensed-Bold_pqkktt.ttf") format("truetype");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --content-max-width: 72rem;
      --page-padding: clamp(1.5rem, 4vw, 3rem);
      --text-color: #ffffff;
      --background-color: #000000;
      --app-height: 100vh;
      --app-height: 100svh;
      --app-height: 100dvh;
      --bg-height: 100vh;
      --bg-height: 100lvh;
      --bg-bleed: max(96px, env(safe-area-inset-bottom));
    }

    * {
      box-sizing: border-box;
      margin: 0;
    }

    html,
    body {
      width: 100%;
      height: calc(var(--bg-height) + var(--bg-bleed));
      min-height: calc(var(--bg-height) + var(--bg-bleed));
      max-height: none;
      overflow: hidden;
      overscroll-behavior: none;
    }

    body {
      position: fixed;
      inset: 0;
      background: var(--background-color);
      color: var(--text-color);
      font-family: Georgia, "Times New Roman", serif;
      touch-action: none;
    }

    .video-shell {
      position: relative;
      width: 100%;
      height: calc(var(--bg-height) + var(--bg-bleed));
      min-height: calc(var(--bg-height) + var(--bg-bleed));
      max-height: none;
      isolation: isolate;
      overflow: hidden;
      touch-action: none;
    }

    .video-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      background: var(--background-color);
    }

    @media (min-width: 768px) {
      html,
      body {
        height: var(--bg-height);
        min-height: var(--bg-height);
      }

      .video-shell {
        height: var(--bg-height);
        min-height: var(--bg-height);
      }

      .video-bg {
        object-fit: contain;
        object-position: center;
      }
    }

    .room-pan-layer {
      position: absolute;
      inset: 0;
    }

    .top-fade-overlay,
    .bottom-fade-overlay {
      position: fixed;
      left: 0;
      width: 100%;
      height: 340px;
      z-index: -1;
      pointer-events: none;
    }

    .top-fade-overlay {
      top: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(0, 0, 0, 0.90) 20%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.30) 80%,
        rgba(0, 0, 0, 0.08) 95%,
        rgba(0, 0, 0, 0.00) 100%
      );
    }

    .bottom-fade-overlay {
      bottom: 0;
      display: none;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(0, 0, 0, 0.90) 20%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.30) 80%,
        rgba(0, 0, 0, 0.08) 95%,
        rgba(0, 0, 0, 0.00) 100%
      );
    }

    .site-logo {
      position: fixed;
      top: 25px;
      left: 28px;
      z-index: 10;
      display: block;
      width: 206px;
      height: auto;
    }

    .site-logo img {
      display: block;
      width: 100%;
      height: auto;
    }

    .mobile-menu,
    .mobile-bag {
      display: none;
    }

    #site-preloader {
      position: fixed;
      inset: 0;
      width: 100%;
      height: var(--app-height);
      max-height: var(--app-height);
      z-index: 99999;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      overscroll-behavior: none;
      touch-action: none;
      opacity: 1;
      visibility: visible;
      transition:
        opacity 3200ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 3200ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    #site-preloader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    #preloader-video {
      width: 60%;
      max-width: 92vw;
      max-height: 92%;
      height: auto;
      display: block;
      object-fit: contain;
      background: #000;
      opacity: 0;
      animation: fadeInLogo 1400ms ease forwards;
      transition: opacity 2600ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    @media (min-width: 769px) {
      #preloader-video {
        width: 30%;
      }
    }

    body:not(.entrance-ready) .site-logo,
    body:not(.entrance-ready) .suite-clock,
    body:not(.entrance-ready) .top-nav__link,
    body:not(.entrance-ready) .top-cta,
    body:not(.entrance-ready) .social-icon,
    body:not(.entrance-ready) .merch-button,
    body:not(.entrance-ready) .music-toggle,
    body:not(.entrance-ready) .music-art-button,
    body:not(.entrance-ready) .sahxl-text-message-wrap {
      opacity: 0;
      will-change: opacity, transform;
    }

    body.entrance-ready .site-logo,
    body.entrance-ready .suite-clock,
    body.entrance-ready .top-nav__link,
    body.entrance-ready .social-icon,
    body.entrance-ready .music-toggle,
    body.entrance-ready .music-art-button {
      animation: dropFadeIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    body.entrance-ready .top-cta {
      animation: dropFadeInScaled 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    body.entrance-ready .merch-button {
      animation: dropFadeInCentered 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    body.entrance-ready .sahxl-text-message-wrap {
      animation: textMessageSlideIn 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    body.entrance-ready .site-logo {
      animation-delay: 120ms;
    }

    body.entrance-ready .suite-clock {
      animation-delay: 240ms;
    }

    body.entrance-ready .top-nav__link:nth-child(1) {
      animation-delay: 360ms;
    }

    body.entrance-ready .top-nav__link:nth-child(2) {
      animation-delay: 450ms;
    }

    body.entrance-ready .top-nav__link:nth-child(3) {
      animation-delay: 540ms;
    }

    body.entrance-ready .top-nav__link:nth-child(4) {
      animation-delay: 630ms;
    }

    body.entrance-ready .top-cta {
      animation-delay: 760ms;
    }

    body.entrance-ready .social-icon--instagram {
      animation-delay: 860ms;
    }

    body.entrance-ready .social-icon--apple {
      animation-delay: 930ms;
    }

    body.entrance-ready .social-icon--youtube {
      animation-delay: 1000ms;
    }

    body.entrance-ready .social-icon--spotify {
      animation-delay: 1070ms;
    }

    body.entrance-ready .social-icon--tiktok {
      animation-delay: 1140ms;
    }

    body.entrance-ready .social-icon--discord {
      animation-delay: 1210ms;
    }

    body.entrance-ready .merch-button--left {
      animation-delay: 1280ms;
    }

    body.entrance-ready .merch-button--right {
      animation-delay: 1370ms;
    }

    body.entrance-ready .music-toggle {
      animation-delay: 1460ms;
    }

    body.entrance-ready .music-art-button {
      animation-delay: 1550ms;
    }

    body.entrance-ready .sahxl-text-message-wrap {
      animation-delay: 3000ms;
    }

    .suite-clock {
      position: absolute;
      top: 45px;
      left: 295px;
      z-index: 25;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1;
      pointer-events: none;
      font-family: "SF Pro Display", "SF Pro Text", sans-serif;
      font-weight: 400;
      white-space: nowrap;
    }

    .suite-label {
      font-size: 13.5375px;
      color: #ffffff;
      letter-spacing: 0.01em;
    }

    .suite-time {
      margin-top: 6px;
      font-size: 13.5375px;
      color: #8e8e93;
      letter-spacing: 0.01em;
    }

    .top-nav {
      position: absolute;
      top: 44px;
      left: 480px;
      z-index: 40;
      display: flex;
      align-items: baseline;
      gap: 17px;
      white-space: nowrap;
      font-family: "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 12.5927px;
      font-weight: 400;
      line-height: 1;
    }

    .top-nav__link {
      display: inline-flex;
      align-items: baseline;
      gap: 3px;
      color: #111111;
      text-decoration: none;
    }

    .top-nav__link:hover,
    .top-nav__link:focus,
    .top-nav__link:active,
    .top-nav__link:visited {
      text-decoration: none;
    }

    .top-nav__label {
      display: inline-block;
      overflow: visible;
      color: #ffffff;
      white-space: pre;
    }

    .top-nav__count {
      position: relative;
      top: -6px;
      color: #737373;
      font-size: 10.2px;
      line-height: 1;
    }

    .top-cta {
      position: absolute;
      top: 26px;
      right: 23px;
      z-index: 100;
      display: flex;
      align-items: center;
      border: 1px solid #ffffff;
      border-radius: 11px;
      padding: 2px;
      background: rgba(0, 0, 0, 0.62);
      transform: scale(1.083684);
      transform-origin: top right;
    }

    .top-cta__contact {
      display: flex;
      align-items: center;
      gap: 3px;
      padding: 6px 26.43px 6px 18.01px;
      background: transparent;
      color: #ffffff;
      font-family: Inter, Arial, Helvetica, sans-serif;
      font-size: 9.692px;
      font-weight: 400;
      line-height: 1;
      text-decoration: none;
    }

    .top-cta__contact-text {
      display: inline-block;
      width: 10ch;
      white-space: nowrap;
    }

    .top-cta__bag {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 142px;
      padding: 4.86px 24px 4.86px 18px;
      border: 0;
      background: #e9e9e9;
      border-radius: 8px;
      color: #000000;
      font-family: Inter, Arial, Helvetica, sans-serif;
      font-size: 10.692px;
      font-weight: 400;
      line-height: 1;
      text-decoration: none;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
    }

    .top-cta__bag-label {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      white-space: nowrap;
    }

    .top-cta__bag-amount {
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .top-cta__bag-icon {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: #ded8d3;
      border-radius: 9px;
    }

    .top-cta__bag-icon img {
      display: block;
      width: 16px;
      height: 16px;
      object-fit: contain;
      filter: brightness(0) saturate(100%);
    }

    .top-cta__badge {
      position: absolute;
      top: -5px;
      right: -5px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      background: #ffffff;
      border-radius: 50%;
      color: #000000;
      font-family: Inter, Arial, Helvetica, sans-serif;
      font-size: 10px;
      font-weight: 700;
    }

    @media (min-width: 768px) {
      .top-cta,
      .top-cta__contact,
      .top-cta__bag,
      .top-cta__bag-icon,
      .top-cta__badge,
      .top-cta__bag-icon img {
        transition:
          background 220ms ease,
          color 220ms ease,
          border-color 220ms ease,
          filter 220ms ease;
      }

      .top-cta:hover,
      .top-cta:focus-within {
        border-color: #000000;
        background: #ffffff;
      }

      .top-cta:hover .top-cta__contact,
      .top-cta:focus-within .top-cta__contact {
        color: #000000;
      }

      .top-cta:hover .top-cta__contact-text,
      .top-cta:focus-within .top-cta__contact-text {
        color: #000000;
      }

      .top-cta:hover .top-cta__bag,
      .top-cta:focus-within .top-cta__bag {
        background: #000000;
        color: #ffffff;
      }

      .top-cta:hover .top-cta__bag-icon,
      .top-cta:focus-within .top-cta__bag-icon {
        background: #f3f0ed;
      }

      .top-cta:hover .top-cta__badge,
      .top-cta:focus-within .top-cta__badge {
        background: #ffffff;
        color: #000000;
      }

      .top-cta:hover .top-cta__bag-icon img,
      .top-cta:focus-within .top-cta__bag-icon img {
        filter: brightness(0) saturate(100%);
      }
    }

    .sahxl-text-message {
      display: block;
      width: 100%;
      height: auto;
      padding: 0;
      border: 0;
      transition: opacity 180ms ease;
    }

    .sahxl-text-message-wrap {
      position: fixed;
      left: 30px;
      bottom: 30px;
      z-index: 75;
      display: block;
      width: min(298px, calc(100vw - 60px));
      line-height: 0;
    }

    .sahxl-text-message-button {
      position: relative;
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      line-height: 0;
    }

    .sahxl-text-message-wrap .sahxl-text-message {
      position: relative;
    }

    .sahxl-text-message-wrap .sahxl-text-message--hover {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
    }

    .sahxl-text-message-wrap:hover .sahxl-text-message--base,
    .sahxl-text-message-button:focus-visible .sahxl-text-message--base,
    .sahxl-text-message-wrap.is-armed .sahxl-text-message--base {
      opacity: 0;
    }

    .sahxl-text-message-wrap:hover .sahxl-text-message--hover,
    .sahxl-text-message-button:focus-visible .sahxl-text-message--hover,
    .sahxl-text-message-wrap.is-armed .sahxl-text-message--hover {
      opacity: 1;
    }

    .sahxl-text-message-wrap.is-dismissed {
      display: none;
    }

    .sahxl-text-message-close {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 2;
      width: 34px;
      height: 34px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
    }

    .simple-popup {
      position: fixed;
      inset: 0;
      z-index: 600;
      display: grid;
      place-items: center;
      padding: 28px;
      background: rgba(0, 0, 0, 0.68);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 520ms ease, visibility 520ms ease;
    }

    .simple-popup.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .simple-popup__card {
      --tilt-x: 0deg;
      --tilt-y: 0deg;
      position: relative;
      isolation: isolate;
      width: min(41vw, 214.5px);
      line-height: 0;
      transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
      opacity: 0;
      cursor: pointer;
      transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms ease;
    }

    .simple-popup__card::before,
    .simple-popup__card::after {
      content: "";
      position: absolute;
      pointer-events: none;
      opacity: 0;
      transition: opacity 300ms ease;
    }

    .simple-popup__card::before {
      inset: -26px -22px -34px -24px;
      z-index: -1;
      border-radius: 34px;
      background:
        radial-gradient(circle at 16% 86%, rgba(84, 212, 255, 0.58) 0%, rgba(84, 212, 255, 0.18) 22%, rgba(84, 212, 255, 0) 54%),
        radial-gradient(circle at 85% 22%, rgba(151, 76, 255, 0.46) 0%, rgba(151, 76, 255, 0.16) 24%, rgba(151, 76, 255, 0) 56%),
        radial-gradient(circle at 76% 78%, rgba(72, 136, 255, 0.28) 0%, rgba(72, 136, 255, 0.10) 26%, rgba(72, 136, 255, 0) 58%);
      filter: blur(26px);
      transform-origin: 50% 50%;
      animation: popupGlowOrbit 3.2s ease-in-out infinite;
    }

    .simple-popup__card::after {
      inset: -14px;
      z-index: -2;
      border-radius: 28px;
      background:
        radial-gradient(circle at 18% 84%, rgba(92, 219, 255, 0.28) 0%, rgba(92, 219, 255, 0) 34%),
        radial-gradient(circle at 82% 20%, rgba(139, 87, 255, 0.24) 0%, rgba(139, 87, 255, 0) 32%);
      filter: blur(16px);
      animation: popupGlowPulse 1.5s ease-in-out infinite alternate;
    }

    .simple-popup__card.is-swapped::before,
    .simple-popup__card.is-swapped::after {
      opacity: 1;
    }

    .simple-popup.is-open .simple-popup__card {
      opacity: 1;
    }

    @keyframes popupGlowOrbit {
      0% {
        transform: translate3d(-4px, 2px, 0) scale(0.98);
      }

      25% {
        transform: translate3d(5px, -5px, 0) scale(1.02);
      }

      50% {
        transform: translate3d(8px, 3px, 0) scale(1.01);
      }

      75% {
        transform: translate3d(-6px, 6px, 0) scale(1.03);
      }

      100% {
        transform: translate3d(-4px, 2px, 0) scale(0.98);
      }
    }

    @keyframes popupGlowPulse {
      0% {
        opacity: 0.62;
        transform: scale(0.985);
      }

      100% {
        opacity: 1;
        transform: scale(1.02);
      }
    }

    .simple-popup__image {
      display: block;
      width: 100%;
      height: auto;
      max-height: calc(var(--app-height) - 56px);
      transition: none;
    }

    .simple-popup__image--swap {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
    }

    .simple-popup__card.is-swapped .simple-popup__image--base {
      visibility: visible;
      animation: popupBaseFadeOut 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .simple-popup__card.is-swapped .simple-popup__image--swap {
      visibility: visible;
      animation: popupRevealIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
      filter: none;
    }

    .simple-popup__card.is-swapped .simple-popup-zip {
      opacity: 0;
      visibility: hidden;
    }

    .simple-popup-zip {
      position: absolute;
      top: 44%;
      left: -3%;
      right: 0;
      z-index: 2;
      height: clamp(36px, 8.9vw, 53px);
      line-height: 1;
      pointer-events: none;
      transition: none;
    }

    .simple-popup-zip__strip {
      position: absolute;
      top: 0;
      right: 0;
      left: 8.6%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: rgba(226, 225, 235, 0.64);
      color: rgba(35, 35, 42, 0.62);
      font-family: Inter, Arial, Helvetica, sans-serif;
      font-size: clamp(10px, calc(1.9vw - 2px), 15px);
      font-weight: 400;
      letter-spacing: 0;
      backdrop-filter: blur(13px) saturate(1.15);
      -webkit-backdrop-filter: blur(13px) saturate(1.15);
      transform-origin: left center;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
    }

    .simple-popup-zip__tag {
      position: absolute;
      top: 0;
      left: 0;
      width: 12%;
      min-width: 42px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px 0 0 16px;
      background: #ff4747;
      color: #ffffff;
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    }

    .simple-popup-zip__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: clamp(12px, 2.2vw, 16px);
      height: clamp(12px, 2.2vw, 16px);
      border-radius: 50%;
      background: #ffffff;
      color: #ff4747;
    }

    .simple-popup-zip__icon svg {
      display: block;
      width: 70%;
      height: 70%;
    }

    .simple-popup__card.is-unzipping .simple-popup-zip__tag {
      animation: popupZipTag 760ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
    }

    .simple-popup__card.is-unzipping .simple-popup-zip__strip {
      animation: popupZipStrip 760ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
    }

    .simple-popup__card.is-unzipping .simple-popup-zip__text {
      animation: popupZipText 360ms ease forwards;
    }

    @keyframes popupZipTag {
      0% {
        left: 0;
        transform: translateX(0);
        opacity: 1;
      }

      92% {
        left: 100%;
        transform: translateX(-100%);
        opacity: 1;
      }

      100% {
        left: 100%;
        transform: translateX(-100%);
        opacity: 0;
      }
    }

    @keyframes popupZipStrip {
      0% {
        clip-path: inset(0 0 0 0 round 0);
        transform: translateX(0);
        opacity: 1;
      }

      88% {
        opacity: 1;
      }

      100% {
        clip-path: inset(0 0 0 100% round 0);
        transform: translateX(0);
        opacity: 0;
      }
    }

    @keyframes popupZipText {
      to {
        opacity: 0;
        transform: translateX(-18px);
      }
    }

    @keyframes popupBaseFadeOut {
      from {
        opacity: 1;
        visibility: visible;
      }

      to {
        opacity: 0;
        visibility: hidden;
      }
    }

    @keyframes popupRevealIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .simple-popup__actions {
      position: absolute;
      top: 17px;
      right: 17px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 12px;
      line-height: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 520ms ease;
    }

    .simple-popup__card.is-swapped .simple-popup__actions {
      opacity: 1;
      pointer-events: auto;
    }

    .simple-popup__action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      padding: 0;
      border: 1px solid rgba(0, 0, 0, 0.42);
      border-radius: 50%;
      background: rgba(99, 99, 99, 0.88);
      color: #ffffff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 18px rgba(0, 0, 0, 0.22);
      cursor: pointer;
      transition: background 180ms ease, transform 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .simple-popup__action:hover,
    .simple-popup__action:focus-visible,
    .simple-popup__action.is-active {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.24);
      outline: none;
      transform: translateY(-1px);
    }

    .simple-popup-player__button:hover,
    .simple-popup-player__button:focus-visible {
      background: rgba(255, 255, 255, 0.10);
      border-color: rgba(255, 255, 255, 0.30);
      outline: none;
      transform: translateY(-1px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 3px rgba(255, 70, 245, 1),
        0 0 7px rgba(134, 78, 255, 0.98),
        0 0 13px rgba(45, 145, 255, 0.88),
        0 0 20px rgba(196, 54, 255, 0.78);
    }

    .simple-popup-player__button:hover::before,
    .simple-popup-player__button:focus-visible::before,
    .simple-popup-player.is-playing .simple-popup-player__button--play::before {
      opacity: 1;
    }

    .simple-popup__action--heart:hover,
    .simple-popup__action--heart:focus-visible {
      color: #ff4747;
    }

    .simple-popup__action--share:hover,
    .simple-popup__action--share:focus-visible {
      color: #4aa8ff;
    }

    .simple-popup__action svg {
      display: block;
      width: 26px;
      height: 26px;
      filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.42));
    }

    .simple-popup-player {
      position: absolute;
      left: 0;
      right: 0;
      top: auto;
      bottom: 10px;
      z-index: 3;
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 18px 28px 20px;
      background: transparent;
      color: #ffffff;
      line-height: 1;
      opacity: 0;
      pointer-events: none;
      transform: none;
      transition: opacity 520ms ease, transform 520ms ease;
    }

    .simple-popup__card.is-swapped .simple-popup-player {
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }
.simple-popup-player__title:hover .simple-popup-player__title-text,


    .simple-popup-player__time-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: "SFMono-Regular", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.96);
    }

    .simple-popup-player__bar {
      position: relative;
      height: 7px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.42);
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
      cursor: pointer;
    }

    .simple-popup-player__progress {
      position: absolute;
      inset: 0 auto 0 0;
      width: 43%;
      border-radius: inherit;
      background: #ffffff;
    }

    .simple-popup-player__controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .simple-popup-player__button {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 62px;
      height: 62px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 24px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(4px) saturate(1.02);
      -webkit-backdrop-filter: blur(4px) saturate(1.02);
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .simple-popup-player__button::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      background: conic-gradient(
        from 0deg,
        rgba(255, 70, 245, 0) 0deg,
        rgba(255, 70, 245, 0.95) 70deg,
        rgba(134, 78, 255, 0.98) 150deg,
        rgba(45, 145, 255, 0.88) 230deg,
        rgba(196, 54, 255, 0) 320deg,
        rgba(255, 70, 245, 0) 360deg
      );
      opacity: 0;
      z-index: -1;
      transition: opacity 180ms ease;
      animation: popupButtonNeonOrbit 1.6s linear infinite;
    }

    .simple-popup-player__button--play {
      width: 74px;
      height: 74px;
      background: rgba(255, 255, 255, 0.10);
    }

    .simple-popup-player__button svg {
      display: block;
      width: 30px;
      height: 30px;
      color: #ffffff;
      filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
    }

    .simple-popup-player__button--play svg {
      width: 34px;
      height: 34px;
      transform: translateX(2px);
    }

    .simple-popup-player__button--play .simple-popup-player__pause-icon {
      display: none;
    }

    .simple-popup-player.is-playing .simple-popup-player__button--play .simple-popup-player__play-icon {
      display: none;
    }

    .simple-popup-player.is-playing .simple-popup-player__button--play .simple-popup-player__pause-icon {
      display: block;
      transform: none;
    }

    .simple-popup-listen-gate {
      position: absolute;
      inset: 0;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      background: url("https://res.cloudinary.com/dlpufegqf/image/upload/q_auto/f_auto/v1776997163/Screenshot_2026-04-24_at_12_16_12_pm-Picsart-AiImageEnhancer_qzgmyb.webp") center center / cover no-repeat;
      opacity: 0;
      pointer-events: none;
      transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .simple-popup-listen-gate::before {
      content: none;
    }

    .simple-popup-listen-gate > * {
      position: relative;
      z-index: 1;
    }

    .simple-popup__card.is-preview-locked .simple-popup-listen-gate {
      opacity: 1;
      pointer-events: auto;
    }

    .simple-popup-capture {
      width: min(84%, 360px);
      transform: translateY(120px);
    }

    .simple-popup-capture__note {
      width: 100%;
      margin-top: 20px;
      padding-left: 0;
      transform: translateX(5px);
      text-align: left;
      color: rgba(220, 220, 224, 0.82);
      font-family: "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 11px;
      font-style: normal;
      font-weight: 400;
      line-height: 1.35;
      text-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
    }

    .simple-popup-capture__note-link {
      color: #baf7ea;
      text-decoration: none;
      background-image: linear-gradient(currentColor, currentColor);
      background-position: 0 100%;
      background-repeat: no-repeat;
      background-size: 0% 1px;
      transition: background-size 650ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .simple-popup-capture__note-link:hover,
    .simple-popup-capture__note-link:focus-visible {
      background-size: 100% 1px;
      outline: none;
    }

    .simple-popup-capture__field {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 62px;
      padding: 0 18px;
      border: 1px solid rgba(255, 255, 255, 0.34);
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(126, 170, 245, 0.34) 0%, rgba(92, 144, 231, 0.28) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 16px 40px rgba(24, 66, 138, 0.20);
      backdrop-filter: blur(12px) saturate(1.1);
      -webkit-backdrop-filter: blur(12px) saturate(1.1);
    }

    .simple-popup-capture__icon {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      color: rgba(255, 255, 255, 0.95);
    }

    .simple-popup-capture__icon svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    .simple-popup-capture__input {
      flex: 1 1 auto;
      width: 100%;
      min-width: 0;
      padding: 0;
      border: 0;
      background: transparent;
      color: #ffffff;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 1;
      outline: none;
    }

    .simple-popup-capture__input::placeholder {
      color: rgba(255, 255, 255, 0.92);
    }


    .simple-popup-capture__input:-webkit-autofill,
    .simple-popup-capture__input:-webkit-autofill:hover,
    .simple-popup-capture__input:-webkit-autofill:focus,
    .simple-popup-capture__input:-webkit-autofill:active {
      -webkit-text-fill-color: #ffffff;
      caret-color: #ffffff;
      -webkit-box-shadow: 0 0 0 1000px transparent inset;
      box-shadow: 0 0 0 1000px transparent inset;
      background-color: transparent !important;
      background-clip: content-box !important;
      transition: background-color 99999s ease-out 0s;
    }

    .simple-popup-capture__input:-moz-autofill {
      box-shadow: 0 0 0 1000px transparent inset;
      -moz-text-fill-color: #ffffff;
      caret-color: #ffffff;
    }

    .simple-popup-capture__submit {
      flex: 0 0 auto;
      width: 38px;
      height: 38px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      cursor: pointer;
      transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    }

    .simple-popup-capture__submit:hover,
    .simple-popup-capture__submit:focus-visible {
      background: linear-gradient(180deg, rgba(110, 167, 255, 0.96) 0%, rgba(74, 126, 245, 0.96) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 0 0 1px rgba(146, 202, 255, 0.28),
        0 12px 26px rgba(55, 112, 235, 0.30);
      outline: none;
      transform: translateX(1px);
    }

    .simple-popup-capture__submit svg {
      display: block;
      width: 18px;
      height: 18px;
      margin: 0 auto;
    }

    .simple-popup-capture.is-submitted .simple-popup-capture__field {
      background: linear-gradient(180deg, rgba(136, 198, 255, 0.38) 0%, rgba(89, 152, 232, 0.32) 100%);
    }

    .simple-popup-capture.is-submitted .simple-popup-capture__input {
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .simple-popup__card {
        width: min(86vw, 382px);
      }

      .simple-popup-zip {
        top: 43%;
        left: -2%;
        height: clamp(46px, 11.6vw, 62px);
      }

      .simple-popup-zip__strip {
        left: 9.5%;
        font-size: clamp(12px, calc(2.6vw + 1px), 17px);
      }

      .simple-popup-zip__tag {
        min-width: 46px;
      }

      .simple-popup__actions {
        top: 14px;
        right: 14px;
        gap: 10px;
      }

      .simple-popup__action {
        width: 42px;
        height: 42px;
      }

      .simple-popup__action svg {
        width: 21px;
        height: 21px;
      }

      .simple-popup-player {
        bottom: 5px;
        gap: 12px;
        padding: 14px 24px 16px;
      }

      .simple-popup-player__controls {
        gap: 12px;
      }

      .simple-popup-player__button {
        width: 52px;
        height: 52px;
      }

      .simple-popup-player__button--play {
        width: 64px;
        height: 64px;
      }

      .simple-popup-player__button svg {
        width: 25px;
        height: 22.5625px;
      }

      .simple-popup-player__button--play svg {
        width: 29px;
        height: 29px;
      }

      .simple-popup-capture {
        width: min(88%, 340px);
        transform: translateY(100px);
      }

      .simple-popup-capture__note {
        transform: translate(5px, -5px);
      }

      .simple-popup-capture__field {
        min-height: 56px;
        gap: 10px;
        padding: 0 16px;
      }

      .simple-popup-capture__input {
        font-size: 12px;
      }
    }

    @media (min-width: 769px) {
      .simple-popup__card {
        width: min(54vw, 430px);
      }
    }

    .social-icon {
      position: absolute;
      z-index: 45;
      display: block;
      line-height: 0;
      opacity: 0.95;
    }

    .social-icon img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: filter 180ms ease, transform 180ms ease;
    }

    .social-icon--instagram {
      width: 15.3px;
      height: 15.3px;
    }

    .social-icon:hover img,
    .social-icon:focus-visible img {
      filter:
        drop-shadow(0 0 3px rgba(255, 70, 245, 1))
        drop-shadow(0 0 7px rgba(134, 78, 255, 0.98))
        drop-shadow(0 0 13px rgba(45, 145, 255, 0.88))
        drop-shadow(0 0 20px rgba(196, 54, 255, 0.78));
      transform: scale(1.12);
    }

    .social-icon--apple {
      width: 16.9575px;
      height: 16.9575px;
    }

    .social-icon--youtube {
      width: 17.765px;
      height: 17.765px;
    }

    .social-icon--spotify {
      width: 16.15px;
      height: 16.15px;
    }

    .social-icon--tiktok {
      width: 17.765px;
      height: 17.765px;
    }

    .social-icon--discord {
      width: 20.0925px;
      height: 20.0925px;
    }

    .hotspot {
      position: absolute;
      width: 10px;
      height: 10px;
      display: block;
      z-index: 20;
      text-decoration: none;
      color: inherit;
    }

    .hotspot::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 44px;
      height: 44px;
      transform: translate(-50%, -50%);
      background: transparent;
      pointer-events: auto;
    }

    .hotspot__dot {
      position: absolute;
      inset: 0;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
    }

    .hotspot__ring {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 35px;
      height: 35px;
      transform: translate(-50%, -50%) scale(1.08);
      border: 2px solid rgba(255, 255, 255, 0.78);
      background: rgba(255, 255, 255, 0.09);
      border-radius: 50%;
      pointer-events: none;
      animation: hotspotPulse 3.2s ease-out infinite;
    }

    .hotspot__tooltip {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      pointer-events: none;
      background: #fff;
      color: #000;
      border-radius: 6px;
      padding: 8px 12px;
      font-family: "SFMono-Regular", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 12px;
      line-height: 1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
      transition: opacity 150ms ease;
      z-index: 2;
    }

    .hotspot:hover .hotspot__tooltip,
    .hotspot:focus-visible .hotspot__tooltip {
      opacity: 1;
      pointer-events: auto;
    }

    .hotspot.is-mobile-active .hotspot__tooltip {
      opacity: 1;
      pointer-events: auto;
    }


    .hotspot--tv {
      left: 30.44%;
      top: 36.23%;
    }

    .hotspot--bookshelf {
      left: 78.95%;
      top: 39.63%;
    }

    .hotspot--table {
      left: 30.58%;
      top: 75.6%;
    }

    .hotspot--far-left-table {
      left: 5.42%;
      top: 68.8%;
    }

    .hotspot--middle-table {
      left: 43.72%;
      top: 63.18%;
    }

    .hotspot--right-couch {
      left: 61.2%;
      top: 55.8%;
    }

    .merch-button {
      position: absolute;
      top: 56%;
      transform: translateY(-50%);
      z-index: 30;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      height: 36px;
      padding: 0 22px 0 22px;
      border: 1px solid #fff;
      border-radius: 999px;
      background: transparent;
      color: #fff;
      text-decoration: none;
      font-family: "SFMono-Regular", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 11.6px;
      line-height: 1;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: background 420ms cubic-bezier(0.25, 0.8, 0.25, 1), color 420ms cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .merch-button:hover,
    .merch-button:focus-visible {
      background: #fff;
      color: #000;
      outline: none;
    }

    .merch-button__arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      margin-left: 0;
    }

    .merch-button__arrow svg {
      width: 15px;
      height: auto;
      display: block;
    }

    .merch-button--left {
      left: 34px;
      right: auto;
    }

    .merch-button--right {
      right: 34px;
    }

    .merch-button--right .merch-button__text {
      padding-left: 3px;
    }

    .merch-button--left .merch-button__arrow {
      order: 1;
      margin: 0;
      flex: 0 0 auto;
      transform: translateX(-2px);
    }

    .merch-button--left .merch-button__arrow svg {
      transform: scaleX(-1);
    }

    .merch-button--left .merch-button__text {
      order: 2;
      display: inline-block;
      line-height: 1;
      margin: 0;
      padding: 0;
      flex: 0 0 auto;
      transform: translateX(-2px);
    }

    .music-art-button {
      position: fixed;
      right: 26.6px;
      bottom: 22.8px;
      width: 79.22145px;
      height: 79.22145px;
      border: 0;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      cursor: pointer;
      z-index: 60;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
      padding: 0;
      transition: filter 180ms ease;
    }

    .music-art-button:hover,
    .music-art-button:focus-visible {
      filter: brightness(1.08);
      outline: none;
    }

    .music-art-button img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      animation: spin 8s linear infinite;
      animation-play-state: paused;
    }

    .music-art-button.is-playing img {
      animation-play-state: running;
    }

    .music-toggle {
      position: fixed;
      right: 123.001725px;
      bottom: 48.9922125px;
      width: 0;
      height: 0;
      border-top: 14.65857421875px solid transparent;
      border-bottom: 14.65857421875px solid transparent;
      border-left: 22.8022265625px solid rgba(255, 255, 255, 0.98);
      border-right: 0;
      border-radius: 0;
      background: transparent;
      cursor: pointer;
      z-index: 60;
      opacity: 0.95;
      transition: opacity 180ms ease;
      padding: 0;
    }

    .music-toggle:hover,
    .music-toggle:focus-visible {
      opacity: 1;
      outline: none;
    }

    .music-toggle.is-playing {
      position: fixed;
      width: 22.8022265625px;
      height: 26.0596875px;
      border: 0;
      background: transparent;
    }

    .music-toggle.is-playing::before,
    .music-toggle.is-playing::after {
      content: "";
      position: absolute;
      top: 0;
      width: 6.514921875px;
      height: 26.0596875px;
      background: rgba(255, 255, 255, 0.98);
    }

    .music-toggle.is-playing::before {
      left: 1.714453125px;
    }

    .music-toggle.is-playing::after {
      right: 1.714453125px;
    }

    @keyframes hotspotPulse {
      0% {
        transform: translate(-50%, -50%) scale(0.72);
        opacity: 0.75;
      }

      70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.18;
      }

      100% {
        transform: translate(-50%, -50%) scale(1.28);
        opacity: 0;
      }
    }

    @keyframes fadeInLogo {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes dropFadeIn {
      from {
        opacity: 0;
        transform: translateY(-18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes dropFadeInScaled {
      from {
        opacity: 0;
        transform: translateY(-18px) scale(1.083684);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1.083684);
      }
    }

    @keyframes dropFadeInCentered {
      from {
        opacity: 0;
        transform: translateY(calc(-50% - 18px));
      }

      to {
        opacity: 1;
        transform: translateY(-50%);
      }
    }

    @keyframes logoCenterFadeIn {
      from {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 18px));
      }

      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }

    @keyframes logoHeaderFadeIn {
      from {
        opacity: 0;
        transform: translate(-50%, -18px);
      }

      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }

    @keyframes textMessageSlideIn {
      from {
        opacity: 0;
        transform: translate(-28px, 26px);
      }

      to {
        opacity: 1;
        transform: translate(0, 0);
      }
    }

    @keyframes textMessageMobileSlideIn {
      from {
        opacity: 0;
        transform: translate(-28px, calc(-50% + 26px));
      }

      to {
        opacity: 1;
        transform: translate(0, -50%);
      }
    }

    @keyframes mobileMenuLineLoop {
      0% {
        transform: scaleX(0);
      }

      18%,
      100% {
        transform: scaleX(1);
      }
    }

    @keyframes mobileMusicToggleFadeIn {
      from {
        opacity: 0;
        transform: translateY(-18px) scale(1.06);
      }

      to {
        opacity: 0.95;
        transform: translateY(0) scale(1.06);
      }
    }
to {
        transform: translate3d(-50%, 0, 0);
      }
    }

@media (prefers-reduced-motion: reduce) {
      .video-bg {
        animation: none;
      }

      .site-logo,
      .suite-clock,
      .top-nav,
      .top-nav__link,
      .social-icon,
      .merch-button,
      .music-art-button,
      .music-toggle,
      .sahxl-text-message-wrap {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .top-cta {
        opacity: 1 !important;
        transform: scale(1.083684) !important;
        transition: none !important;
      }

      #site-preloader {
        transition: none !important;
      }
    }

    @media (max-width: 767px) {
      .sahxl-text-message-wrap {
        bottom: auto;
        top: 30%;
        transform: none;
      }

      .top-fade-overlay {
        z-index: 2;
        height: 170px;
      }

      .bottom-fade-overlay {
        display: block;
        z-index: 2;
        height: 85px;
      }

      .top-nav {
        display: none;
      }

      .top-cta {
        display: none;
      }

      .social-icon {
        display: none;
      }

      .suite-clock {
        position: fixed;
        top: 27%;
        right: max(10px, env(safe-area-inset-right));
        left: auto;
        z-index: 241;
        display: flex;
        align-items: flex-end;
        text-align: right;
        opacity: 0;
      }

      .site-logo {
        display: block;
        top: calc(max(22px, env(safe-area-inset-top)) + 0px);
        right: 0;
        left: 0;
        width: min(54vw, 242px);
        margin: 0 auto;
        z-index: 240;
        transform: none;
        transform-origin: center;
      }

      body.entrance-ready .site-logo {
        animation: dropFadeIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
        animation-delay: 120ms;
      }

      .mobile-menu,
      .mobile-bag {
        position: fixed;
        top: calc(max(30px, env(safe-area-inset-top)) + 0px);
        z-index: 241;
        display: block;
        width: 28px;
        height: 28px;
        border: 0;
        padding: 0;
        background: transparent;
        opacity: 0;
        will-change: opacity, transform;
      }

      .mobile-menu {
        left: 18px;
        width: 42px;
        height: 34px;
      }

      .mobile-menu.is-open {
        z-index: 560;
        opacity: 0;
        pointer-events: none;
      }

      .mobile-menu__line {
        position: absolute;
        left: 0;
        display: block;
        height: 1.5px;
        background: #ffffff;
        transform-origin: left center;
        animation: mobileMenuLineLoop 10s cubic-bezier(0.19, 1, 0.22, 1) infinite both;
        transition: opacity 220ms ease;
      }

      .mobile-menu__line:nth-child(1) {
        top: 6px;
        width: 32px;
        animation-delay: 120ms;
      }

      .mobile-menu__line:nth-child(2) {
        top: 16px;
        width: 42px;
        animation-delay: 340ms;
      }

      .mobile-menu__line:nth-child(3) {
        top: 26px;
        width: 24px;
        animation-delay: 560ms;
      }

    .mobile-menu__swap-icon {
      position: absolute;
      left: 0;
      top: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      opacity: 0;
      transform: translateY(-50%);
      transition: opacity 260ms ease;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 24px rgba(0, 0, 0, 0.16);
    }

      .mobile-menu__swap-icon svg {
        display: block;
        width: 19px;
        height: 19px;
      }

      .mobile-menu.is-open .mobile-menu__line {
        opacity: 0;
      }

      .mobile-menu.is-open .mobile-menu__swap-icon {
        opacity: 0;
      }


      .mobile-bag {
        right: max(10px, env(safe-area-inset-right));
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 34px;
        color: #ffffff;
        font-weight: 400;
        line-height: 34px;
        text-decoration: none;
        white-space: nowrap;
      }

      .cart-text {
        display: none;
      }

      .cart-word {
        display: none;
      }

      .mobile-bag__icon {
        display: block;
        width: 39px;
        height: 39px;
        object-fit: contain;
        transform: translateX(-15px);
      }

      body.entrance-ready .mobile-menu,
      body.entrance-ready .mobile-bag {
        animation: dropFadeIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
      }

      body.entrance-ready .mobile-menu {
        animation-delay: 260ms;
      }

      body.entrance-ready .mobile-bag {
        animation-delay: 340ms;
      }

      body.entrance-ready .suite-clock {
        animation: dropFadeIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
        animation-delay: 340ms;
      }

      @media (min-width: 768px) {
        body.entrance-ready .suite-clock {
          animation: none !important;
          opacity: 1 !important;
          transform: none !important;
        }
      }
    }

    
    .mobile-drawer {
      position: fixed;
      inset: 0;
      z-index: 500;
      display: none;
      background: rgba(0, 0, 0, 0.34);
      opacity: 0;
      pointer-events: none;
      transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer__panel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      max-width: none;
      height: var(--app-height);
      min-height: var(--app-height);
      max-height: var(--app-height);
      padding: 0;
      --drawer-pad-x: clamp(20px, 6vw, 34px);
      --drawer-top-pad: calc(max(20px, env(safe-area-inset-top)) + 18px);
      --drawer-footer-bottom: calc(max(18px, env(safe-area-inset-bottom)) + 24px);
      --drawer-hero-height: clamp(220px, calc(var(--app-height) * 0.43), 340px);
      --drawer-meta-top: clamp(198px, calc(var(--app-height) * 0.33), 282px);
      --drawer-menu-top: clamp(308px, calc(var(--app-height) * 0.445), 398px);
      background:
        linear-gradient(180deg, rgba(3, 6, 15, 0.97) 0%, rgba(4, 8, 18, 0.985) 46%, rgba(4, 7, 17, 0.99) 100%);
      transform: none;
      opacity: 0;
      transition: opacity 880ms cubic-bezier(0.22, 1, 0.36, 1);
      overflow: hidden;
      box-shadow:
        0 -24px 48px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(0, 0, 0, 0.05);
    }

    .mobile-drawer__panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 86%, rgba(22, 54, 160, 0.10), rgba(22, 54, 160, 0) 38%),
        radial-gradient(circle at 82% 76%, rgba(0, 170, 255, 0.08), rgba(0, 170, 255, 0) 22%);
      pointer-events: none;
    }

    .mobile-drawer__panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3, 6, 15, 0.1) 0%, rgba(3, 6, 15, 0.18) 24%, rgba(3, 6, 15, 0.34) 40%, rgba(3, 6, 15, 0.62) 54%, rgba(3, 6, 15, 0.86) 66%, rgba(3, 6, 15, 0.97) 76%, rgba(3, 6, 15, 1) 100%);
      pointer-events: none;
    }

    .mobile-drawer__bg-video {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: var(--drawer-hero-height);
      z-index: 0;
      width: 100%;
      object-fit: cover;
      object-position: center center;
      opacity: 1;
      pointer-events: none;
    }

    .mobile-drawer__video-fade {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: var(--drawer-hero-height);
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(3, 6, 15, 0.9) 0%, rgba(3, 6, 15, 0.5) 14%, rgba(3, 6, 15, 0.12) 30%, rgba(3, 6, 15, 0) 42%),
        linear-gradient(180deg, rgba(3, 6, 15, 0) 0%, rgba(3, 6, 15, 0.08) 38%, rgba(3, 6, 15, 0.42) 68%, rgba(3, 6, 15, 0.82) 88%, rgba(3, 6, 15, 1) 100%);
      pointer-events: none;
    }

    
    .mobile-drawer__bottom-fade {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 170px;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(0, 0, 0, 0.90) 20%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.30) 80%,
        rgba(0, 0, 0, 0.08) 95%,
        rgba(0, 0, 0, 0.00) 100%
      );
    }

    .mobile-drawer__topbar {
      position: absolute;
      top: var(--drawer-top-pad);
      left: var(--drawer-pad-x);
      right: var(--drawer-pad-x);
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer__logo {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transform: translateY(3px);
    }

    .mobile-drawer__logo img {
      display: block;
      width: clamp(172px, 48vw, 224px);
      height: auto;
    }

    .mobile-drawer__close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      color: #ffffff;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 24px rgba(0, 0, 0, 0.16);
      cursor: pointer;
      transform: translateY(-5px);
    }

    .mobile-drawer__close svg {
      display: block;
      width: 24px;
      height: 24px;
    }

    .mobile-drawer__message {
      position: absolute;
      right: var(--drawer-pad-x);
      top: var(--drawer-meta-top);
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      min-width: 134px;
      height: 34px;
      padding: 0 14px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      color: #ffffff;
      font-family: "SFMono-Regular", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.06em;
      line-height: 1;
      text-transform: uppercase;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 24px rgba(0, 0, 0, 0.16);
      cursor: pointer;
      transform: translateY(18px);
      opacity: 0;
      transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer__content {
      position: absolute;
      left: var(--drawer-pad-x);
      right: var(--drawer-pad-x);
      top: var(--drawer-menu-top);
      bottom: calc(var(--drawer-footer-bottom) + 52px);
      z-index: 2;
      min-height: 0;
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer__statement {
      position: absolute;
      left: var(--drawer-pad-x);
      top: var(--drawer-meta-top);
      z-index: 2;
      margin: 0;
      color: #969ba4;
      font-family: "SFMono-Regular", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.42;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: pre-line;
      text-shadow: 0 0 14px rgba(4, 8, 18, 0.28);
      opacity: 0;
      transform: translateY(14px);
      transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer__policies {
      position: absolute;
      left: var(--drawer-pad-x);
      right: var(--drawer-pad-x);
      bottom: calc(var(--drawer-footer-bottom) - 10px);
      z-index: 2;
      color: rgba(215, 223, 230, 0.88);
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.5;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 4px;
      width: auto;
      padding: 0 2px;
      text-align: center;
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer__policy-link {
      color: inherit;
      text-decoration: none;
      white-space: nowrap;
    }

    .mobile-drawer__policy-separator {
      margin: 0;
      opacity: 0.68;
      flex: 0 0 auto;
    }

    .mobile-drawer__menu-text {
      display: flex;
      flex-direction: column;
      gap: clamp(4px, 2.1vh, 14px);
      margin: 0;
      transform: none;
    }

    .mobile-drawer__menu-line {
      display: block;
      padding: 0;
      color: #d9d9d9;
      font-family: "Bebas Neue Bold", "Barlow Condensed", "Arial Narrow", sans-serif;
      font-size: clamp(54px, min(15vw, 10.4vh), 106px);
      font-weight: 700;
      line-height: 0.84;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
      white-space: nowrap;
      position: relative;
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer__menu-label {
      display: block;
    }

    .mobile-drawer__menu-line:last-child {
      padding-bottom: 0;
    }

    
    .mobile-drawer__socials {
      display: none;
    }

    @media (max-width: 767px) {
      .mobile-drawer__socials {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        line-height: 0;
        width: fit-content;
        transform: translateX(5px) scale(1.347402);
        transform-origin: left top;
      }

      .mobile-drawer__social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(18px);
        transition:
          opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
          transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
          filter 180ms ease,
          transform 180ms ease;
      }

      .mobile-drawer__social-link img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: filter 180ms ease, transform 180ms ease;
      }

      .mobile-drawer__social-link--instagram {
        width: 15.3px;
        height: 15.3px;
      }

      .mobile-drawer__social-link--apple {
        width: 16.9575px;
        height: 16.9575px;
      }

      .mobile-drawer__social-link--youtube {
        width: 17.765px;
        height: 17.765px;
      }

      .mobile-drawer__social-link--spotify {
        width: 16.15px;
        height: 16.15px;
      }

      .mobile-drawer__social-link--tiktok {
        width: 17.765px;
        height: 17.765px;
      }

      .mobile-drawer__social-link--discord {
        width: 20.0925px;
        height: 20.0925px;
      }

      .mobile-drawer__social-link:hover img,
      .mobile-drawer__social-link:focus-visible img {
        filter:
          drop-shadow(0 0 3px rgba(255, 70, 245, 1))
          drop-shadow(0 0 7px rgba(134, 78, 255, 0.98))
          drop-shadow(0 0 13px rgba(45, 145, 255, 0.88))
          drop-shadow(0 0 20px rgba(196, 54, 255, 0.78));
        transform: scale(1.12);
      }

      .mobile-drawer__social-link:focus-visible {
        outline: none;
      }

      .mobile-drawer.is-open .mobile-drawer__social-link:nth-child(1) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 500ms;
      }

      .mobile-drawer.is-open .mobile-drawer__social-link:nth-child(2) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 540ms;
      }

      .mobile-drawer.is-open .mobile-drawer__social-link:nth-child(3) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 580ms;
      }

      .mobile-drawer.is-open .mobile-drawer__social-link:nth-child(4) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 620ms;
      }

      .mobile-drawer.is-open .mobile-drawer__social-link:nth-child(5) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 660ms;
      }

      .mobile-drawer.is-open .mobile-drawer__social-link:nth-child(6) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 700ms;
      }
    }
.mobile-drawer__menu-line:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 5px);
      height: 1px;
      background: rgba(217, 217, 217, 0.32);
    }

    @media (max-width: 767px) {
      .mobile-drawer__menu-line::after {
        display: none !important;
      }
    }


    @media (max-width: 767px) and (max-height: 620px) {
      .mobile-drawer__panel {
        --drawer-top-pad: calc(max(14px, env(safe-area-inset-top)) + 10px);
        --drawer-footer-bottom: calc(max(12px, env(safe-area-inset-bottom)) + 12px);
        --drawer-hero-height: clamp(170px, calc(var(--app-height) * 0.44), 250px);
        --drawer-meta-top: clamp(142px, calc(var(--app-height) * 0.31), 198px);
        --drawer-menu-top: clamp(216px, calc(var(--app-height) * 0.42), 274px);
      }

      .mobile-drawer__logo img {
        width: clamp(138px, 40vw, 186px);
      }

      .mobile-drawer__close {
        width: 42px;
        height: 42px;
      }

      .mobile-drawer__message {
        height: 30px;
        min-width: 122px;
        padding: 0 12px;
        font-size: 10px;
      }

      .mobile-drawer__statement {
        font-size: 10px;
        line-height: 1.28;
      }

      .mobile-drawer__menu-text {
        gap: clamp(8px, 2vh, 14px);
      }

      .mobile-drawer__menu-line {
        font-size: clamp(38px, min(12vw, 9.2vh), 64px);
        line-height: 0.86;
      }

      .mobile-drawer__policies {
        font-size: 10.5px;
        line-height: 1.25;
      }
    }

    .mobile-drawer.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-drawer.is-open .mobile-drawer__panel {
      opacity: 1;
    }

    .mobile-drawer.is-open .mobile-drawer__topbar {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 90ms;
    }

    .mobile-drawer.is-open .mobile-drawer__message {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 120ms;
    }

    .mobile-drawer.is-open .mobile-drawer__statement {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 160ms;
    }

    .mobile-drawer.is-open .mobile-drawer__content {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 230ms;
    }

    .mobile-drawer.is-open .mobile-drawer__menu-line:nth-child(1) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 290ms;
    }

    .mobile-drawer.is-open .mobile-drawer__menu-line:nth-child(2) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 340ms;
    }

    .mobile-drawer.is-open .mobile-drawer__menu-line:nth-child(3) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 390ms;
    }

    .mobile-drawer.is-open .mobile-drawer__menu-line:nth-child(4) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 440ms;
    }

    .mobile-drawer.is-open .mobile-drawer__policies {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 510ms;
    }

    .mobile-cart {
      position: fixed;
      inset: 0;
      z-index: 570;
      display: block;
      background: rgba(0, 0, 0, 0.56);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 320ms ease, visibility 320ms ease;
    }

    .mobile-cart__panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(80vw, 420px);
      max-width: 420px;
      height: 100%;
      padding: calc(max(28px, env(safe-area-inset-top)) + 10px) 20px calc(max(28px, env(safe-area-inset-bottom)) + 20px);
      background: #ffffff;
      border-left: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
      opacity: 1;
      transform: translate3d(100%, 0, 0);
      transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      will-change: transform;
    
      padding-bottom: 20px;}

    .mobile-cart.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mobile-cart.is-open .mobile-cart__panel {
      transform: translate3d(0, 0, 0);
    }

    @media (min-width: 769px) {
      .mobile-cart {
        display: block !important;
      }

      .mobile-cart__panel {
        width: 80vw;
        max-width: 420px;
      }
    }


    .mobile-cart__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .mobile-cart__title {
      color: #111111;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 22px;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .mobile-cart__close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      color: #111111;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 24px rgba(0, 0, 0, 0.16);
      cursor: pointer;
      transform: translateY(-15px);
    }

    .mobile-cart__close img {
      display: block;
      width: 30px;
      height: 30px;
      object-fit: contain;
      filter: brightness(0);
    }

    .mobile-cart__body {
      display: flex;
      flex-direction: column;
      min-height: 0;
      flex: 1 1 auto;
      padding-top: 18px;
      overflow: hidden;
    }

    .mobile-cart__items {
      flex: 1 1 auto;
      margin-top: 8px;
      border-top: 1px solid rgba(0, 0, 0, 0.12);
      overflow-y: auto;
      padding-right: 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .mobile-cart__items::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
    }

    .mobile-cart__item {
      position: relative;
      display: grid;
      grid-template-columns: 94px minmax(0, 1fr);
      gap: 12px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      align-items: stretch;
    }

    .mobile-cart__thumb {
      width: 94px;
      height: 122px;
      border: 0;
      background: #f1f1ef center center / cover no-repeat;
      overflow: hidden;
      position: relative;
    }

    .mobile-cart__thumb--coat {
      background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=500&q=80");
    }

    .mobile-cart__thumb--dress {
      background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=500&q=80");
    }

    .mobile-cart__thumb--robe {
      background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=500&q=80");
    }

    .mobile-cart__details {
      min-width: 0;
      position: relative;
      align-self: stretch;
      min-height: 122px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .mobile-cart__item-head {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding-right: 0;
    }

    .mobile-cart__item-title {
      color: #121212;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 12px;
      font-weight: 300;
      line-height: 1.24;
      max-width: 100%;
      min-height: calc(1.24em * 2);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    
    .mobile-cart__product-name {
      color: #121212;
      font-family: "Barlow Condensed Cart Bold", "Barlow Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.1;
      white-space: nowrap;
      margin-bottom: 2px;
      text-transform: uppercase;
    }

    @media (min-width: 769px) {
      .mobile-cart__product-name {
        max-width: 40ch;
      }
    }

.mobile-cart__item-price {
      color: #121212;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 15px;
      font-weight: 600;
      white-space: nowrap;
    }

    .mobile-cart__meta {
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
      gap: 5px;
      margin-top: 10px;
      color: #111111;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 10px;
      font-weight: 400;
      line-height: 1.1;
      text-transform: uppercase;
      white-space: nowrap;
    }

    
    .mobile-cart__quantity {
      display: inline-grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      width: 84px;
      height: 30px;
      margin-top: 7px;
      border: 1px solid #dcdcdc;
      background: #ffffff;
    }

    .mobile-cart__qty-button,
    .mobile-cart__qty-value {
      color: #111111;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 14px;
      line-height: 1;
      text-align: center;
    }

    .mobile-cart__qty-button {
      border: 0;
      background: transparent;
      cursor: pointer;
      padding: 0;
    }

    .mobile-cart__qty-value {
      font-weight: 500;
    }

    .mobile-cart__item-remove {
      position: absolute;
      top: 14px;
      right: 0;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      padding: 0;
      border: 0;
      background: transparent;
      color: #111111;
      cursor: pointer;
    }

    .mobile-cart__item-remove svg {
      display: block;
      width: 17px;
      height: 17px;
    }

    .mobile-cart__meta-separator {
      color: rgba(0, 0, 0, 0.18);
      flex: 0 0 12px;
      align-self: stretch;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-cart__item-actions {
      display: none;
    }

    .mobile-cart__footer {
      padding: 28px 0 8px;
      margin-top: auto;
      background: rgba(255, 255, 255, 0.76);
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.04);
    }

    .mobile-cart__subtotal {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #1b1b1b;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 15px;
      font-weight: 400;
    }

    .mobile-cart__checkout {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 36px;
      margin-top: 8px;
      border: 0;
      border-radius: 0;
      background: #191919;
      color: #f5f5f5;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .mobile-cart__promo {
      width: 100%;
      margin-top: 8px;
      display: block;
    }

    .mobile-cart__promo img {
      display: block;
      width: 100%;
      height: 28px;
      object-fit: contain;
    }

    .mobile-cart__payment-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin-top: 10px;
      color: #8f8a86;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0;
      text-align: center;
    }

    .mobile-cart__payment-note svg {
      width: 13px;
      height: 13px;
      flex: 0 0 13px;
      stroke: currentColor;
    }

    body.mobile-cart-open {
      overflow: hidden;
      touch-action: none;
    }

    body.mobile-menu-open {
      overflow: hidden;
      touch-action: none;
    }

    @media (min-width: 768px) {
      .mobile-drawer {
        display: none !important;
      }
    }

    @media (max-width: 767px) {
      .mobile-drawer {
        display: block;
      }
    }


    @media (prefers-reduced-motion: reduce) and (max-width: 767px) {
      .site-logo {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }

      .mobile-menu,
      .mobile-bag,
      .suite-clock {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }

      .mobile-menu__line {
        transform: scaleX(1) !important;
        animation: none !important;
      }
}

    @media (max-width: 768px) {
      html,
      body {
        touch-action: pan-x;
      }

      .video-shell {
        height: calc(var(--bg-height) + var(--bg-bleed));
        min-height: calc(var(--bg-height) + var(--bg-bleed));
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        touch-action: pan-x;
        --room-offset: 0px;
        --room-width: 100vw;
      }

      .video-shell::-webkit-scrollbar {
        display: none;
      }

      .room-pan-layer {
        position: relative;
        top: 0;
        left: 0;
        flex: 0 0 auto;
        height: calc(var(--bg-height) + var(--bg-bleed));
        width: max(100vw, calc((var(--bg-height) + var(--bg-bleed)) * 16 / 9));
        isolation: isolate;
        --room-pan-x: 0px;
      }

      .video-bg {
        z-index: 0;
        left: 0;
        right: auto;
        width: 100%;
        min-width: 100%;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
        will-change: auto;
      }

      .music-art-button {
        right: max(18px, env(safe-area-inset-right));
        bottom: max(18px, env(safe-area-inset-bottom));
        width: 83.16px;
        height: 83.16px;
        transform: none;
        transform-origin: bottom right;
      }

      .music-toggle {
        right: calc(max(18px, env(safe-area-inset-right)) + 99.38px);
        bottom: calc(max(18px, env(safe-area-inset-bottom)) + 28.35px);
        transform: scale(1.0017);
        transform-origin: center;
      }

      body.entrance-ready .music-art-button {
        animation-delay: 340ms;
      }

      body.entrance-ready .music-toggle {
        animation: mobileMusicToggleFadeIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
        animation-delay: 340ms;
      }

      .sahxl-text-message-wrap {
        left: max(4px, env(safe-area-inset-left));
        top: 43%;
        bottom: auto;
        width: min(279.10px, calc((100vw - 12px - env(safe-area-inset-left) - env(safe-area-inset-right)) * 0.900244));
        transform: translate(0, -50%);
        transform-origin: left center;
      }

      .sahxl-text-message,
      .sahxl-text-message-button {
        width: 100%;
      }

      body.entrance-ready .sahxl-text-message-wrap {
        animation: textMessageMobileSlideIn 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
        animation-delay: 5000ms;
      }

      .merch-button {
        display: inline-flex !important;
        position: absolute !important;
        top: calc(56% - 70px) !important;
        z-index: 230 !important;
        height: 38px !important;
        font-size: 12px !important;
        padding: 0 14px 0 22px !important;
      }

      .merch-button--right {
        right: max(18px, env(safe-area-inset-right)) !important;
        left: auto !important;
        transform: translate3d(0, -50%, 0) !important;
      }

      .merch-button--left {
        left: max(18px, env(safe-area-inset-left)) !important;
        right: auto !important;
        transform: translate3d(0, -50%, 0) !important;
      }

      .merch-button__arrow svg {
        width: 14px !important;
      }

      .hotspot {
        display: block !important;
        position: absolute;
        z-index: 220;
        transform: none;
        will-change: auto;
      }

      .hotspot--tv {
        left: 30.44%;
      }

      .hotspot--bookshelf {
        left: 78.95%;
      }

      .hotspot--table {
        left: 30.58%;
      }

      .hotspot--far-left-table {
        left: 5.42%;
      }

      .hotspot--middle-table {
        left: 43.72%;
      }

      .hotspot--right-couch {
        left: 61.2%;
      }

      .hotspot::before {
        width: 56px;
        height: 56px;
      }

      .hotspot__ring {
        width: 42px;
        height: 42px;
        border-width: 2px;
      }

      .hotspot__tooltip {
        font-size: 11px;
        padding: 7px 10px;
      }

      .hotspot__dot {
        width: 12px !important;
        height: 12px !important;
      }

      .hotspot__tooltip {
        font-size: 12.5px !important;
        padding: 10px 14px !important;
        line-height: 1.2 !important;
      }
    }
    #desktop-cart-trigger {
      padding-right: 0;
      padding-left: 15px;
    
      min-width: 125px;}

    .mobile-cart__checkout,
    .mobile-cart__checkout:hover,
    .mobile-cart__checkout:focus,
    .mobile-cart__checkout:active,
    .mobile-cart__checkout:visited {
      text-decoration: none !important;
      padding-bottom: 20px !important;
    }

  

.mobile-cart__checkout,
.mobile-cart__checkout:hover,
.mobile-cart__checkout:focus,
.mobile-cart__checkout:active,
.mobile-cart__checkout:visited {
  padding-bottom: 0px !important;
}


    .mobile-drawer__menu-text,
    .mobile-drawer__menu-text:hover,
    .mobile-drawer__menu-text:focus,
    .mobile-drawer__menu-text:active,
    .mobile-drawer__menu-text:visited,
    .mobile-drawer__menu-text a,
    .mobile-drawer__menu-text a:hover,
    .mobile-drawer__menu-text a:focus,
    .mobile-drawer__menu-text a:active,
    .mobile-drawer__menu-text a:visited {
      text-decoration: none !important;
    }
