/* ============================================================
   Shopify Guide — Individual Video Step Pages
   ============================================================ */

.video-page-hero {
  background: #f0f6ff;
  padding: 100px 0 36px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.video-page-hero .step-eyebrow {
  display: inline-block;
  background: #e8f0fe;
  color: #16417d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.video-page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #16417d;
  margin: 0 0 12px;
  line-height: 1.25;
}

.video-page-hero p {
  font-size: 1rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Video section ── */
.video-section {
  padding: 40px 0 56px;
  background: #fff;
}

.video-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10, 37, 64, 0.12);
  background: #000;
  line-height: 0;
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* ── Step navigation ── */
.video-step-nav {
  max-width: 960px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.video-step-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #16417d;
  text-decoration: none;
  padding: 10px 18px;
  border: 1.5px solid #d1dff5;
  border-radius: 8px;
  background: #f8fafc;
  transition: background 0.18s, border-color 0.18s, gap 0.18s;
}

.video-step-nav a:hover {
  background: #e8f0fe;
  border-color: #16417d;
}

.video-step-nav a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.video-step-nav .nav-back {
  color: #475569;
}

.video-step-nav .nav-back:hover {
  color: #16417d;
}

.video-step-nav .nav-guide {
  font-size: 0.85rem;
  color: #64748b;
  border-color: transparent;
  background: transparent;
  padding: 10px 4px;
}

.video-step-nav .nav-guide:hover {
  background: transparent;
  border-color: transparent;
  color: #16417d;
}

@media (max-width: 600px) {
  .video-step-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .video-step-nav a {
    justify-content: center;
  }
}
