/* ======================================================
   STEP 6 – PRIVATE CHOICE + UPSELL (CLEAN FINAL)
   ====================================================== */

.step[data-step="6"]{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

/* ---------- Container ---------- */

.step[data-step="6"] .notice{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow: 0 12px 30px rgba(2,8,23,.10);
  padding:16px;
  margin:12px 0;
}

/* ---------- Private Choice Buttons ---------- */

.step[data-step="6"] .time-pill{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;

  height:54px;
  padding:12px 16px;

  border-radius:16px;
  border:1px solid #E8EFFB;
  background:#fff;

  font-weight:800;
  font-size:1.02rem;

  cursor:pointer;
  transition: box-shadow .12s ease, transform .12s ease, border-color .12s ease;

  color:#000 !important;
  -webkit-text-fill-color:#000 !important;
}

.step[data-step="6"] .time-pill:hover{
  box-shadow:0 10px 26px rgba(2,8,23,.12);
  transform:translateY(-1px);
}

/* Optional: Primary Look */
.step[data-step="6"] .time-pill.primary{
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(59,130,246,.18);
}

/* Button-Row sauber responsive */
.step[data-step="6"] .notice > div:last-child{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width:700px){
  .step[data-step="6"] .notice > div:last-child{
    flex-direction:column;
  }
}


/* ======================================================
   UPSELL GRID
   ====================================================== */

.step[data-step="6"] .upsell-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
  margin-top:16px;
}

/* Card */

.step[data-step="6"] .upsell-card{
  display:flex;
  flex-direction:column;

  background:#fff;
  border:1px solid #E8EFFB;
  border-radius:16px;
  overflow:hidden;

  transition:box-shadow .15s ease, transform .15s ease;
}

.step[data-step="6"] .upsell-card:hover{
  box-shadow:0 10px 26px rgba(2,8,23,.12);
  transform:translateY(-2px);
}

.step[data-step="6"] .upsell-card.is-disabled{
  opacity:.6;
  pointer-events:none;
}

/* Image */

.step[data-step="6"] .upsell-media{
  aspect-ratio:16/10;
  background:#f7f7f7;
  overflow:hidden;
}

.step[data-step="6"] .upsell-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Body */

.step[data-step="6"] .upsell-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.step[data-step="6"] .upsell-title{
  font-weight:800;
  line-height:1.25;
  font-size:1.05rem;
}

.step[data-step="6"] .upsell-meta.small{
  font-size:.88rem;
  color:#6B7280;
}

/* ======================================================
   QUANTITY CONTROL
   ====================================================== */

.step[data-step="6"] .qty-ctrl{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:6px;
}

.step[data-step="6"] .qty-btn{
  width:36px;
  height:36px;

  border:1px solid #E8EFFB;
  border-radius:10px;
  background:#fafafa;

  font-size:20px;
  line-height:1;
  cursor:pointer;

  transition:background .12s ease, box-shadow .12s ease;
}

.step[data-step="6"] .qty-btn:hover{
  background:#f0f4f8;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.step[data-step="6"] .qty-btn[disabled]{
  opacity:.5;
  cursor:not-allowed;
}

.step[data-step="6"] .qty-num{
  min-width:30px;
  text-align:center;
  font-weight:700;
  font-size:1rem;
}

/* ======================================================
   INFO MODAL
   ====================================================== */

.step[data-step="6"] .info-btn{
  background:#202936;
  color:#fff;
  border:none;
  border-radius:50%;
  width:22px;
  height:22px;
  font-size:14px;
  font-weight:700;
  line-height:22px;
  text-align:center;
  cursor:pointer;
  margin-left:8px;
  transition:background .12s ease;
}

.step[data-step="6"] .info-btn:hover{
  background:#39455a;
}

/* Overlay */

.step[data-step="6"] .info-overlay{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

/* Modal */

.step[data-step="6"] .info-modal{
  background:#fff;
  color:#000;
  border-radius:16px;
  padding:22px;
  width:min(420px,90%);
  max-height:80vh;
  overflow:auto;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.step[data-step="6"] .info-content{
  white-space:pre-wrap;
}

.step[data-step="6"] .info-close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:22px;
  background:none;
  border:none;
  cursor:pointer;
  line-height:1;
}