:root {
  color-scheme: light;
  --accent: #55d9d9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a[style*="background: var(--accent"] {
  transition: filter 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

a[style*="background: var(--accent"]:hover {
  color: #fff;
  filter: brightness(0.94);
  box-shadow: 0 5px 14px rgba(46, 176, 176, 0.2);
  transform: translateY(-1px);
}

a[style*="background: var(--accent"]:active {
  filter: brightness(0.88);
  transform: translateY(0);
}

sc-if {
  display: contents;
}

image-slot {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-bundle-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cover-art {
  position: relative;
  display: flex;
  width: min(116px, 70%);
  height: 100%;
  min-height: 86px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-align: center;
}

.cover-art--book {
  width: min(116px, 64%);
  border: 0;
  border-radius: 1px;
  background: #171717;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
}

.cover-art--book::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 1px;
  background: #55d9d9;
  content: '';
}

.cover-title {
  display: block;
  font-size: clamp(16px, 2vw, 23px);
  line-height: 0.95;
}

.cover-title strong {
  display: block;
  color: #55d9d9;
  font-weight: 400;
}

.cover-art--bonus {
  flex-direction: column;
  gap: 8px;
  padding: 10px 7px;
  font-size: 11px;
  font-weight: 700;
}

.bonus-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  background: #0e1724;
  color: #55d9d9;
  font-size: 14px;
}

.bonus-copy {
  color: #55d9d9;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.05;
}

.mini-bundle {
  position: relative;
  width: 100%;
  height: 100%;
}

.mini-bundle .mini-book,
.mini-bundle .mini-panel {
  position: absolute;
  bottom: 8%;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.mini-bundle .mini-book {
  z-index: 2;
  left: 34%;
  width: 32%;
  height: 82%;
  padding-top: 20%;
  background: #171717;
  color: #fff;
  font: 11px/0.95 Georgia, 'Times New Roman', serif;
  text-align: center;
}

.mini-bundle .mini-book strong {
  display: block;
  color: #55d9d9;
  font-weight: 400;
}

.mini-bundle .mini-panel {
  width: 28%;
  height: 64%;
  border: 2px solid #111;
  background: #fff;
}

.mini-bundle .mini-panel:first-child {
  left: 19%;
  transform: rotate(-6deg);
}

.mini-bundle .mini-panel:last-child {
  right: 18%;
  transform: rotate(6deg);
}

[data-video] {
  user-select: none;
}

[data-video][data-playing='1'] {
  box-shadow: inset 0 0 0 2px rgba(85, 217, 217, 0.72);
}

[data-video] [data-play],
[data-video] [data-mute] {
  transition: opacity 180ms ease, background-color 180ms ease, transform 180ms ease;
}

[data-video] [data-play]:hover,
[data-video] [data-mute]:hover {
  background: rgba(255, 255, 255, 0.6) !important;
}

[data-video] [data-play]:active,
[data-video] [data-mute]:active {
  transform: scale(0.96);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  [data-topbar-inner] > div {
    justify-content: center;
    white-space: normal !important;
  }

  [data-sticky-inner] {
    padding: 6px 9px !important;
  }

  [data-sticky-inner] > a {
    width: min(100%, 322.5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
