/* ==========================================================
   Custom Song page — dedicated stylesheet
   ========================================================== */

.song-page {
  --cs-orange: #c75a2a;
  --cs-orange-dark: #a8481f;
  --cs-cream: #f6ecdf;
  --cs-cream-soft: #fbf4e9;
  --cs-ink: #1f1a14;
  --cs-ink-soft: #4a3f33;
}

.song-page .btn-accent {
  background: var(--cs-orange);
  border-color: var(--cs-orange);
  color: #fff;
}
.song-page .btn-accent:hover { background: var(--cs-orange-dark); border-color: var(--cs-orange-dark); }

.btn-xl {
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px -10px rgba(199, 90, 42, 0.45);
}
.cs-gift { font-size: 18px; line-height: 1; }

/* ===== Announcement bar ===== */
.announce-bar {
  background: var(--cs-orange);
  color: #fff;
  font-size: 14px;
  padding: 10px 16px;
  position: relative;
}
.announce-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce-text strong { font-weight: 700; }
.announce-sep { opacity: 0.5; }
.announce-cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announce-close {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.announce-close:hover { opacity: 1; }
@media (max-width: 600px) {
  .announce-bar { font-size: 12.5px; padding: 9px 30px 9px 12px; }
  .announce-inner { flex-wrap: nowrap; gap: 7px; white-space: nowrap; }
  .announce-text { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
  /* Drop the generic "Ograničena ponuda:" label on phones so the actual offer + CTA fit one clean line */
  .announce-text strong { display: none; }
  .announce-cta { flex-shrink: 0; }
  .announce-sep { display: none; }
}

/* ===== Nav override for song page (cream background) ===== */
.song-page { background: var(--cs-cream-soft); }
.nav-song { background: var(--cs-cream-soft); }

/* ===== HERO ===== */
.cs-hero {
  background: var(--cs-cream-soft);
  padding: 32px 0 80px;
  text-align: center;
}
.cs-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cs-hero-media {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.35);
}
.cs-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-hero-pill {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  padding: 10px 20px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--cs-ink);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.15s ease, background 0.15s ease;
}
.cs-hero-pill:hover { transform: translateY(-1px); background: #fff; }
.cs-pill-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cs-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 2px;
}
.cs-eyebrow {
  display: inline-block;
  letter-spacing: 2.2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cs-ink-soft);
  margin-top: 8px;
}
.cs-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--cs-ink);
  margin: 6px auto 0;
  max-width: 820px;
}
.cs-sub {
  font-size: 18px;
  color: var(--cs-ink-soft);
  max-width: 580px;
  margin: 0 auto;
}
.cs-hero-cta { margin-top: 4px; }
.cs-trustline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--cs-ink-soft);
  margin: 4px 0 0;
}

/* ===== HOW IT WORKS (dark, blurred backdrop) ===== */
.cs-how {
  position: relative;
  background: #1a140e;
  color: #fff;
  padding: 96px 0 100px;
  overflow: hidden;
}
.cs-how-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(199, 90, 42, 0.25), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(199, 90, 42, 0.18), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(120, 80, 50, 0.4), transparent 60%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.025) 0 2px,
      transparent 2px 14px
    );
  filter: blur(2px);
  z-index: 0;
}
.cs-how-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.cs-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
}
.cs-h2-light { color: #fff; }
.cs-h2-mixed { color: var(--cs-ink); }
.cs-h2-mixed em { font-style: italic; font-weight: 700; }
.cs-h2-inline { font-family: 'Fraunces', Georgia, serif; font-weight: 700; }

.cs-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
  width: 100%;
  text-align: left;
}
.cs-step {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 19px;
  font-weight: 600;
}
.cs-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cs-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -6px rgba(199, 90, 42, 0.6);
}
.cs-step-text { display: flex; flex-direction: column; gap: 2px; }
.cs-step-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.cs-step-sub strong { color: var(--cs-orange); font-weight: 700; }

/* ===== REVIEWS CAROUSEL ===== */
.cs-reviews {
  padding: 96px 0 60px;
  background: var(--cs-cream-soft);
}
.cs-reviews .cs-h2 { text-align: center; margin-bottom: 36px; }
.cs-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0 30px;
}
.cs-carousel::-webkit-scrollbar { display: none; }
.cs-carousel-track {
  display: flex;
  gap: 16px;
  padding: 0 max(16px, calc((100% - 1180px) / 2));
  min-width: min-content;
}
.cs-rcard {
  flex: 0 0 320px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.25);
  background: #fff;
}
.cs-rcard-video { background: #000; cursor: pointer; }
.cs-rcard-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-rcard-overlay {
  position: absolute;
  inset: auto 12px 12px 12px;
  background: rgba(0,0,0,0.7);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  backdrop-filter: blur(6px);
}
.cs-rcard-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--cs-orange);
  color: #fff;
  font-size: 13px;
  padding-left: 3px;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cs-rcard-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.cs-rcard-meta strong { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cs-rcard-meta span { font-size: 12px; opacity: 0.7; }

.cs-rcard-quote {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0,0,0,0.05);
}
.cs-rcard-stars { color: var(--cs-orange); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.cs-rcard-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cs-ink);
  margin: 0 0 18px;
  flex: 1;
}
.cs-rcard-text strong { font-weight: 700; }
.cs-rcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cs-rcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cs-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.cs-rcard-author > div:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.cs-rcard-author strong { font-size: 14px; color: var(--cs-ink); }
.cs-rcard-badge {
  font-size: 12px;
  color: var(--cs-orange);
  font-weight: 600;
}
.cs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 16px 10px;
}
.cs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(31, 26, 20, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cs-dot.active { background: var(--cs-orange); transform: scale(1.3); }

/* ===== GIFT GRID ===== */
.cs-gift-grid-section {
  background: #0e0a06;
  color: #fff;
  padding: 96px 0 100px;
  text-align: center;
}
.cs-gift-grid-section .cs-h2 { margin-bottom: 40px; }
.cs-gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 600px) { .cs-gift-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .cs-gift-grid { grid-template-columns: repeat(3, 1fr); } }
.cs-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.2px;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.6);
  transition: transform 0.2s ease;
  background-color: #1a1614;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cs-tile:hover { transform: translateY(-3px); }
.cs-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.70) 100%);
  z-index: 1;
}
.cs-tile-label {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.cs-tile-1 { background-image: url('/images/tile-partner.jpg'); }
.cs-tile-2 { background-image: url('/images/tile-kinder.jpg'); }
.cs-tile-3 { background-image: url('/images/tile-gedenken.jpg'); }
.cs-tile-4 { background-image: url('/images/tile-eltern.jpg'); }
.cs-tile-5 { background-image: url('/images/tile-dichselbst.jpg'); }
.cs-tile-6 { background-image: url('/images/tile-staerke.jpg'); }
.cs-tile-7 { background-image: url('/images/tile-heilung.jpg'); }
.cs-tile-8 { background-image: url('/images/tile-freunde.jpg'); }
.cs-tile-9 { background-image: url('/images/tile-momente.jpg'); }

/* ===== WHAT YOU GET ===== */
.cs-what-you-get {
  padding: 100px 0;
  background: var(--cs-cream-soft);
  text-align: center;
}
.cs-what-you-get .cs-h2 { margin-bottom: 14px; }
.cs-section-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  color: var(--cs-ink-soft);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* Vinyl player */
.cs-player {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.22);
}
.cs-player-vinyl-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 0 20px;
}
.cs-vinyl {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      transparent 0 38px,
      #111 38px 40px,
      transparent 40px 60px,
      #1a1a1a 60px 62px,
      transparent 62px 90px,
      #1a1a1a 90px 92px,
      transparent 92px 130px,
      #1a1a1a 130px 132px,
      #0a0a0a 132px 100%
    );
  position: relative;
  box-shadow:
    0 18px 40px -16px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.cs-vinyl-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--cs-cream);
  border: 2px solid rgba(199, 90, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
}
.cs-vinyl-label .brand { color: var(--cs-ink); font-weight: 800; line-height: 1; }
.cs-vinyl-label .brand em { color: var(--cs-orange); font-style: normal; }
.cs-vinyl.spinning { animation: cs-spin 4s linear infinite; }
@keyframes cs-spin { to { transform: rotate(360deg); } }

.cs-player-track {
  position: relative;
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  margin: 8px 4px 8px;
}
.cs-player-track-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--cs-orange);
  border-radius: 999px;
  transition: width 0.4s linear;
}
.cs-player-track-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cs-orange);
  box-shadow: 0 2px 6px rgba(199, 90, 42, 0.5);
  transition: left 0.4s linear;
}
.cs-player-times {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--cs-ink-soft);
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
}
.cs-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.cs-player-btn {
  background: transparent;
  border: 0;
  color: rgba(31, 26, 20, 0.55);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, transform 0.15s ease;
}
.cs-player-btn:hover { color: var(--cs-ink); }
.cs-player-btn-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cs-orange);
  color: #fff;
  font-size: 18px;
  padding-left: 3px;
  box-shadow: 0 12px 24px -8px rgba(199, 90, 42, 0.6);
}
.cs-player-btn-play:hover { background: var(--cs-orange-dark); color: #fff; transform: scale(1.05); }

/* Benefits row under player */
.cs-benefits-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
}
@media (min-width: 720px) { .cs-benefits-row { grid-template-columns: repeat(3, 1fr); } }
.cs-benefit { padding: 20px 14px; }
.cs-benefit-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(199, 90, 42, 0.12);
  color: var(--cs-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}
.cs-benefit h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--cs-ink);
}
.cs-benefit p {
  font-size: 14px;
  color: var(--cs-ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .cs-hero { padding: 20px 0 56px; }
  .cs-hero-media { aspect-ratio: 4 / 5; }
  .cs-how, .cs-gift-grid-section, .cs-what-you-get, .cs-reviews { padding: 72px 0; }
  .cs-rcard { flex-basis: 78vw; height: 400px; }
  .cs-tile { font-size: 18px; }
  .cs-vinyl { width: 200px; height: 200px; }
  .cs-vinyl-label { width: 64px; height: 64px; font-size: 10px; }
}

/* ==========================================================
   FORM PAGE — start-your-song.html
   ========================================================== */
.song-form-page { background: var(--cs-cream-soft); min-height: 100vh; }

.sf-section { padding: 40px 0 80px; }
.sf-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Progress bar */
.sf-progress { margin: 8px 0 56px; }
.sf-progress-track {
  height: 4px;
  background: rgba(31, 26, 20, 0.10);
  border-radius: 999px;
  overflow: hidden;
}
.sf-progress-fill {
  height: 100%;
  background: var(--cs-orange);
  border-radius: 999px;
  transition: width 0.35s ease;
}
.sf-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--cs-ink-soft);
  margin-top: 10px;
}
.sf-progress-meta strong { color: var(--cs-ink); font-weight: 700; }

/* Form panels */
.sf-form { width: 100%; }
.sf-panel { display: none; }
.sf-panel.active { display: block; animation: sfFade 0.25s ease; }
@keyframes sfFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sf-head {
  text-align: center;
  margin: 40px 0 36px;
}
.sf-head h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--cs-ink);
  margin: 0 0 12px;
}
.sf-head p {
  font-size: 17px;
  color: var(--cs-ink-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Fields */
.sf-field { margin-bottom: 28px; }
.sf-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cs-ink);
  margin-bottom: 10px;
}
.sf-label .req { color: var(--cs-orange); margin-left: 2px; }
.sf-sublabel {
  display: block;
  font-size: 13px;
  color: var(--cs-ink-soft);
  margin: -6px 0 10px;
}
.sf-optional { color: var(--cs-ink-soft); font-weight: 400; font-size: 13px; }
.sf-hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--cs-ink-soft);
}

.sf-input, .sf-textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(31, 26, 20, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--cs-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sf-input:focus, .sf-textarea:focus {
  outline: 0;
  border-color: var(--cs-orange);
  box-shadow: 0 0 0 3px rgba(199, 90, 42, 0.15);
}
.sf-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.55;
}
.sf-input::placeholder, .sf-textarea::placeholder { color: rgba(31, 26, 20, 0.4); }

/* Pill chips */
.sf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sf-pill {
  background: #fff;
  border: 1.5px solid rgba(31, 26, 20, 0.14);
  color: var(--cs-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
}
.sf-pill:hover { border-color: var(--cs-orange); color: var(--cs-orange); }
.sf-pill.selected {
  background: var(--cs-orange);
  border-color: var(--cs-orange);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(199, 90, 42, 0.5);
}

/* Package cards */
.sf-pkgs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .sf-pkgs { grid-template-columns: repeat(3, 1fr); } }
.sf-pkg {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(31, 26, 20, 0.12);
  border-radius: 16px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font: inherit;
  text-align: center;
}
.sf-pkg:hover { border-color: var(--cs-orange); }
.sf-pkg.selected {
  border-color: var(--cs-orange);
  background: rgba(199, 90, 42, 0.06);
  box-shadow: 0 10px 24px -14px rgba(199, 90, 42, 0.4);
}
.sf-pkg-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cs-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.sf-pkg-name { font-weight: 700; color: var(--cs-ink); font-size: 15px; }
.sf-pkg-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--cs-ink);
  line-height: 1;
  margin: 4px 0 2px;
}
.sf-pkg-time { font-size: 13px; color: var(--cs-ink-soft); }

/* Promo */
.sf-promo {
  margin: 10px 0 24px;
  font-size: 14px;
}
.sf-promo summary {
  cursor: pointer;
  color: var(--cs-orange);
  font-weight: 600;
  user-select: none;
  padding: 6px 0;
}
.sf-promo summary::-webkit-details-marker { display: none; }
.sf-promo-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  max-width: 320px;
}
.sf-promo-status { font-size: 13px; color: var(--cs-ink-soft); }
.sf-promo-status.err { color: #b03030; }

/* Navigation */
.sf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.sf-nav-center { justify-content: center; }
.sf-btn {
  border: 0;
  border-radius: 12px;
  padding: 14px 28px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
  line-height: 1;
}
.sf-btn-back {
  background: #fff;
  color: var(--cs-ink);
  border: 1.5px solid rgba(31, 26, 20, 0.12);
}
.sf-btn-back:hover:not(:disabled) {
  border-color: var(--cs-ink-soft);
}
.sf-btn-back:disabled { opacity: 0.4; cursor: not-allowed; }
.sf-btn-next, .sf-btn-submit {
  background: var(--cs-orange);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(199, 90, 42, 0.5);
}
.sf-btn-next:hover, .sf-btn-submit:hover { background: var(--cs-orange-dark); }
.sf-btn-submit:disabled { opacity: 0.6; cursor: wait; }

/* Legal */
.sf-legal {
  text-align: center;
  font-size: 13px;
  color: var(--cs-ink-soft);
  margin: 24px 0 0;
}
.sf-legal a { color: var(--cs-ink); text-decoration: underline; }

/* Success */
.sf-success { text-align: center; padding: 40px 0; }
.sf-success-emoji { font-size: 56px; margin-bottom: 18px; }
.sf-success h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
  color: var(--cs-ink);
}
.sf-success p {
  font-size: 17px;
  color: var(--cs-ink-soft);
  max-width: 480px;
  margin: 0 auto 28px;
}
.sf-success-summary {
  max-width: 420px;
  margin: 0 auto 28px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: left;
}

@media (max-width: 540px) {
  .sf-section { padding: 24px 0 56px; }
  .sf-head { margin: 24px 0 28px; }
  .sf-nav { flex-direction: row; }
  .sf-btn { padding: 12px 18px; font-size: 14px; }
  .sf-pill { padding: 10px 16px; font-size: 14px; }
}

/* ==========================================================
   STEP 6 — CHECKOUT SUMMARY
   ========================================================== */
.sf-checkout-panel .sf-head h1 {
  font-size: clamp(28px, 4vw, 42px);
}
.sf-checkout-panel .sf-head p strong { color: var(--cs-orange); font-weight: 700; }

/* Urgency banner */
.ck-urgency {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff1ec 0%, #fff7f1 100%);
  border: 1.5px solid rgba(199, 90, 42, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 0 auto 32px;
  max-width: 520px;
}
.ck-urgency-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cs-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ck-urgency-text { display: flex; flex-direction: column; gap: 2px; }
.ck-urgency-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--cs-orange);
  text-transform: uppercase;
}
.ck-urgency-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--cs-ink);
}

/* Two-column grid */
.ck-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 880px) {
  .ck-grid { grid-template-columns: 1.4fr 1fr; gap: 28px; }
  .sf-container:has(.ck-grid) { max-width: 1080px; }
  .ck-right { position: sticky; top: 24px; }
}
.ck-left { display: flex; flex-direction: column; gap: 20px; }

/* Cards */
.ck-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 6px 18px -10px rgba(0,0,0,0.12);
}
.ck-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cs-ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ck-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(199, 90, 42, 0.12);
  color: var(--cs-orange);
  font-size: 14px;
  flex-shrink: 0;
}

.ck-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: 15px;
  color: var(--cs-ink-soft);
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.ck-row:last-of-type { border-bottom: 0; }
.ck-row strong { color: var(--cs-orange); font-weight: 700; }

.ck-upsell {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff8e6;
  border: 1px solid #f0d68a;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 14px;
}
.ck-upsell-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.ck-upsell p {
  margin: 0;
  font-size: 14px;
  color: #6f5a14;
  line-height: 1.45;
}
.ck-upsell strong { color: #4a3d0a; }

.ck-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 20px 0;
}
.ck-pkg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ck-pkg-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cs-ink);
}
.ck-pkg-time {
  font-size: 13px;
  color: var(--cs-ink-soft);
  margin-top: 2px;
}
.ck-pkg-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--cs-orange);
}

.ck-edit-btn {
  width: 100%;
  margin-top: 18px;
  background: transparent;
  border: 1.5px dashed rgba(199, 90, 42, 0.4);
  color: var(--cs-orange);
  padding: 12px;
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.ck-edit-btn:hover { background: rgba(199, 90, 42, 0.06); border-style: solid; }

/* Discount / soft-urgency card */
.ck-discount-card {
  background: linear-gradient(135deg, #fff7f1 0%, #fff1ec 100%);
  border: 1px solid rgba(199, 90, 42, 0.2);
  border-radius: 16px;
  padding: 22px;
}
.ck-discount-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cs-orange);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}
.ck-discount-card p {
  margin: 0;
  font-size: 14px;
  color: #6b4a26;
  line-height: 1.55;
}
.ck-discount-card strong { color: var(--cs-orange); font-weight: 700; }

/* Bullet lists */
.ck-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ck-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--cs-ink);
  line-height: 1.5;
}
.ck-bullets li strong { font-weight: 700; }
.ck-bullets li span { color: var(--cs-ink-soft); }
.ck-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5b9e60;
}
.ck-bullets-orange li::before { background: var(--cs-orange); }
.ck-bullets-check li { padding-left: 26px; font-weight: 500; color: var(--cs-ink); }
.ck-bullets-check li::before {
  content: '✓';
  width: auto; height: auto; background: transparent;
  color: #5b9e60;
  font-weight: 700;
  font-size: 14px;
  top: 0;
}

/* RIGHT: sticky checkout column */
.ck-checkout-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 14px 36px -16px rgba(0,0,0,0.18);
}
.ck-checkout-card .sf-field { margin-bottom: 16px; }
.ck-checkout-card .sf-input { font-size: 16px; padding: 12px 14px; }
.ck-cta {
  width: 100%;
  background: var(--cs-orange);
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 18px 20px;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 14px 28px -10px rgba(199, 90, 42, 0.55);
  transition: all 0.15s ease;
  letter-spacing: 0.2px;
}
.ck-cta:hover:not(:disabled) {
  background: var(--cs-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -12px rgba(199, 90, 42, 0.6);
}
.ck-cta:disabled { opacity: 0.7; cursor: wait; }
.ck-cta-icon { font-size: 18px; }

.ck-trust-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--cs-ink);
}
.ck-trust-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #e6f3e8;
  color: #2d8a3d;
  font-size: 12px;
  font-weight: 700;
}

.ck-checkout-card .sf-promo { margin: 18px 0 8px; }
.ck-microcopy {
  font-size: 12px;
  color: var(--cs-ink-soft);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}

/* Wider checkout container */
.song-form-page .sf-container:has(.sf-checkout-panel.active) {
  max-width: 1080px;
}

/* Inline package picker on checkout */
.ck-pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
.ck-pkg {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(31, 26, 20, 0.14);
  border-radius: 10px;
  padding: 12px 8px 10px;
  cursor: pointer;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  transition: all 0.15s ease;
}
.ck-pkg:hover { border-color: var(--cs-orange); }
.ck-pkg.selected {
  border-color: var(--cs-orange);
  background: rgba(199, 90, 42, 0.06);
  box-shadow: 0 6px 14px -8px rgba(199, 90, 42, 0.4);
}
.ck-pkg-name-sm { font-size: 13px; font-weight: 700; color: var(--cs-ink); }
.ck-pkg-time-sm { font-size: 11px; color: var(--cs-ink-soft); }
.ck-pkg-price-sm {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cs-orange);
  margin-top: 2px;
  line-height: 1;
}
.ck-pkg-badge-sm {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  background: var(--cs-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .ck-pkgs { grid-template-columns: 1fr; gap: 10px; }
  .ck-pkg {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name price"
      "time price";
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
  }
  .ck-pkg-name-sm  { grid-area: name;  font-size: 15px; }
  .ck-pkg-time-sm  { grid-area: time;  font-size: 12px; }
  .ck-pkg-price-sm { grid-area: price; align-self: center; margin-top: 0; font-size: 20px; }
  .ck-pkg-badge-sm { top: -10px; left: 14px; transform: none; }
}

/* ===== Sample audio cards (shared by custom-song + checkout preview) ===== */
.cs-sample-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26,22,20,0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cs-sample-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26,22,20,0.14);
}
.cs-sample-cover {
  position: relative;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cs-sample-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.cs-sample-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.96);
  color: #1a1614;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, background 0.15s ease;
  padding: 0;
  position: relative;
  z-index: 1;
}
.cs-sample-play:hover { transform: scale(1.06); }
.cs-sample-play svg { margin-left: 4px; }
.cs-sample-card.is-playing .cs-sample-play {
  background: #c47a2b;
  color: #fff;
}
.cs-sample-meta { padding: 20px 22px 24px; }
.cs-sample-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c47a2b;
  font-weight: 700;
  margin-bottom: 8px;
}
.cs-sample-title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: #1a1614;
  margin-bottom: 6px;
  line-height: 1.25;
}
.cs-sample-desc {
  font-size: 0.88rem;
  color: #6b5d52;
  line-height: 1.5;
}

/* ===== Checkout preview section ===== */
.ck-samples {
  margin: 36px auto 0;
  padding: 0 16px;
  max-width: 1040px;
  text-align: center;
}
.ck-samples-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c47a2b;
  font-weight: 700;
  margin-bottom: 10px;
}
.ck-samples-h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1614;
  margin: 0 0 8px;
  line-height: 1.2;
}
.ck-samples-sub {
  color: #6b5d52;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 520px;
}
.ck-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .ck-samples-grid { grid-template-columns: 1fr; gap: 14px; max-width: 460px; margin: 0 auto; }
  .cs-sample-cover { aspect-ratio: 16 / 9; }
  .cs-sample-play { width: 64px; height: 64px; }
  .ck-samples-h2 { font-size: 1.35rem; }
}
