:root {
    --bg-grad: radial-gradient(1200px 800px at 10% -10%,
        #dbeafe 0%,
        transparent 60%),
    radial-gradient(1000px 600px at 110% 0%, #ffe4e6 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

html,
body {
    height: 100%;
}

body {
    background: var(--bg-grad);
}

.glass-card {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.brand-gradient {
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.scan-frame {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #0b1220;
}

.scan-video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

.qty-badge {
    min-width: 3rem;
    text-align: right;
}

.list-label {
    color: #64748b;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #eef2ff;
    border-radius: 0.5rem;
    height: 14px;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent);
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    100% {
    transform: translateX(100%);
    }
}

.navbar-blur {
    /* background: rgba(255, 255, 255, 0.65) !important; */
    background: #ffffff !important;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.app-logo {
    height: 70px;
    width: auto;
    display: block;
}

.total-row {
    background: linear-gradient(90deg, #eff6ff, #e0f2fe);
}

.total-badge {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}