:root {
    --primary: #0d6efd;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --dark: #1f2937;
    --muted: #6c757d;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-page {
    background: linear-gradient(135deg, #0d6efd 0%, #0b2e4e 100%);
}

.login-box {
    width: 420px;
    margin: 7% auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.login-logo a {
    color: #fff;
    text-decoration: none;
}

.bg-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #0d6efd 100%);
}

.brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    background: rgba(255,255,255,0.08);
}

.brand-image {
    margin-right: 8px;
    font-size: 1.6rem;
}

.product-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15,23,42,.06);
    height: 100%;
}

.product-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.product-meta,
.product-price {
    color: var(--muted);
    margin-bottom: 8px;
}

.product-price {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.total-box {
    border-top: 1px solid #dee2e6;
    padding-top: 12px;
    margin-top: 12px;
}

.total-final {
    font-size: 1.2rem;
    margin-top: 8px;
    color: var(--dark);
}

#cartTable tbody tr td {
    vertical-align: middle;
}

.small-box .inner h3 {
    font-size: 2rem;
}
