@font-face {
  font-family: "Gunnar Regular";
  src: url("assets/fonts/Gunnar-Regular.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --blue: #a8d7ef;
  --blue-bright: #86d1ee;
  --pink: #efa6bf;
  --pink-panel: #f1c8d8;
  --yellow: #ffca12;
  --red: #ff002d;
  --ink: #11100f;
  --mx: 0;
  --my: 0;
  --idle-motion: 1.75;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tools-top: clamp(14px, 1.8vw, 30px);
  --tools-right: clamp(14px, 1.8vw, 30px);
  --tools-gap: clamp(8px, 0.7vw, 12px);
  --sound-icon-width: clamp(36px, 3.2vw, 52px);
  --ticket-icon-width: clamp(42px, 3.5vw, 58px);
  --cart-icon-width: clamp(36px, 3vw, 48px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  font-family: "Gunnar Regular", Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

.svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mobile-experience-notice {
  display: none;
}

.experience-notice__height-copy {
  display: none;
}

.chrome-audio-entry {
  display: none;
}

html.requires-audio-entry .chrome-audio-entry,
html.chrome-audio-entry-leaving .chrome-audio-entry {
  position: fixed;
  z-index: 600;
  inset: 0;
  display: grid;
  padding: clamp(24px, 4vw, 64px);
  background: var(--pink);
  opacity: 1;
  place-items: center;
  transition: opacity 0.28s ease, transform 0.38s var(--ease);
}

html.chrome-audio-entry-leaving .chrome-audio-entry {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
}

.chrome-audio-entry__card {
  display: grid;
  width: min(650px, calc(100vw - 48px));
  padding: clamp(34px, 4vw, 66px);
  border: 4px solid #fff;
  border-radius: clamp(28px, 3vw, 50px);
  background: var(--pink-panel);
  box-shadow: 12px 14px 0 var(--ink);
  text-align: center;
  place-items: center;
}

.chrome-audio-entry__card img {
  display: block;
  width: min(390px, 76%);
  height: auto;
  margin-bottom: clamp(22px, 2.4vw, 38px);
}

.chrome-audio-entry__card h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 82px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.chrome-audio-entry__card p {
  max-width: 30ch;
  margin: clamp(18px, 2vw, 30px) auto;
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.2;
}

.chrome-audio-entry__actions {
  display: grid;
  width: min(390px, 100%);
  gap: 12px;
}

.chrome-audio-entry__button {
  min-width: min(390px, 100%);
  padding: 0.8em 1.2em;
  border-radius: 0.7em;
  cursor: pointer;
  background: #fff;
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s var(--ease);
}

.chrome-audio-entry__button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.chrome-audio-entry__button--silent {
  padding-block: 0.58em;
  background: transparent;
  box-shadow: inset 0 0 0 3px #fff;
  font-size: clamp(18px, 1.35vw, 24px);
}

.chrome-audio-entry__button--silent:hover {
  box-shadow: inset 0 0 0 3px var(--ink);
}

.chrome-audio-entry__button:disabled {
  cursor: wait;
  opacity: 0.7;
}

html.requires-audio-entry .preloader__letter,
html.requires-audio-entry .preloader__the-exact,
html.requires-audio-entry .preloader__sign-exact,
html.checking-safari-audio .preloader__letter,
html.checking-safari-audio .preloader__the-exact,
html.checking-safari-audio .preloader__sign-exact {
  animation-play-state: paused !important;
}

.magic-ticket {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.magic-ticket__wing {
  transform-box: fill-box;
  transform-origin: bottom center;
}

.magic-ticket__wing--left {
  animation: var(--ticket-wing-left-animation, none);
}

.magic-ticket__wing--right {
  animation: var(--ticket-wing-right-animation, none);
}

.magic-ticket__wing-sticker,
.magic-ticket__wing-fill {
  stroke: #fff;
  stroke-linejoin: round;
}

.magic-ticket__wing-sticker {
  fill: #fff;
  stroke: #fff;
  stroke-width: 10px;
}

.magic-ticket__wing-fill {
  fill: #f7c6dc;
  stroke-width: 2.5px;
}

.magic-ticket__sticker {
  fill: none;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 12px;
}

.magic-ticket__body {
  fill: url("#magic-ticket-pink");
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.magic-ticket__smile {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 3.5px;
}

.magic-ticket__eye {
  fill: var(--ink);
}

@keyframes magicTicketWingLeft {
  from {
    transform: rotate(-10deg) scaleY(0.9);
  }

  to {
    transform: rotate(7deg) scaleY(1.06);
  }
}

@keyframes magicTicketWingRight {
  from {
    transform: rotate(10deg) scaleY(0.9);
  }

  to {
    transform: rotate(-7deg) scaleY(1.06);
  }
}

button:focus-visible,
a:focus-visible {
  outline: max(2px, 0.16cqw) solid var(--ink);
  outline-offset: max(2px, 0.14cqw);
}

.colibrity-link {
  position: fixed;
  z-index: 78;
  top: var(--tools-top);
  left: 50%;
  display: block;
  width: clamp(90px, 9vw, 165px);
  border-radius: clamp(8px, 0.8vw, 14px);
  opacity: 1;
  overflow: hidden;
  transform: translateX(-50%);
  transition: opacity 0.32s ease, filter 0.25s ease, transform 0.3s var(--ease), visibility 0s;
  visibility: visible;
}

.colibrity-link:hover {
  filter: brightness(1.08);
  transform: translateX(-50%) translateY(-2px) scale(1.02);
}

.colibrity-link img {
  display: block;
  width: 100%;
  height: auto;
}

.sound-toggle {
  position: fixed;
  z-index: 80;
  top: var(--tools-top);
  right: var(--tools-right);
  width: var(--sound-icon-width);
  aspect-ratio: 148 / 118;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s ease, transform 0.25s var(--ease), filter 0.25s ease, visibility 0s;
  -webkit-tap-highlight-color: transparent;
}

.hidden-ticket {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  transition: opacity 0.28s ease, filter 0.2s ease, transform 0.38s var(--ease), visibility 0s;
  -webkit-tap-highlight-color: transparent;
}

.hidden-ticket:hover {
  filter: brightness(1.05);
}

.hidden-ticket.is-found {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.15) rotate(22deg) !important;
  visibility: hidden;
}

.hidden-ticket--sound {
  position: fixed;
  z-index: 79;
  top: clamp(18px, 2vw, 34px);
  right: clamp(8px, 1vw, 20px);
  width: clamp(46px, 3.7vw, 60px);
  aspect-ratio: 180 / 116;
  opacity: 1;
  transform: rotate(13deg);
}

.sound-toggle:not(.is-on) + .hidden-ticket--sound:not(.is-found) {
  animation: hiddenSoundTicketFloat 2.8s ease-in-out infinite alternate;
}

.hidden-ticket:not(.is-found) .magic-ticket {
  --ticket-wing-left-animation: magicTicketWingLeft 0.7s ease-in-out infinite alternate;
  --ticket-wing-right-animation: magicTicketWingRight 0.7s -0.35s ease-in-out infinite alternate;
}

.sound-toggle.is-on + .hidden-ticket--sound {
  animation: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) rotate(13deg) scale(0.75);
  visibility: hidden;
  transition-delay: 0s, 0s, 0s, 0.28s;
}

@keyframes hiddenSoundTicketFloat {
  from {
    transform: translate3d(-2px, 2px, 0) rotate(10deg);
  }

  to {
    transform: translate3d(3px, -3px, 0) rotate(16deg);
  }
}

.ticket-widget {
  position: fixed;
  z-index: 82;
  top: var(--tools-top);
  right: calc(var(--tools-right) + var(--sound-icon-width) + var(--tools-gap));
  width: var(--ticket-icon-width);
  aspect-ratio: 180 / 132;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s ease, visibility 0s;
}

body:not(.is-ready) .sound-toggle,
body:not(.is-ready) .cart-widget,
body:not(.is-ready) .ticket-widget,
body:not(.is-ready) .colibrity-link,
body:not(.is-ready) .hidden-ticket--sound {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.ticket-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 14%;
  cursor: pointer;
  background: transparent;
  transition: filter 0.2s ease, transform 0.25s var(--ease);
}

.ticket-toggle:hover,
.ticket-toggle[aria-expanded="true"] {
  filter: brightness(1.04);
  transform: rotate(-4deg) scale(1.07);
}

.ticket-toggle:hover .magic-ticket,
.ticket-toggle:focus-visible .magic-ticket,
.hidden-ticket:hover .magic-ticket,
.hidden-ticket:focus-visible .magic-ticket {
  --ticket-wing-left-animation: magicTicketWingLeft 0.46s ease-in-out infinite alternate;
  --ticket-wing-right-animation: magicTicketWingRight 0.46s -0.23s ease-in-out infinite alternate;
}

.ticket-count {
  position: absolute;
  right: 4%;
  bottom: 0;
  display: grid;
  min-width: 42%;
  padding: 0.24em 0.48em 0.17em;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 2px 3px 0 var(--ink);
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: clamp(9px, 0.66vw, 11px);
  line-height: 1;
  place-items: center;
}

.sound-toggle:hover {
  transform: rotate(-4deg) scale(1.06);
  filter: brightness(1.04);
}

.sound-toggle.is-on {
  animation: soundToggleBounce 1.45s ease-in-out infinite;
}

.sound-toggle__illustration {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: opacity 0.25s ease;
}

.sound-toggle__wing {
  fill: #f7c6dc;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 5px;
  transform-box: fill-box;
  transform-origin: bottom center;
}

.sound-toggle__body {
  fill: url("#sound-bee-pink");
}

.sound-toggle.is-on .sound-toggle__wing--left {
  animation: soundWingLeft 0.48s ease-in-out infinite alternate;
}

.sound-toggle.is-on .sound-toggle__wing--right {
  animation: soundWingRight 0.48s ease-in-out infinite alternate;
}

.sound-toggle__body-outline {
  fill: none;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 5px;
}

.sound-toggle__bee circle {
  fill: #231f20;
}

.sound-toggle__headphones {
  fill: none;
  stroke: #11100f;
  stroke-linecap: round;
  stroke-width: 5px;
}

.sound-toggle__earpiece {
  fill: #11100f;
}

.sound-toggle__smile {
  fill: none;
  stroke: #231f20;
  stroke-linecap: round;
  stroke-width: 3.5px;
}

.sound-toggle__wave {
  fill: none;
  stroke: #11100f;
  stroke-linecap: round;
  stroke-width: 4.5px;
  opacity: 0;
  transform-origin: 108px 59px;
}

.sound-toggle.is-on .sound-toggle__wave {
  animation: soundWavePulse 0.95s ease-out infinite;
}

.sound-toggle.is-on .sound-toggle__wave--two {
  animation-delay: 0.14s;
}

.sound-toggle__mute {
  fill: none;
  stroke: #11100f;
  stroke-linecap: round;
  stroke-width: 5px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.sound-toggle.is-on .sound-toggle__mute {
  opacity: 0;
}

@keyframes soundToggleBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}

@keyframes soundWavePulse {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

@keyframes soundWingLeft {
  from {
    transform: rotate(-5deg) scaleY(0.94);
  }

  to {
    transform: rotate(9deg) scaleY(1.04);
  }
}

@keyframes soundWingRight {
  from {
    transform: rotate(5deg) scaleY(0.94);
  }

  to {
    transform: rotate(-9deg) scaleY(1.04);
  }
}

.cart-widget {
  position: fixed;
  z-index: 81;
  top: var(--tools-top);
  right: calc(
    var(--tools-right) + var(--sound-icon-width) + var(--ticket-icon-width) +
      var(--tools-gap) + var(--tools-gap)
  );
  width: var(--cart-icon-width);
  aspect-ratio: 132 / 112;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s ease, visibility 0s;
}

.cart-toggle {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  transition: filter 0.25s ease, transform 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.cart-toggle:hover,
.cart-toggle[aria-expanded="true"] {
  filter: brightness(1.04);
  transform: rotate(4deg) scale(1.06);
}

.cart-toggle__illustration {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.cart-simple__wing {
  fill: #f7c6dc;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 6px;
  transform-box: fill-box;
  transform-origin: bottom center;
}

.cart-toggle:hover .cart-simple__wing--left,
.cart-toggle:focus-visible .cart-simple__wing--left {
  animation: cartWingLeft 0.9s ease-in-out infinite alternate;
}

.cart-toggle:hover .cart-simple__wing--right,
.cart-toggle:focus-visible .cart-simple__wing--right {
  animation: cartWingRight 0.9s -0.45s ease-in-out infinite alternate;
}

@keyframes cartWingLeft {
  from {
    transform: rotate(-5deg);
  }

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

@keyframes cartWingRight {
  from {
    transform: rotate(5deg);
  }

  to {
    transform: rotate(-6deg);
  }
}

.cart-simple__handle {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6px;
}

.cart-simple__basket-sticker {
  fill: none;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 10px;
}

.cart-simple__basket {
  fill: #f5388d;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.cart-simple__wheel {
  fill: var(--yellow);
  stroke: #fff;
  stroke-width: 4px;
}

.cart-count {
  position: absolute;
  top: 1%;
  right: 0;
  display: grid;
  min-width: clamp(18px, 1.2vw, 21px);
  height: clamp(18px, 1.2vw, 21px);
  padding: 0 0.35em;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: none;
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: clamp(9px, 0.62vw, 11px);
  line-height: 1;
  place-items: center;
}

.cart-added {
  position: absolute;
  z-index: 3;
  top: 34%;
  right: -4%;
  width: clamp(205px, 19vw, 310px);
  aspect-ratio: 2 / 1;
  visibility: hidden;
  pointer-events: none;
}

.cart-added__pig {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 72%;
  height: auto;
  opacity: 0;
  transform-origin: 92% 8%;
}

.hidden-ticket--cart {
  position: absolute;
  z-index: 0;
  top: 35%;
  right: 50%;
  width: 48%;
  aspect-ratio: 180 / 116;
  opacity: 0;
  pointer-events: none;
  transform-origin: 100% 0;
}

.cart-added__bubble {
  position: absolute;
  z-index: 2;
  top: 44%;
  right: -30%;
  min-width: 38%;
  padding: 0.52em 0.8em;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: clamp(15px, 1.25vw, 22px);
  line-height: 1;
  text-align: center;
  opacity: 0;
  transform-origin: left center;
}

.cart-added__bubble::before {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 20px;
  height: 20px;
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  background: #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.cart-widget.is-adding .cart-added {
  visibility: visible;
}

.cart-widget.is-adding .hidden-ticket--cart:not(.is-found) {
  pointer-events: auto;
  animation: cartTicketAdded 2s var(--ease) both;
}

.cart-widget.is-adding .cart-added__pig {
  animation: cartPigAdded 2s var(--ease) both;
}

.cart-widget.is-adding .cart-added__bubble {
  animation: cartBubbleAdded 2s var(--ease) both;
}

@keyframes cartPigAdded {
  0% {
    opacity: 0;
    transform: translate3d(38%, -20%, 0) rotate(-18deg) scale(0.08);
  }

  20%,
  74% {
    opacity: 1;
    transform: translate3d(-16%, 24%, 0) rotate(-6deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(38%, -20%, 0) rotate(-18deg) scale(0.08);
  }
}

@keyframes cartBubbleAdded {
  0%,
  12% {
    opacity: 0;
    transform: translateX(-16px) scale(0.2);
  }

  26%,
  72% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  88%,
  100% {
    opacity: 0;
    transform: translateX(-16px) scale(0.2);
  }
}

@keyframes cartTicketAdded {
  0% {
    opacity: 0;
    transform: translate3d(74%, -65%, 0) rotate(-22deg) scale(0.08);
  }

  20%,
  74% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-15deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(74%, -65%, 0) rotate(-22deg) scale(0.08);
  }
}

.ticket-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  padding: 20px;
  opacity: 0;
  place-items: center;
  transition: opacity 0.25s ease;
}

.ticket-modal[hidden] {
  display: none;
}

.ticket-modal.is-open {
  opacity: 1;
}

.ticket-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(17, 16, 15, 0.56);
  backdrop-filter: blur(6px);
}

.ticket-modal__card {
  position: relative;
  display: grid;
  width: min(470px, calc(100vw - 32px));
  padding: clamp(28px, 3vw, 46px);
  border: 3px solid var(--ink);
  border-radius: clamp(24px, 2.2vw, 38px);
  background: var(--pink-panel);
  box-shadow: 12px 14px 0 var(--ink);
  opacity: 0;
  text-align: center;
  transform: translateY(28px) rotate(-2deg) scale(0.84);
  transition: opacity 0.25s ease, transform 0.42s var(--ease);
}

.ticket-modal.is-open .ticket-modal__card {
  opacity: 1;
  transform: translateY(0) rotate(0) scale(1);
}

.ticket-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  font-size: 29px;
  line-height: 1;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}

.ticket-modal__close:hover {
  background: var(--ink);
  color: #fff;
  transform: rotate(8deg);
}

.ticket-modal__ticket {
  --ticket-wing-left-animation: magicTicketWingLeft 0.38s ease-in-out infinite alternate;
  --ticket-wing-right-animation: magicTicketWingRight 0.38s -0.19s ease-in-out infinite alternate;

  width: min(245px, 68%);
  aspect-ratio: 180 / 116;
  margin: -4px auto 8px;
  animation: ticketModalFloat 2.1s ease-in-out infinite alternate;
}

.ticket-modal__ticket .magic-ticket__wing--left {
  transform-origin: 85% 100%;
}

.ticket-modal__ticket .magic-ticket__wing--right {
  transform-origin: 15% 100%;
}

.ticket-modal__card h2 {
  margin: 0;
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.ticket-modal__card p {
  margin: 18px 0 24px;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.35;
}

.ticket-modal__continue {
  min-height: 62px;
  padding: 10px 24px 8px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  font-size: 19px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.22s var(--ease);
}

.ticket-modal__continue:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

@keyframes ticketModalFloat {
  from {
    transform: translateX(-9px) rotate(-3deg) translateY(3px);
  }

  to {
    transform: translateX(9px) rotate(3deg) translateY(-5px);
  }
}

.cart-popover {
  position: absolute;
  z-index: 5;
  top: calc(100% + clamp(10px, 0.8vw, 16px));
  right: 0;
  width: min(370px, calc(100vw - 28px));
  max-height: min(68vh, 620px);
  padding: clamp(18px, 1.35vw, 24px);
  overflow: auto;
  border: 3px solid var(--ink);
  border-radius: clamp(18px, 1.4vw, 24px);
  background: var(--pink-panel);
  box-shadow: 9px 10px 0 rgba(17, 16, 15, 0.95);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) rotate(1deg) scale(0.94);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.35s var(--ease), visibility 0s linear 0.35s;
  visibility: hidden;
}

.cart-widget.is-open .cart-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(0) scale(1);
  transition-delay: 0s;
  visibility: visible;
}

.cart-popover__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
}

.cart-popover__heading h2 {
  margin: 0;
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: clamp(24px, 1.7vw, 31px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.cart-popover__close {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  font-size: 27px;
  font-weight: 900;
  line-height: 0.8;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}

.cart-popover__close:hover {
  background: var(--ink);
  color: #fff;
  transform: rotate(8deg) scale(1.05);
}

.cart-popover__empty {
  margin: 24px 0 18px;
  font-size: 17px;
  line-height: 1.35;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.cart-item__image {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.cart-item__name,
.cart-item__meta,
.cart-item__price {
  margin: 0;
}

.cart-item__name {
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.cart-item__meta {
  margin-top: 5px;
  color: rgba(17, 16, 15, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.cart-item__price {
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: 16px;
  white-space: nowrap;
}

.cart-item__actions {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.cart-item.is-reward {
  border-color: var(--red);
  background: rgba(255, 202, 18, 0.3);
  box-shadow: 3px 3px 0 var(--red);
}

.cart-item.is-reward .cart-item__price {
  color: var(--red);
  font-size: 13px;
}

.cart-item__remove,
.cart-clear {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  font-family: "Gunnar Regular", Arial, sans-serif;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}

.cart-item__remove {
  padding: 5px 8px 4px;
  font-size: 9px;
  line-height: 1;
}

.cart-item__remove:hover,
.cart-clear:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.cart-clear {
  display: block;
  width: 100%;
  margin: 4px 0 14px;
  min-height: 44px;
  padding: 10px 14px 8px;
  font-size: 14px;
}

.cart-clear[hidden] {
  display: none;
}

.cart-popover__footer {
  padding-top: 14px;
  border-top: 3px solid var(--ink);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 14px;
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: 20px;
}

.cart-total strong {
  font-size: 24px;
}

.cart-checkout {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 52px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.22s var(--ease);
}

.cart-checkout::before {
  display: none;
}

.cart-checkout:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.cart-checkout span {
  position: relative;
  z-index: 1;
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: 16px;
}

.cart-checkout:disabled {
  cursor: default;
  opacity: 0.42;
}

.preloader {
  position: fixed;
  z-index: 50;
  inset: 0;
  overflow: hidden;
  pointer-events: auto;
  visibility: visible;
}

.preloader__curtain {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--pink);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.preloader__sign {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(930px, 78vw);
  aspect-ratio: 850 / 330;
  filter: drop-shadow(16px 20px 0 rgba(17, 16, 15, 0.09));
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.45s var(--ease), filter 0.3s ease;
}

.preloader__letter {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--w);
  height: var(--h);
  opacity: 0;
  transform: translateY(0.42cqw) rotate(-1deg);
  transform-origin: center;
  animation: letterIn 0.34s var(--ease) forwards;
  animation-delay: calc(0.16s + var(--i) * 0.105s);
  will-change: opacity, transform;
}

.preloader__letter:nth-child(-n + 3) {
  animation:
    letterIn 0.2s var(--ease) forwards,
    thePartsOut 0.01s linear 0.54s forwards;
  animation-delay:
    calc(0.12s + var(--i) * 0.1s),
    0.54s;
}

.preloader__letter img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.preloader__the-exact,
.preloader__sign-exact {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  pointer-events: none;
}

.preloader__the-exact {
  z-index: 2;
  clip-path: inset(0 53.5% 47% 14.2%);
  animation: exactSignIn 0.04s linear 0.5s forwards;
}

.preloader__sign-exact {
  z-index: 3;
  animation: exactSignIn 0.06s linear 2.28s forwards;
}

.preloader__pig {
  position: absolute;
  z-index: 3;
  top: 58vh;
  left: -42vw;
  width: min(60vw, 1100px);
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 15vh, 0) rotate(-8deg) scale(0.92);
  will-change: transform, opacity;
}

@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes exactSignIn {
  to {
    opacity: 1;
  }
}

@keyframes thePartsOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

body.is-revealing .preloader__sign {
  opacity: 0;
  filter: blur(5px) drop-shadow(16px 20px 0 rgba(17, 16, 15, 0));
  transform: translate(-50%, -50%) scale(1.08);
}

body.is-revealing .preloader__curtain {
  animation: curtainReveal 1.9s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

body.is-revealing .preloader__pig {
  animation: pigSweep 1.9s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

body.is-ready .preloader {
  visibility: hidden;
  pointer-events: none;
}

@keyframes curtainReveal {
  0%,
  2% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  26% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 82% 100%, 0 34%);
  }

  52% {
    clip-path: polygon(48% 0, 100% 0, 100% 52%, 100% 52%);
  }

  60%,
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  }
}

@keyframes pigSweep {
  0% {
    opacity: 0;
    transform: translate3d(0, 15vh, 0) rotate(-8deg) scale(0.92);
  }

  2% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(165vw, -125vh, 0) rotate(-8deg) scale(1.08);
  }
}

.market {
  container-type: inline-size;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--pink);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.market::before {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54%;
  background: transparent;
  content: "";
}

.market__movement {
  position: absolute;
  z-index: 1;
  bottom: -1.5%;
  left: -1.5%;
  width: 46%;
  aspect-ratio: 1676 / 1156;
  pointer-events: none;
  transform: scale(1.035);
  transform-origin: bottom left;
}

.movement-layer {
  --parallax-x: 0cqw;
  --parallax-y: 0cqw;
  --parallax-rotation: 0deg;
  --rotation-input: var(--mx);
  --idle-x: 0.2cqw;
  --idle-y: 0.2cqw;
  --idle-rotation: 1deg;
  --float-duration: 7s;
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 1;
  width: var(--w);
  height: var(--h);
  object-fit: contain;
  pointer-events: none;
  animation: movementFloat var(--float-duration) ease-in-out infinite alternate;
  user-select: none;
  will-change: transform;
}

@keyframes movementFloat {
  from {
    transform: translate3d(
      calc(var(--mx) * var(--parallax-x) - var(--idle-x) * var(--idle-motion)),
      calc(var(--my) * var(--parallax-y) + var(--idle-y) * var(--idle-motion)),
      0
    ) rotate(calc(var(--rotation-input) * var(--parallax-rotation) - var(--idle-rotation) * var(--idle-motion)));
  }

  to {
    transform: translate3d(
      calc(var(--mx) * var(--parallax-x) + var(--idle-x) * var(--idle-motion)),
      calc(var(--my) * var(--parallax-y) - var(--idle-y) * var(--idle-motion)),
      0
    ) rotate(calc(var(--rotation-input) * var(--parallax-rotation) + var(--idle-rotation) * var(--idle-motion)));
  }
}

.movement-layer--sun,
.movement-layer[class*="--ray-"] {
  z-index: 1;
}

.movement-layer--cloud {
  --parallax-x: -0.22cqw;
  --parallax-y: -0.14cqw;
  --idle-x: 0.16cqw;
  --idle-y: 0.12cqw;
  --idle-rotation: 0.18deg;
  --float-duration: 8.4s;
  z-index: 2;
  animation-delay: -3.1s;
}

.hidden-ticket--hand {
  position: absolute;
  z-index: 2;
  top: 64%;
  left: 49%;
  width: 17%;
  aspect-ratio: 180 / 116;
  pointer-events: auto;
  transform: rotate(-17deg);
  animation: hiddenHandTicket 5.6s ease-in-out -2.2s infinite alternate;
}

@keyframes hiddenHandTicket {
  from {
    transform: translateX(-0.28cqw) rotate(-19deg);
  }

  to {
    transform: translateX(0.18cqw) rotate(-15deg);
  }
}

.movement-layer--sun {
  --parallax-x: 0.28cqw;
  --parallax-y: -0.26cqw;
  --parallax-rotation: 0.45deg;
  --idle-x: 0.22cqw;
  --idle-y: 0.26cqw;
  --idle-rotation: 1.1deg;
  --float-duration: 7.2s;
  animation-delay: -1.7s;
}

.movement-layer--ray-1 {
  --parallax-x: 0.62cqw;
  --parallax-y: -0.48cqw;
  --parallax-rotation: 0.9deg;
  --idle-x: 0.28cqw;
  --idle-y: 0.31cqw;
  --idle-rotation: 1.8deg;
  --float-duration: 5.4s;
  animation-delay: -2.4s;
}

.movement-layer--ray-2 {
  --parallax-x: 0.4cqw;
  --parallax-y: -0.66cqw;
  --parallax-rotation: -0.8deg;
  --rotation-input: var(--my);
  --idle-x: 0.22cqw;
  --idle-y: 0.35cqw;
  --idle-rotation: 1.4deg;
  --float-duration: 6.2s;
  animation-delay: -4.1s;
}

.movement-layer--ray-3 {
  --parallax-x: -0.58cqw;
  --parallax-y: -0.36cqw;
  --parallax-rotation: -0.85deg;
  --idle-x: 0.3cqw;
  --idle-y: 0.22cqw;
  --idle-rotation: 1.7deg;
  --float-duration: 5.8s;
  animation-delay: -1.2s;
}

.movement-layer--ray-4 {
  --parallax-x: 0.72cqw;
  --parallax-y: -0.18cqw;
  --parallax-rotation: 0.85deg;
  --rotation-input: var(--my);
  --idle-x: 0.34cqw;
  --idle-y: 0.2cqw;
  --idle-rotation: 1.5deg;
  --float-duration: 6.6s;
  animation-delay: -5s;
}

.movement-layer--ray-5 {
  --parallax-x: 0.84cqw;
  --parallax-y: 0.18cqw;
  --parallax-rotation: 0.65deg;
  --idle-x: 0.36cqw;
  --idle-y: 0.22cqw;
  --idle-rotation: 1.3deg;
  --float-duration: 5.7s;
  animation-delay: -3.3s;
}

.movement-layer--ray-6 {
  --parallax-x: 0.66cqw;
  --parallax-y: 0.46cqw;
  --parallax-rotation: -0.9deg;
  --rotation-input: var(--my);
  --idle-x: 0.3cqw;
  --idle-y: 0.32cqw;
  --idle-rotation: 1.6deg;
  --float-duration: 6.1s;
  animation-delay: -0.9s;
}

.movement-layer--arm,
.movement-layer--legs,
.movement-layer--bird {
  z-index: 3;
}

.movement-layer--arm {
  --parallax-x: -0.42cqw;
  --parallax-y: 0.3cqw;
  --parallax-rotation: -1.1deg;
  --idle-x: 0.1cqw;
  --idle-y: 0.08cqw;
  --idle-rotation: 1.6deg;
  --float-duration: 6.8s;
  transform-origin: 0% 14%;
  animation-delay: -2.6s;
}

.movement-layer--legs {
  --parallax-x: 0.55cqw;
  --parallax-y: -0.38cqw;
  --parallax-rotation: 0.95deg;
  --rotation-input: var(--my);
  --idle-x: 0.12cqw;
  --idle-y: 0.1cqw;
  --idle-rotation: 1.35deg;
  --float-duration: 7.4s;
  transform-origin: 100% 100%;
  animation-delay: -4.8s;
}

.movement-layer--bird {
  --parallax-x: -0.92cqw;
  --parallax-y: 0.62cqw;
  --parallax-rotation: -1deg;
  --idle-x: 0.32cqw;
  --idle-y: 0.24cqw;
  --idle-rotation: 2.4deg;
  --float-duration: 4.9s;
  z-index: 4;
  animation-delay: -1.5s;
}

.market__sign {
  position: absolute;
  z-index: 4;
  top: 18%;
  left: 1.5%;
  width: 39%;
  aspect-ratio: 850 / 330;
  overflow: hidden;
  pointer-events: none;
  animation: marketSignFloat 8.6s ease-in-out -3.2s infinite alternate;
  will-change: transform;
}

@keyframes marketSignFloat {
  from {
    transform: translate3d(
      calc(var(--mx) * -0.38cqw - 0.32cqw),
      calc(var(--my) * -0.25cqw + 0.22cqw),
      0
    ) rotate(-24.4deg);
  }

  to {
    transform: translate3d(
      calc(var(--mx) * -0.38cqw + 0.32cqw),
      calc(var(--my) * -0.25cqw - 0.22cqw),
      0
    ) rotate(-21.6deg);
  }
}

.market__sign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-display {
  position: absolute;
  z-index: 6;
  top: 23.7%;
  left: 46.1%;
  width: 25.4%;
  aspect-ratio: 1.03 / 1;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: transparent;
  transform: translate3d(calc(var(--mx) * 0.42cqw), calc(var(--my) * 0.32cqw), 0);
  transition: transform 0.7s var(--ease), opacity 0.3s ease;
}

.product-display__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: mainProductFloat 5.8s ease-in-out -1.4s infinite alternate;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.product-display:hover .product-display__image {
  animation-duration: 3.8s;
}

@keyframes mainProductFloat {
  from {
    transform: translateY(0.28cqw) rotate(-0.75deg) scale(0.985);
  }

  to {
    transform: translateY(-0.36cqw) rotate(0.85deg) scale(1.02);
  }
}

.product-display.is-leaving {
  opacity: 0;
  transform: translate3d(var(--slide-out, -10cqw), calc(var(--my) * 0.32cqw), 0) rotate(var(--slide-rotate, -10deg)) scale(0.75);
}

.product-display.is-entering {
  animation: productEnter 0.78s var(--ease) both;
}

@keyframes productEnter {
  from {
    opacity: 0;
    transform: translate3d(var(--slide-in, 9cqw), 2cqw, 0) rotate(var(--slide-enter-rotate, 9deg)) scale(0.72);
  }
}

.product-popup {
  position: absolute;
  z-index: 7;
  top: 21.8%;
  left: 72.9%;
  display: grid;
  width: 25.9%;
  height: 47.4%;
  padding: 2.2% 1.85%;
  border-radius: 1.2cqw;
  background: var(--pink-panel);
  grid-template-rows: auto auto auto minmax(0, 1fr) auto minmax(0, 1fr) auto;
  transition: top 0.45s var(--ease), height 0.45s var(--ease), opacity 0.3s ease, transform 0.45s var(--ease);
}

.product-popup.is-compact {
  top: 25%;
  height: 41%;
}

.product-popup.is-compact .product-popup__description {
  margin-top: 1.05cqw;
}

.product-popup.is-leaving {
  opacity: 0;
  transform: translateX(3cqw) scale(0.94);
}

.product-popup.is-entering {
  animation: popupEnter 0.72s 0.08s var(--ease) both;
}

@keyframes popupEnter {
  from {
    opacity: 0;
    transform: translateX(3cqw) scale(0.94);
  }
}

.product-popup__title {
  grid-row: 1;
  margin: 0;
  font-family: "Gunnar Regular", Arial, Helvetica, sans-serif;
  font-size: 3.08cqw;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.product-popup__sizes {
  display: flex;
  grid-row: 2;
  gap: 1.75cqw;
  min-height: 2.3cqw;
  align-items: center;
  margin-top: 1.05cqw;
}

.product-popup__sizes button {
  position: relative;
  min-width: 2.15cqw;
  padding: 0.3cqw 0.42cqw 0.24cqw;
  border: 0.12cqw solid transparent;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  font-size: 1.48cqw;
  font-weight: 900;
  line-height: 1;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s var(--ease);
}

.product-popup__sizes button:hover {
  transform: translateY(-0.08cqw);
}

.product-popup__sizes button.is-selected {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: 0.13cqw 0.15cqw 0 var(--red);
  transform: translateY(-0.08cqw) rotate(-2deg);
}

.product-popup__sizes.is-empty {
  display: none;
}

.product-popup__description {
  grid-row: 3;
  margin: 1.45cqw 0 0;
  font-size: 1.22cqw;
  font-weight: 400;
  line-height: 1.28;
}

.product-popup__price {
  position: relative;
  display: grid;
  grid-row: 5;
  width: 4.2cqw;
  height: 3.7cqw;
  color: transparent;
  background: transparent;
  font-family: "Gunnar Regular", Arial, sans-serif;
  justify-self: start;
  place-items: center;
  transform: translate3d(calc(var(--mx) * 0.24cqw), calc(var(--my) * 0.18cqw), 0) rotate(calc(var(--mx) * 0.7deg));
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.product-popup__price::before {
  display: grid;
  width: 3.65cqw;
  aspect-ratio: 1;
  color: #fff;
  background: var(--red);
  content: attr(data-value);
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: 1.26cqw;
  font-weight: 900;
  line-height: 1;
  place-items: center;
  animation: priceBadgeFloat 3.2s ease-in-out infinite alternate;
  clip-path: polygon(50% 0%, 60% 13%, 74% 4%, 80% 21%, 97% 20%, 92% 38%, 100% 50%, 87% 60%, 95% 75%, 78% 80%, 78% 97%, 60% 90%, 50% 100%, 40% 87%, 25% 95%, 21% 78%, 3% 80%, 9% 61%, 0% 50%, 13% 40%, 5% 25%, 22% 20%, 22% 4%, 40% 11%);
}

@keyframes priceBadgeFloat {
  from {
    transform: translateY(0.08cqw) rotate(-7deg) scale(0.98);
  }

  to {
    transform: translateY(-0.12cqw) rotate(-3deg) scale(1.03);
  }
}

.buy-button {
  position: relative;
  display: grid;
  grid-row: 7;
  width: 12cqw;
  height: 2.6cqw;
  cursor: pointer;
  border-radius: 0.38cqw;
  background: #fff;
  justify-self: start;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s var(--ease);
}

.buy-button::before {
  display: none;
}

.buy-button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-0.18cqw);
}

.buy-button span {
  position: relative;
  z-index: 1;
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: 0.75cqw;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.slider-nav {
  position: absolute;
  z-index: 8;
  top: 76.2%;
  left: 41.9%;
  display: grid;
  width: 35.9%;
  height: 7.8%;
  grid-template-columns: 4.2cqw 1fr 4.2cqw;
  align-items: center;
  gap: 1.2cqw;
}

.slider-nav__control {
  width: 2.1cqw;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: transparent;
  justify-self: center;
  transition: transform 0.28s var(--ease);
}

.slider-nav__control:hover {
  transform: scale(1.08) rotate(3deg);
}

.slider-nav__control--prev:hover {
  transform: scale(1.08) rotate(-3deg);
}

.slider-nav__control img {
  width: 100%;
  height: 100%;
  animation: sliderBeeFloat 3.2s ease-in-out infinite alternate;
  object-fit: contain;
}

.slider-nav__control--next img {
  animation-delay: -1.6s;
}

@keyframes sliderBeeFloat {
  from {
    transform: translateY(0.12cqw) rotate(-4deg);
  }

  to {
    transform: translateY(-0.16cqw) rotate(4deg);
  }
}

.slider-nav__products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.78cqw;
}

.thumbnail {
  width: 3.55cqw;
  height: 3.55cqw;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: transparent;
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.28s var(--ease);
}

.thumbnail:hover,
.thumbnail.is-active {
  opacity: 1;
  transform: translateY(-0.32cqw) scale(1.08);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  animation: thumbnailFloat 4.4s ease-in-out infinite alternate;
  object-fit: contain;
}

.thumbnail:nth-child(2n) img {
  animation-delay: -2.2s;
}

.thumbnail:nth-child(3n) img {
  animation-delay: -3.3s;
}

@keyframes thumbnailFloat {
  from {
    transform: translateY(0.08cqw) rotate(-0.8deg);
  }

  to {
    transform: translateY(-0.1cqw) rotate(0.8deg);
  }
}

.discover-button {
  position: absolute;
  z-index: 8;
  top: 87.6%;
  left: 50.1%;
  display: grid;
  width: 17.4%;
  height: 6.3%;
  border-radius: 0.55cqw;
  background: #fff;
  color: var(--ink);
  font-family: "Gunnar Regular", Arial, sans-serif;
  font-size: 1.72cqw;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-decoration: none;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s var(--ease);
}

.discover-button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-0.2cqw);
}

.discover-button sup {
  position: relative;
  top: -0.65em;
  margin-left: 0.18em;
  font-size: 0.34em;
  line-height: 0;
}

@media (max-width: 600px) {
  .colibrity-link {
    width: 56px;
  }

  .cart-popover {
    position: fixed;
    top: clamp(102px, 25vw, 122px);
    right: 14px;
    left: 14px;
    width: auto;
  }

  .cart-added {
    right: -16%;
    width: min(235px, 62vw);
  }

  .cart-added__bubble {
    right: -20%;
  }
}

@media (max-width: 1024px), (max-height: 760px) {
  .mobile-experience-notice {
    position: fixed;
    z-index: 700;
    inset: 0;
    display: grid;
    padding: clamp(22px, 6vw, 56px);
    background: var(--pink);
    place-items: center;
  }

  .mobile-experience-notice__card {
    width: min(620px, 100%);
    padding: clamp(30px, 8vw, 72px) clamp(24px, 7vw, 64px);
    border: 4px solid #fff;
    border-radius: clamp(24px, 6vw, 54px);
    background: var(--pink-panel);
    box-shadow: 10px 12px 0 var(--ink);
    text-align: center;
  }

  .mobile-experience-notice__logo {
    display: block;
    width: min(420px, 78%);
    height: auto;
    margin: 0 auto clamp(18px, 5vw, 34px);
  }

  .mobile-experience-notice h1 {
    margin: 0;
    font-size: clamp(38px, 10vw, 78px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.95;
  }

  .mobile-experience-notice__card > p {
    max-width: 28ch;
    margin: clamp(24px, 6vw, 42px) auto 0;
    font-size: clamp(20px, 4.5vw, 30px);
    line-height: 1.22;
  }
}

@media (min-width: 1025px) and (max-height: 760px) {
  .experience-notice__mobile-copy {
    display: none;
  }

  .experience-notice__height-copy {
    display: block;
  }

  .mobile-experience-notice__card {
    width: min(720px, calc(100vw - 48px));
    padding-block: clamp(24px, 5vh, 42px);
  }

  .mobile-experience-notice__logo {
    width: min(340px, 62%);
    margin-bottom: clamp(14px, 2.5vh, 24px);
  }

  .mobile-experience-notice h1 {
    font-size: clamp(36px, 7vh, 58px);
  }

  .mobile-experience-notice__card > p {
    max-width: 36ch;
    margin-top: clamp(16px, 3vh, 28px);
    font-size: clamp(18px, 3vh, 25px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .preloader__letter,
  .preloader__the-exact,
  .preloader__sign-exact {
    animation-delay: 0s !important;
  }
}
