:root {
    --brand-1: #0d6efd;
    --brand-2: #6610f2;
    --brand-3: #20c997;
    --dark-1: #0f172a;
}

body {
    background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 50%, #eefcf7 100%);
    min-height: 100vh;
    color: #0f172a;
}

.nav-blur {
    background: linear-gradient(90deg, rgba(13,110,253,.96), rgba(102,16,242,.96));
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15,23,42,.14);
}

.hero-card,
.glass-card,
.product-card,
.admin-card {
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
    border-radius: 1.5rem;
}

.hero-card {
    overflow: hidden;
}

.hero-gradient {
    background: radial-gradient(circle at top right, rgba(32,201,151,.23), transparent 28%), linear-gradient(135deg, rgba(13,110,253,.12), rgba(102,16,242,.12));
}

.section-title {
    font-weight: 800;
    letter-spacing: -.02em;
}

.product-card {
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
}

.product-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    background: #e9ecef;
}

.vendor-pill {
    background: rgba(13,110,253,.09);
    color: var(--brand-1);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    padding: .35rem .7rem;
}

.price-tag {
    font-weight: 800;
    font-size: 1.15rem;
    color: #198754;
}

.cart-sticky {
    position: sticky;
    top: 90px;
}

.table-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: .9rem;
}

.login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.form-control,
.form-select {
    border-radius: .9rem;
    min-height: 48px;
}

.btn {
    border-radius: .9rem;
}

.muted-mini {
    font-size: .88rem;
    color: #64748b;
}
