/* ── Steps bar ──────────────────────────────────────────────────────────── */
.steps-bar { display:flex; align-items:center; gap:8px; margin-bottom:24px; flex-wrap:wrap; }
.step { background:var(--grey-mid); color:var(--grey-dark); padding:8px 16px; border-radius:20px; font-size:13px; font-weight:600; transition:all 0.3s; }
.step.active { background:var(--orange); color:var(--blue-dark); }
.step.done { background:var(--green); color:white; }
.step-arrow { color:var(--grey-dark); font-size:18px; }

/* ── Step card ──────────────────────────────────────────────────────────── */
.step-card { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:24px; margin-bottom:20px; }
.step-header { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.step-num { background:var(--orange); color:var(--blue-dark); width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; flex-shrink:0; }
.step-header h3 { font-size:18px; font-weight:700; color:var(--blue-dark); }
.step-hint { color:var(--grey-dark); font-size:13px; margin-bottom:16px; }
.step-footer { display:flex; justify-content:space-between; margin-top:24px; gap:12px; }

/* ── Scan zone ──────────────────────────────────────────────────────────── */
.scan-zone { border:3px dashed var(--orange); border-radius:12px; padding:40px 20px; text-align:center; cursor:pointer; transition:all 0.2s; background:rgba(245,166,35,0.05); }
.scan-zone:hover { background:rgba(245,166,35,0.1); }
.scan-icon { font-size:48px; display:block; margin-bottom:12px; }
.scan-title { font-size:16px; font-weight:700; color:var(--blue-dark); margin-bottom:6px; }
.scan-hint { font-size:13px; color:var(--grey-dark); }

/* ── Colors ─────────────────────────────────────────────────────────────── */
.colors-section { margin-top:16px; }
.colors-row { display:flex; gap:12px; margin-top:8px; flex-wrap:wrap; }
.color-swatch { width:60px; height:60px; border-radius:8px; cursor:pointer; display:flex; align-items:flex-end; justify-content:center; padding-bottom:4px; border:2px solid transparent; transition:all 0.2s; }
.color-swatch:hover { transform:scale(1.1); border-color:white; }
.color-label { font-size:9px; color:white; text-shadow:0 1px 2px rgba(0,0,0,0.8); }

/* ── Generation ─────────────────────────────────────────────────────────── */
.generation-progress { text-align:center; padding:40px 20px; }
.generation-icon { font-size:64px; display:block; margin-bottom:16px; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.generation-text { font-size:16px; font-weight:600; color:var(--blue-dark); margin-bottom:8px; }
.generation-hint { font-size:13px; color:var(--grey-dark); margin-top:12px; }

/* ── Video ───────────────────────────────────────────────────────────────── */
.video-wrapper { background:#000; border-radius:12px; overflow:hidden; margin-bottom:24px; }
.demo-video { width:100%; max-height:400px; display:block; }

/* ── Share ───────────────────────────────────────────────────────────────── */
.share-section { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; }
.qr-wrapper { text-align:center; }
.qr-image { width:180px; height:180px; border-radius:12px; border:3px solid var(--grey-mid); }
.qr-label { font-size:13px; font-weight:600; color:var(--blue-dark); margin-top:8px; }
.qr-validity { font-size:12px; color:var(--grey-dark); margin-top:4px; }
.share-title { font-size:16px; font-weight:700; color:var(--blue-dark); margin-bottom:12px; }
.btn-share { display:block; width:100%; padding:12px; border-radius:8px; border:none; font-size:14px; font-weight:700; cursor:pointer; margin-bottom:10px; transition:all 0.2s; }
.btn-whatsapp { background:#25D366; color:white; }
.btn-email { background:var(--blue-dark); color:white; }
.btn-copy { background:var(--grey-mid); color:var(--blue-dark); }
.btn-share:hover { opacity:0.9; transform:translateY(-1px); }
.share-hint { font-size:12px; color:var(--grey-dark); text-align:center; }
.btn-back { color:var(--grey-dark); text-decoration:none; font-size:13px; display:block; margin-bottom:4px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width:640px) {
  .share-section { grid-template-columns:1fr; }
  .steps-bar { gap:4px; }
  .step { padding:6px 10px; font-size:11px; }
}
