/* ── Vitamin Quiz — shared styles (quiz page + homepage teaser) ────────────── */

/* ── Quiz page layout ──────────────────────────────────────────────────────── */
.vq-page { min-height: 80vh; display: flex; align-items: flex-start; justify-content: center; padding: 2rem 1rem 4rem; background: #f8fafc; }
.vq-wrapper { width: 100%; max-width: 760px; }

/* Progress */
.vq-progress-wrap { margin-bottom: 1.75rem; display: flex; align-items: center; gap: 12px; }
.vq-progress-bar { flex: 1; height: 6px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }
.vq-progress-fill { height: 100%; background: #E61B77; border-radius: 99px; transition: width 0.35s ease; width: 0%; }
.vq-progress-label { font-size: 12px; color: #94a3b8; white-space: nowrap; font-weight: 600; }

/* Screen */
.vq-screen { background: #fff; border-radius: 16px; padding: 2rem 2rem 1.75rem; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

/* Typography */
.vq-brand-badge { display: inline-block; background: #fff0f6; color: #E61B77; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 99px; margin-bottom: 1rem; }
.vq-safety-badge { display: inline-block; background: #fff7ed; color: #c2410c; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 99px; margin-bottom: 1rem; }
.vq-goal-badge { display: inline-block; background: #eff6ff; color: #1d4ed8; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 99px; margin-bottom: 1rem; }
.vq-title { font-size: 1.35rem; font-weight: 700; color: #1e293b; margin-bottom: 0.4rem; line-height: 1.3; }
.vq-subtitle { font-size: 0.88rem; color: #64748b; margin-bottom: 1.25rem; line-height: 1.5; }

/* Consent */
.vq-prefill-badge { display: inline-flex; align-items: center; gap: 6px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 5px 10px; font-size: 0.75rem; color: #15803d; font-weight: 500; margin-bottom: 1rem; }
.vq-prefill-badge::before { content: '✓'; font-weight: 700; }
.vq-consent-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 1rem 1.1rem; margin-bottom: 1.5rem; font-size: 0.83rem; color: #475569; }
.vq-consent-box a { color: #E61B77; }
.vq-checkbox-label { display: flex; align-items: center; gap: 10px; margin-top: 0.75rem; font-weight: 600; cursor: pointer; color: #1e293b; font-size: 0.85rem; }
.vq-checkbox-label input { width: 16px; height: 16px; accent-color: #E61B77; flex-shrink: 0; cursor: pointer; }

/* Cards */
.vq-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; margin-bottom: 1.5rem; }
.vq-cards--single { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
.vq-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 0.9rem 0.65rem; border: 2px solid #e2e8f0; border-radius: 12px; cursor: pointer; transition: all 0.16s ease; text-align: center; background: #fff; user-select: none; }
.vq-card:hover { border-color: #E61B77; background: #fff5f9; }
.vq-card.selected { border-color: #E61B77; background: #fff0f6; box-shadow: 0 0 0 3px rgba(230,27,119,0.1); }
.vq-card-icon { font-size: 1.5rem; line-height: 1; }
.vq-card-label { font-size: 0.81rem; font-weight: 600; color: #334155; line-height: 1.3; }
.vq-card.selected .vq-card-label { color: #E61B77; }

/* Goals counter */
.vq-goals-counter { font-size: 0.8rem; font-weight: 600; color: #E61B77; margin-bottom: 0.75rem; }

/* Checklist */
.vq-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.vq-check-item { display: flex; align-items: center; gap: 10px; padding: 0.7rem 0.9rem; border: 1.5px solid #e2e8f0; border-radius: 10px; cursor: pointer; font-size: 0.85rem; font-weight: 500; color: #334155; transition: border-color 0.15s; }
.vq-check-item:hover { border-color: #E61B77; }
.vq-check-item input { width: 16px; height: 16px; accent-color: #E61B77; flex-shrink: 0; cursor: pointer; }
.vq-check-none { border-style: dashed; }

/* Inputs */
.vq-input-group { display: flex; flex-direction: column; gap: 5px; }
.vq-input-group label { font-size: 0.85rem; font-weight: 600; color: #334155; }
.vq-input { width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 0.9rem; color: #1e293b; outline: none; transition: border-color 0.15s; }
.vq-input:focus { border-color: #E61B77; }
.vq-field-error { font-size: 0.8rem; color: #dc2626; margin-top: 0.4rem; }

/* BMI */
.vq-unit-toggle { display: flex; gap: 8px; margin-bottom: 1.25rem; }
.vq-unit-btn { padding: 6px 14px; border: 1.5px solid #e2e8f0; border-radius: 99px; background: #fff; font-size: 0.8rem; font-weight: 600; cursor: pointer; color: #64748b; transition: all 0.15s; }
.vq-unit-btn.active { border-color: #E61B77; color: #E61B77; background: #fff0f6; }
.vq-input-row { display: flex; gap: 12px; margin-bottom: 1rem; }
.vq-input-row .vq-input-group { flex: 1; }
.vq-bmi-result { margin-top: 0.75rem; padding: 0.6rem 0.9rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; font-size: 0.85rem; color: #15803d; }

/* Navigation */
.vq-nav { display: flex; gap: 10px; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #f1f5f9; margin-top: 0.5rem; }
.vq-nav--right { justify-content: flex-end; }

/* Safety stop */
.vq-screen--stop { padding: 0; overflow: hidden; }
.vq-stop-hero { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); padding: 2.5rem 2rem 1.75rem; text-align: center; border-radius: 16px 16px 0 0; }
.vq-stop-icon-ring { width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 3px solid #fed7aa; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin: 0 auto 1.1rem; box-shadow: 0 4px 16px rgba(251,146,60,0.2); }
.vq-stop-title { font-size: 1.35rem; font-weight: 800; color: #9a3412; margin: 0; line-height: 1.3; }
.vq-stop-body { padding: 1.5rem 1.75rem 2rem; }
.vq-stop-msg-box { background: #fff7ed; border-left: 4px solid #fb923c; border-radius: 0 10px 10px 0; padding: 1rem 1.1rem; margin-bottom: 1.25rem; font-size: 0.88rem; color: #7c2d12; line-height: 1.65; }
.vq-stop-avail { font-size: 0.82rem; color: #64748b; text-align: center; margin-bottom: 1.25rem; }
.vq-stop-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.25rem; }
.vq-stop-btn { display: flex; align-items: center; gap: 14px; padding: 1rem 1.25rem; border-radius: 12px; text-decoration: none; transition: all 0.18s ease; }
.vq-stop-btn-icon { font-size: 1.6rem; flex-shrink: 0; }
.vq-stop-btn-text { display: flex; flex-direction: column; }
.vq-stop-btn-text strong { font-size: 0.93rem; font-weight: 700; }
.vq-stop-btn-text small { font-size: 0.75rem; opacity: 0.82; margin-top: 1px; }
.vq-stop-btn--primary { background: #E61B77; color: #fff; }
.vq-stop-btn--primary:hover { background: #c41565; color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(230,27,119,0.3); }
.vq-stop-btn--whatsapp { background: #25d366; color: #fff; }
.vq-stop-btn--whatsapp:hover { background: #1fba59; color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,211,102,0.3); }

/* Question header */
.vq-q-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.vq-gdots { display: flex; gap: 6px; align-items: center; }
.vq-gdot { width: 8px; height: 8px; border-radius: 50%; background: #e2e8f0; transition: all 0.2s; }
.vq-gdot.active { background: #E61B77; transform: scale(1.3); }
.vq-gdot.done { background: rgba(230,27,119,0.35); }
.vq-q-counter { font-size: 0.75rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.vq-lifestyle-badge { display: inline-block; background: #f0f9ff; color: #0369a1; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 99px; margin-bottom: 1rem; }

/* Option cards with icons */
.vq-cards--opts { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.vq-card--opt { flex-direction: column; justify-content: center; align-items: center; gap: 8px; padding: 1rem 0.6rem; min-height: 96px; text-align: center; }
.vq-opt-icon { font-size: 1.75rem; line-height: 1; display: block; transition: transform 0.15s ease; }
.vq-card--opt .vq-card-label { font-size: 0.78rem; font-weight: 600; color: #475569; line-height: 1.25; }
.vq-card--opt.selected .vq-card-label { color: #E61B77; }
.vq-card--opt:hover .vq-opt-icon { transform: scale(1.15); }

/* Checklist icon */
.vq-check-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Saved result banner */
.vq-saved-banner { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fffbeb; border: 1.5px solid #fde68a; border-radius: 12px; padding: 0.85rem 1rem; margin-bottom: 1.25rem; }
.vq-saved-info { display: flex; align-items: center; gap: 10px; }
.vq-saved-icon { font-size: 1.25rem; flex-shrink: 0; }
.vq-saved-info div { display: flex; flex-direction: column; line-height: 1.3; }
.vq-saved-info strong { font-size: 0.85rem; color: #92400e; }
.vq-saved-info span { font-size: 0.75rem; color: #a16207; }
.vq-retake-new-btn { white-space: nowrap; font-size: 0.78rem; font-weight: 700; color: #E61B77; text-decoration: none; padding: 5px 12px; border: 1.5px solid rgba(230,27,119,0.35); border-radius: 99px; transition: all 0.15s; flex-shrink: 0; }
.vq-retake-new-btn:hover { background: #E61B77; color: #fff; text-decoration: none; }

/* Health Snapshot card */
.vq-snapshot-card { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 14px; padding: 1.25rem; margin-bottom: 1.5rem; }
.vq-snapshot-header { margin-bottom: 1rem; }
.vq-snapshot-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #64748b; }

/* BMI row */
.vq-bmi-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.vq-bmi-left { display: flex; align-items: baseline; gap: 6px; }
.vq-bmi-number { font-size: 2.4rem; font-weight: 800; color: #1e293b; line-height: 1; }
.vq-bmi-label { font-size: 0.78rem; font-weight: 600; color: #94a3b8; }
.vq-bmi-cat { display: inline-block; padding: 5px 14px; border-radius: 99px; font-size: 0.8rem; font-weight: 700; }

/* Gauge */
.vq-gauge-wrap { margin-bottom: 0.6rem; }
.vq-gauge-track { position: relative; height: 10px; border-radius: 99px; display: flex; overflow: visible; margin-bottom: 5px; }
.vq-gauge-seg { height: 100%; }
.vq-gauge-seg-1 { background: #93c5fd; border-radius: 99px 0 0 99px; width: 13%; }
.vq-gauge-seg-2 { background: #4ade80; width: 24%; }
.vq-gauge-seg-3 { background: #fbbf24; width: 19%; }
.vq-gauge-seg-4 { background: #f87171; border-radius: 0 99px 99px 0; flex: 1; }
.vq-gauge-needle { position: absolute; top: -5px; width: 4px; height: 20px; background: #1e293b; border-radius: 2px; transform: translateX(-50%); box-shadow: 0 0 0 2px #fff, 0 2px 6px rgba(0,0,0,0.2); }
.vq-gauge-labels { display: flex; font-size: 0.62rem; font-weight: 700; color: #94a3b8; margin-top: 3px; }
.vq-gauge-labels span { overflow: hidden; }

/* WHO note */
.vq-bmi-who { font-size: 0.68rem; color: #94a3b8; margin: 0.4rem 0 0.9rem; }

/* Snapshot notes */
.vq-snapshot-notes { display: flex; flex-direction: column; gap: 7px; margin-bottom: 0.9rem; }
.vq-snapshot-note { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: #475569; line-height: 1.55; padding: 0.65rem 0.85rem; background: #f8fafc; border-radius: 9px; border-left: 3px solid #e2e8f0; }
.vq-snapshot-note::before { content: '💡'; flex-shrink: 0; margin-top: 1px; }

/* Profile chips */
.vq-profile-chips { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 0.85rem; border-top: 1px solid #f1f5f9; }
.vq-profile-chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 99px; background: #f1f5f9; font-size: 0.72rem; font-weight: 600; color: #475569; }

/* Results page */
.vq-screen--results { padding: 0; overflow: hidden; }
.vq-res-hero { background: linear-gradient(135deg, #c0116a 0%, #E61B77 45%, #ff6eb4 100%); padding: 2.25rem 1.75rem 1.75rem; color: #fff; border-radius: 16px 16px 0 0; text-align: center; }
.vq-res-hero-emoji { font-size: 2.75rem; margin-bottom: 0.5rem; }
.vq-res-greeting { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.82); margin-bottom: 0.3rem; letter-spacing: 0.01em; }
.vq-res-hero h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; line-height: 1.25; }
.vq-res-subline { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin: 0; font-style: italic; }
.vq-res-body { padding: 1.5rem 1.75rem 1.75rem; }

/* Snapshot chips */
.vq-res-snapshot { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 1.5rem; }
.vq-snap-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 99px; background: #f1f5f9; font-size: 0.76rem; font-weight: 600; color: #475569; }

/* Goal chips */
.vq-res-goals { margin-bottom: 1.5rem; }
.vq-res-section-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; margin-bottom: 0.6rem; }
.vq-res-goal-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.vq-res-goal-chip { display: inline-flex; align-items: center; gap: 5px; padding: 5px 13px; border-radius: 99px; font-size: 0.8rem; font-weight: 700; background: #fff0f6; color: #E61B77; border: 1.5px solid rgba(230,27,119,0.25); }

/* Insights */
.vq-res-insights { margin-bottom: 1.75rem; }
.vq-insight-item { display: flex; align-items: flex-start; gap: 10px; padding: 0.65rem 0.9rem; background: #fefce8; border: 1px solid #fef08a; border-radius: 10px; margin-bottom: 7px; font-size: 0.82rem; color: #713f12; line-height: 1.45; }
.vq-insight-item::before { content: '💡'; flex-shrink: 0; }

/* Supplement cards */
.vq-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 12px; margin-bottom: 1.5rem; }
.vq-result-card { border: 1.5px solid #e2e8f0; border-radius: 14px; padding: 1.1rem 1rem; background: #fff; display: flex; flex-direction: column; gap: 7px; transition: box-shadow 0.18s, border-color 0.18s; }
.vq-result-card:hover { box-shadow: 0 4px 18px rgba(230,27,119,0.1); border-color: rgba(230,27,119,0.35); }
.vq-result-card--top { border-color: #E61B77; background: linear-gradient(180deg, #fff5f9 0%, #fff 60%); box-shadow: 0 4px 20px rgba(230,27,119,0.12); }
.vq-result-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.vq-result-icon { font-size: 2rem; line-height: 1; }
.vq-rank-chip { display: inline-block; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 99px; background: #E61B77; color: #fff; }
.vq-result-badge { display: inline-block; font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 2px 8px; border-radius: 99px; background: #fff0f6; color: #E61B77; }
.vq-result-name { font-size: 0.95rem; font-weight: 700; color: #1e293b; }
.vq-result-reason { font-size: 0.78rem; color: #64748b; line-height: 1.5; flex: 1; }
.vq-result-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; font-weight: 700; color: #fff; background: #E61B77; border: none; cursor: pointer; margin-top: 4px; padding: 6px 12px; border-radius: 8px; transition: background 0.15s; width: fit-content; text-decoration: none; }
.vq-result-link:hover { background: #c41565; color: #fff; }

/* Consult + footer */
.vq-consult-cta { text-align: center; background: linear-gradient(135deg, #f0fdf4, #ecfdf5); border: 1px solid #bbf7d0; border-radius: 14px; padding: 1.5rem 1.25rem; margin-bottom: 1rem; }
.vq-consult-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.vq-consult-cta p { font-size: 0.9rem; color: #166534; margin-bottom: 0.3rem; font-weight: 700; }
.vq-consult-sub { font-size: 0.78rem !important; color: #4b7c5e !important; font-weight: 400 !important; }
.vq-disclaimer { font-size: 0.72rem; color: #94a3b8; line-height: 1.6; text-align: center; margin-bottom: 0.5rem; border-top: 1px solid #f1f5f9; padding-top: 0.75rem; margin-top: 0.5rem; }
.vq-restart-link { font-size: 0.8rem; color: #94a3b8; text-decoration: underline; cursor: pointer; display: block; text-align: center; }
.vq-restart-link:not(.vq-retake-new-btn):hover { color: #E61B77; }

/* ── Product drawer ───────────────────────────────────────────────────────── */
.vq-drawer-lock { overflow: hidden; }
.vq-drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1050;
    opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.vq-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.vq-drawer {
    position: fixed; top: 0; right: 0; width: 540px; max-width: 100vw; height: 100vh;
    background: #f8fafc; z-index: 1051; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.28s ease;
    box-shadow: -6px 0 32px rgba(0,0,0,0.14);
}
.vq-drawer.open { transform: translateX(0); }
.vq-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; border-bottom: 1px solid #e2e8f0; flex-shrink: 0;
    background: #fff;
}
.vq-drawer-subtitle { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: #94a3b8; margin-bottom: 2px; }
.vq-drawer-title { font-size: 1rem; font-weight: 700; color: #1e293b; display: block; }
.vq-drawer-close {
    background: none; border: none; font-size: 1rem; color: #64748b;
    cursor: pointer; padding: 6px 9px; border-radius: 8px; line-height: 1;
    transition: background 0.15s, color 0.15s; flex-shrink: 0;
}
.vq-drawer-close:hover { background: #f1f5f9; color: #1e293b; }
.vq-drawer-body { flex: 1; overflow-y: auto; padding: 1rem; }
.vq-drawer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vq-drawer-grid .product-card { height: 100%; }
.vq-drawer-loading {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 240px; gap: 0.75rem; color: #64748b; font-size: 0.88rem;
}
.vq-drawer-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 260px; color: #64748b; font-size: 0.88rem; text-align: center; padding: 2rem; gap: 0.5rem;
}
.vq-drawer-empty span { font-size: 2rem; }
.vq-drawer-empty p { margin: 0; line-height: 1.55; }
@media (max-width: 575.98px) {
    .vq-drawer { width: 100vw; }
    .vq-drawer-grid { grid-template-columns: 1fr; }
}

/* ── Homepage teaser ───────────────────────────────────────────────────────── */
.vq-teaser-section { padding: 40px 0; background: #f8fafc; }
.vq-teaser-card {
    display: flex; align-items: center; gap: 2rem;
    background: linear-gradient(135deg, #1a0a3c 0%, #c0116a 55%, #E61B77 100%);
    border-radius: 20px; padding: 2.5rem 2.5rem 2.5rem 3rem;
    overflow: hidden; position: relative; min-height: 260px;
}
.vq-teaser-content { flex: 1; min-width: 0; position: relative; z-index: 1; }
.vq-teaser-badge {
    display: inline-block; background: rgba(255,255,255,0.18); color: #fff;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 4px 12px; border-radius: 99px; margin-bottom: 0.85rem;
    border: 1px solid rgba(255,255,255,0.25);
}
.vq-teaser-title { font-size: 1.55rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; line-height: 1.25; }
.vq-teaser-sub { font-size: 0.88rem; color: rgba(255,255,255,0.82); margin-bottom: 1.1rem; line-height: 1.55; max-width: 440px; }
.vq-teaser-goals { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 1.4rem; }
.vq-teaser-goals span {
    background: rgba(255,255,255,0.14); color: #fff; font-size: 0.78rem; font-weight: 600;
    padding: 4px 11px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.2);
}
.vq-teaser-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; color: #E61B77; font-size: 0.92rem; font-weight: 700;
    padding: 11px 24px; border-radius: 99px; text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.vq-teaser-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); color: #c41565; text-decoration: none; }
.vq-teaser-note { font-size: 0.73rem; color: rgba(255,255,255,0.58); margin-top: 0.75rem; margin-bottom: 0; }

/* Floating supplement pills */
.vq-teaser-visual { position: relative; width: 240px; flex-shrink: 0; height: 200px; }
.vq-teaser-quiz-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4rem; opacity: 0.15; user-select: none; }
.vq-teaser-pill {
    position: absolute; background: rgba(255,255,255,0.15); color: #fff;
    font-size: 0.75rem; font-weight: 600; padding: 6px 13px; border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.25); white-space: nowrap;
    animation: vqFloat 4s ease-in-out infinite;
}
.vq-pill-1 { top: 0;       left: 10px;  animation-delay: 0s; }
.vq-pill-2 { top: 20px;    right: 0;    animation-delay: 0.6s; }
.vq-pill-3 { top: 70px;    left: 0;     animation-delay: 1.2s; }
.vq-pill-4 { top: 90px;    right: 10px; animation-delay: 0.3s; }
.vq-pill-5 { bottom: 50px; left: 20px;  animation-delay: 0.9s; }
.vq-pill-6 { bottom: 20px; right: 0;    animation-delay: 1.5s; }
.vq-pill-7 { bottom: 0;    left: 5px;   animation-delay: 0.4s; }
@keyframes vqFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .vq-results-grid { grid-template-columns: 1fr; }
    .vq-teaser-card { flex-direction: column; padding: 2rem 1.5rem; min-height: auto; }
    .vq-teaser-visual { display: none; }
    .vq-teaser-title { font-size: 1.25rem; }
}
@media (max-width: 575.98px) {
    .vq-page { padding: 1rem 0.75rem 2.5rem; }
    .vq-screen { padding: 1.25rem 1rem 1rem; }
    .vq-title { font-size: 1.1rem; }
    .vq-cards { grid-template-columns: repeat(2, 1fr); }
    .vq-cards--single { grid-template-columns: repeat(2, 1fr); }
    .vq-cards--opts { grid-template-columns: repeat(2, 1fr); }
    .vq-card--opt { min-height: 84px; padding: 0.85rem 0.5rem; }
    .vq-opt-icon { font-size: 1.5rem; }
    .vq-input-row { flex-wrap: wrap; }
    .vq-nav { flex-direction: column-reverse; }
    .vq-nav .btn { width: 100%; }
    .vq-res-hero { padding: 1.5rem 1.25rem 1.1rem; }
    .vq-res-hero h2 { font-size: 1.2rem; }
    .vq-res-body { padding: 1.1rem 1rem 1.5rem; }
    .vq-stop-body { padding: 1.25rem 1.1rem 1.5rem; }
    .vq-stop-btn { padding: 0.9rem 1rem; }
    .vq-bmi-number { font-size: 1.8rem; }
    .vq-saved-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .vq-retake-new-btn { align-self: flex-end; }
    .vq-unit-toggle { flex-wrap: wrap; }
    .vq-res-snapshot { gap: 5px; }
    .vq-snap-chip { font-size: 0.7rem; padding: 3px 9px; }
    .vq-teaser-section { padding: 24px 0; }
    .vq-teaser-card { border-radius: 14px; padding: 1.5rem 1.25rem; }
    .vq-teaser-btn { font-size: 0.85rem; padding: 10px 20px; }
}
