:root {
    --brand: #f97316;
    --brand-dark: #c2410c;
    --ink: #172033;
    --muted: #64748b;
    --soft: #fff7ed;
}

body {
    background: #f8fafc;
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.app-navbar {
    background: linear-gradient(110deg, #111827, #2b1b12 68%, #9a3412);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
}

.brand-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(249, 115, 22, .18);
    margin-right: 8px;
}

.hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(251, 146, 60, .4),
            transparent 28%
        ),
        linear-gradient(135deg, #1f2937, #431407);

    color: #fff;
    border-radius: 28px;
    padding: 64px 48px;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.02;
    max-width: 800px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: #fdba74;
    font-size: .78rem;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .07);
}

.product-card {
    height: 100%;
    transition: .2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, .12);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    background: #eef2f7;
}

.price {
    font-size: 1.35rem;
    font-weight: 800;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
}

.category-pill {
    display: inline-flex;
    padding: 9px 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #334155;
    text-decoration: none;
}

.category-pill:hover {
    border-color: #fb923c;
    color: #c2410c;
}

.stat-card {
    padding: 22px;
    background: #fff;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-label {
    color: var(--muted);
    font-size: .9rem;
}

.wallet-card {
    background: linear-gradient(135deg, #ea580c, #9a3412);
    color: #fff;
}

.table-card {
    overflow: hidden;
}

.table > :not(caption) > * > * {
    padding: .9rem .85rem;
    vertical-align: middle;
}

.badge-soft {
    background: var(--soft);
    color: var(--brand-dark);
}

.form-control,
.form-select {
    min-height: 46px;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 .2rem rgba(249, 115, 22, .12);
}

.auth-wrap {
    max-width: 480px;
    margin: 45px auto;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin: 25px 0 18px;
}

@media (max-width: 767px) {
    .hero {
        padding: 42px 24px;
        border-radius: 20px;
    }

    .product-img {
        height: 180px;
    }

    .panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}