@keyframes bottomSheetSlideUp {
    0% {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes bottomSheetSlideDown {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(100%)
    }
}

.bottom-sheet-modal .slide-up {
    animation: bottomSheetSlideUp .3s ease-out
}

.bottom-sheet-modal .slide-down {
    animation: bottomSheetSlideDown .3s ease-out
}

@media screen and (max-width:800px) {
    .left, .right {
        display: none !important;
    }
}
:root {
  --bxp-ink: #111111;
  --bxp-muted: #6f6f75;
  --bxp-card: #ffffff;
  --bxp-line: #ececef;
  --bxp-navy: #17354d;
  --bxp-navy-dark: #10283c;
  --bxp-plum: #2c1724;
  --bxp-orange: #ff7a18;
  --bxp-soft: #f6f6f7;
  --bxp-shadow: 0 20px 60px rgba(16, 16, 20, 0.24);
}

/* Shared buttons */

.bxp-action-button {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.bxp-action-button:hover {
  transform: translateY(-1px);
}

.bxp-action-button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--bxp-orange), #ff5f00);
  box-shadow: 0 10px 24px rgba(255, 122, 24, 0.35);
}

.bxp-action-button--primary:hover {
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.45);
}

.bxp-action-button--light {
  color: var(--bxp-ink);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--bxp-line);
}

.bxp-action-button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* Age gate */

.bxp-age-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 24, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(23, 53, 77, 0.94), rgba(44, 23, 36, 0.96));
  backdrop-filter: blur(10px);
}

.bxp-age-screen.is-active {
  display: flex;
}

.bxp-age-card {
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 28px;
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--bxp-plum);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--bxp-shadow);
}

.bxp-age-badge {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bxp-orange), #ff4d00);
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.38);
}

.bxp-age-title {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.bxp-age-text {
  margin: 0 auto;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.bxp-age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.bxp-age-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.45;
}

/* Cookie banner */

.bxp-cookie-panel {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: none;
}

.bxp-cookie-panel.is-active {
  display: block;
}

.bxp-cookie-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--bxp-navy), var(--bxp-plum));
  box-shadow: var(--bxp-shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bxp-cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.bxp-cookie-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
}

.bxp-cookie-title {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 900;
}

.bxp-cookie-copy {
  margin: 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.bxp-cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bxp-cookie-link {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Cookie settings modal */

.bxp-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bxp-consent-modal.is-active {
  display: flex;
}

.bxp-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(7px);
}

.bxp-consent-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 24px;
  border-radius: 26px;
  background: var(--bxp-card);
  box-shadow: var(--bxp-shadow);
}

.bxp-consent-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bxp-line);
}

.bxp-consent-title {
  margin: 0 0 5px;
  color: var(--bxp-ink);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.bxp-consent-subtitle {
  margin: 0;
  color: var(--bxp-muted);
  font-size: 14px;
}

.bxp-consent-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--bxp-plum);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.bxp-consent-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.bxp-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--bxp-soft);
  cursor: pointer;
}

.bxp-toggle-row span {
  display: grid;
  gap: 4px;
}

.bxp-toggle-row strong {
  color: var(--bxp-ink);
  font-size: 15px;
}

.bxp-toggle-row small {
  color: var(--bxp-muted);
  font-size: 13px;
  line-height: 1.4;
}

.bxp-toggle-row input {
  display: none;
}

.bxp-toggle-row i {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #d7d7dc;
  transition: background 0.2s ease;
}

.bxp-toggle-row i::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease;
}

.bxp-toggle-row input:checked + i {
  background: var(--bxp-navy);
}

.bxp-toggle-row input:checked + i::before {
  transform: translateX(22px);
}

.bxp-toggle-row input:disabled + i {
  background: var(--bxp-orange);
  opacity: 0.9;
}

.bxp-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--bxp-line);
}

/* Responsive */

@media (max-width: 768px) {
  .bxp-cookie-shell {
    align-items: stretch;
    flex-direction: column;
  }

  .bxp-cookie-actions,
  .bxp-age-actions,
  .bxp-consent-actions {
    flex-direction: column;
  }

  .bxp-action-button,
  .bxp-cookie-link {
    width: 100%;
  }

  .bxp-age-card {
    padding: 28px 22px;
  }
}