.singing-bowl-page .store-layout--catalog-only {
  padding-bottom: 2rem;
}

/* ~2× default app column (430px shell / 42rem card) so the video can display much larger */
.singing-bowl-page .app-shell {
  width: min(100vw, 90rem);
  max-width: min(100vw, 90rem);
  overflow-x: visible;
  box-sizing: border-box;
}

.sb-root {
  max-width: 42rem;
  margin: 0 auto;
  overflow-x: visible;
}

.sb-title {
  margin: 0;
}

.sb-steps {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  line-height: 1.55;
  color: var(--text, #1a1a1a);
}

.sb-steps li {
  margin-bottom: 0.85rem;
}

.sb-steps li:last-child {
  margin-bottom: 0;
}

.sb-verse {
  margin: 0.65rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid rgba(100, 160, 200, 0.85);
  background: rgba(207, 234, 255, 0.45);
  border-radius: 0 10px 10px 0;
}

.sb-verse p {
  margin: 0;
  font-weight: 600;
  font-size: 1.02rem;
  font-style: italic;
  color: #173d5e;
}

.sb-verse-actions {
  margin: 0.75rem 0 0;
}

.sb-read-aloud {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sb-cooldown-banner {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(200, 140, 80, 0.55);
  background: rgba(255, 236, 200, 0.55);
  color: #5a3a10;
  white-space: pre-wrap;
}

.sb-cooldown-banner.hidden {
  display: none;
}

.sb-video-row {
  position: relative;
  left: 50%;
  width: min(84rem, calc(100vw - 28px));
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  box-sizing: border-box;
}

/* Border / shadow hug the video pixels only (no oversized letterbox frame) */
.sb-video-wrap {
  display: inline-block;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(120, 170, 215, 0.45);
  background: #000;
  box-shadow: 0 8px 24px rgba(40, 70, 100, 0.2);
  line-height: 0;
}

.sb-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  background: #000;
}

.sb-video.sb-video--blocked {
  opacity: 0.45;
  pointer-events: none;
}

.sb-status {
  margin: 0.75rem 0 0;
  min-height: 1.35em;
}

.sb-complete-msg {
  margin: 0.5rem 0 0;
  font-weight: 600;
  color: #1f4267;
}

.sb-complete-msg.hidden {
  display: none;
}

/* Phones only: video area is 2× the height of a normal full-width 16:9 fit; sides may crop */
@media (max-width: 640px) {
  .sb-video-row {
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .sb-video-wrap {
    display: block;
    width: 100%;
    max-width: none;
    height: 0;
    /* intrinsic 16:9 letterbox = 56.25% of width; ×2 ⇒ 112.5% = 100% × 9/8 */
    padding-bottom: calc(100% * 9 / 8);
    position: relative;
  }

  .sb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
  }
}
