:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --muted: #64748b;
    --bg: #f4f6f9;
}

body {
    background: var(--bg);
    color: #111827;
}

.login-shell {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    max-width: 460px;
    width: 100%;
    border-radius: 24px;
}

.brand-badge {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.page-hero {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .06);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.panel {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .06);
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .06);
    display: flex;
    gap: 16px;
    align-items: center;
    height: 100%;
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.stat-card strong {
    font-size: 30px;
    line-height: 1;
}

.stat-icon {
    width: 58px;
    height: 58px;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.form-control, .form-select, .btn {
    border-radius: 12px;
}

.store-hero {
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: white;
    padding: 80px 0;
}

.hero-summary {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 24px;
    border-radius: 24px;
}

.step {
    background: rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 14px;
    margin-top: 12px;
}

.step span {
    background: #f59e0b;
    color: #111827;
    font-weight: 800;
    border-radius: 50%;
    padding: 5px 10px;
    margin-right: 10px;
}

.product-card {
    border-radius: 24px;
}

.price-tag {
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
    white-space: nowrap;
}

.min-desc {
    min-height: 48px;
}

.qty-input {
    width: 76px;
}

.checkout-shell {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc, #dbeafe);
}

.thank-card {
    max-width: 520px;
    width: 100%;
    border-radius: 24px;
}

.success-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.order-code {
    background: #f1f5f9;
    border: 1px dashed #94a3b8;
    padding: 16px;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

@media print {
    nav, .btn {
        display: none !important;
    }

    body {
        background: white !important;
    }

    .panel {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}
