/* ============ BACK-TO-SCHOOL LP — additions on top of offer.css ============ */

/* Hero visual = rotating flyer carousel (4:5 flyers) */
.bts-lp-visual{ position:relative; }
.bts-lp-slides{
  position:relative; aspect-ratio:4/5; width:100%;
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--line-2); background:#000;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}
.bts-lp-slides img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity .6s ease;
}
.bts-lp-slides img.is-on{ opacity:1; }

.bts-popup-dots{
  display:flex; justify-content:center; gap:8px;
}
.bts-lp-dots{ margin-top:14px; position:static; }
.bts-popup-dots button{
  width:8px; height:8px; border-radius:50%; border:0; padding:0;
  background:rgba(255,255,255,.35); cursor:pointer; transition:background .2s, transform .2s;
}
.bts-popup-dots button.is-on{ background:var(--red); transform:scale(1.3); }

/* Scarcity pill + countdown in the hero pill row */
.bts-lp-pill{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,39,64,.12) !important;
  border-color:rgba(255,39,64,.45) !important;
  color:var(--red) !important;
  text-transform:uppercase; letter-spacing:.12em; font-weight:800;
}
.bts-lp-count{
  font-family:var(--ff-body); font-size:13px; font-weight:600; color:var(--text-2);
  display:inline-flex; align-items:center;
}
.bts-lp-count strong{ color:var(--gold); font-weight:800; margin:0 4px; }

@media (max-width: 860px){
  .bts-lp-slides{ max-width:420px; margin:0 auto; }
  .bts-lp-dots{ margin-top:12px; }
}
@media (prefers-reduced-motion: reduce){
  .bts-lp-slides img{ transition:none; }
}

/* ============ PAGE 1 — THE LOOKS (kids' cuts grid) ============ */
.cuts-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
}
.cut-card{
  position:relative; padding:0; border:1px solid var(--line-2);
  border-radius:var(--radius-lg); overflow:hidden; background:var(--surface);
  cursor:pointer; text-align:left;
  transition:border-color .25s, box-shadow .25s;
  aspect-ratio:4/5; display:block; width:100%;
}
.cut-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
}
.cut-card:hover, .cut-card:focus-visible{
  border-color:var(--red); box-shadow:0 12px 40px rgba(255,39,64,.22); outline:none;
}
.cut-name{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:26px 16px 14px;
  background:linear-gradient(to top, rgba(6,7,14,.92), rgba(6,7,14,0));
  font-family:var(--ff-display); font-size:clamp(16px, 1.8vw, 22px);
  letter-spacing:.03em; text-transform:uppercase; color:var(--text);
}

/* ============ PAGE 1 — HOW IT WORKS ============ */
.how-steps{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
}
.how-step{
  position:relative; padding:26px 22px 24px;
  background:var(--surface); border:1px solid var(--line-2);
  border-radius:var(--radius-lg);
}
.how-num{
  display:inline-grid; place-items:center;
  width:44px; height:44px; border-radius:50%;
  background:var(--red); color:#fff;
  font-family:var(--ff-display); font-size:22px;
  margin-bottom:14px;
}
.how-step h3{
  margin:0 0 8px; font-family:var(--ff-display);
  font-size:clamp(18px, 2vw, 24px); letter-spacing:.03em;
  text-transform:uppercase; color:var(--text);
}
.how-step p{
  margin:0; font-family:var(--ff-body); font-size:14.5px;
  line-height:1.55; color:var(--text-2);
}
.how-step p strong{ color:var(--gold); }
.how-scarcity{ margin-top:30px; justify-content:center; }
.how-cta{ margin-top:20px; justify-content:center; }

/* ============ PAGE 2 — BOOKING (mini hero + recap) ============ */
.bts-book-hero{ padding-top:46px; padding-bottom:8px; }
.bts-back{
  display:inline-block; margin-bottom:22px;
  font-family:var(--ff-body); font-size:13px; font-weight:600;
  color:var(--muted); text-decoration:none; transition:color .2s;
}
.bts-back:hover{ color:var(--red); }
.bts-book-h1{
  font-family:var(--ff-display); font-size:clamp(34px, 5vw, 58px);
  line-height:1.02; text-transform:uppercase; letter-spacing:.01em;
  color:var(--text); margin:18px 0 12px;
}
.bts-book-h1 em{ font-family:var(--ff-serif); font-style:italic; text-transform:none; color:var(--red); }
.bts-book-recap{
  display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 10px;
}
.bts-recap-pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 14px; border-radius:999px;
  background:var(--surface); border:1px solid var(--line-2);
  font-family:var(--ff-body); font-size:12.5px; font-weight:700; color:var(--text-2);
}
.bts-recap-pill strong{ color:var(--gold); font-weight:800; }
.bts-recap-hot{
  background:rgba(255,39,64,.12); border-color:rgba(255,39,64,.45); color:var(--red);
  text-transform:uppercase; letter-spacing:.08em; font-size:11.5px;
}
.bts-book-count{ margin:6px 0 0; }

@media (max-width: 860px){
  .cuts-grid{ grid-template-columns:repeat(2, 1fr); gap:12px; }
  .how-steps{ grid-template-columns:1fr; }
}
