.randomBoxCartError {
  margin: 12px 0 0;
  border: 1px solid #d91c63;
  border-radius: 12px;
  background: #fff1f6;
  color: #7b173e;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.randomBoxCartError a {
  color: #3b1f74;
  font-weight: 900;
  text-decoration: underline;
}

.orderButton.randomBoxBusy,
.finalButton.randomBoxBusy {
  cursor: wait;
  opacity: 0.7;
}

.heroVideoPlay {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgb(255 61 130 / 94%);
  box-shadow: 0 12px 32px rgb(35 23 42 / 38%);
  color: #fff;
  cursor: pointer;
  padding: 0;
  transform: translate(-50%, -50%);
  -webkit-tap-highlight-color: transparent;
}

.heroVideo {
  pointer-events: none;
}

.heroVideoPlay::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid currentColor;
  content: "";
}

.heroVideoPlay[hidden] {
  display: none;
}

.heroVideoPlay:active {
  transform: translate(-50%, -50%) scale(0.94);
}

.randomBoxCookieBanner {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(900px, calc(100% - 36px));
  margin: auto;
  border: 2px solid var(--ink, #23172a);
  border-radius: 18px;
  background: var(--paper, #fff);
  box-shadow: 7px 7px 0 var(--ink, #23172a);
  color: var(--ink, #23172a);
  padding: 18px 20px;
}

.randomBoxCookieBanner strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.randomBoxCookieBanner p {
  max-width: 590px;
  margin: 7px 0 0;
  color: var(--muted, #6f6373);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.randomBoxCookieActions {
  display: flex;
  gap: 9px;
}

.randomBoxCookieActions button {
  min-height: 43px;
  border: 2px solid var(--ink, #23172a);
  border-radius: 10px;
  background: var(--pink, #ff3d82);
  box-shadow: 3px 3px 0 var(--ink, #23172a);
  color: #fff;
  cursor: pointer;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.randomBoxCookieActions button + button {
  background: #fff;
  color: var(--ink, #23172a);
}

@media (max-width: 720px) {
  .randomBoxCookieBanner {
    right: 9px;
    bottom: 82px;
    left: 9px;
    grid-template-columns: 1fr;
    gap: 14px;
    width: auto;
    padding: 16px;
    box-shadow: 4px 4px 0 var(--ink, #23172a);
  }

  .randomBoxCookieBanner strong {
    font-size: 13px;
  }

  .randomBoxCookieBanner p {
    font-size: 11px;
  }

  .randomBoxCookieActions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .randomBoxCookieActions button {
    min-height: 45px;
    padding: 0 8px;
    font-size: 9px;
  }
}
