body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cart-header-bar {
    background: linear-gradient(135deg, #0b1630, #1b316a);
}

.cart-header-bar h1 {
    font-weight: 600;
}

.cart-header-bar a {
    font-weight: 500;
}

.cart-layout {
    margin-bottom: 4rem;
}

.cart-item-card {
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: transform 0.08s ease, box-shadow 0.12s ease;
}

.cart-item-thumb img {
    border-radius: 0.75rem;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.cart-qty-input {
    max-width: 90px;
}

.cart-tag {
    font-size: 0.75rem;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.cart-summary-card {
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.cart-summary-total {
    font-size: 1.2rem;
    font-weight: 600;
}

.badge-free {
    background: #22c55e;
    color: #fff;
}

@media (max-width: 767.98px) {
    .cart-item-card {
        border-radius: 0.8rem;
    }

    .cart-header-bar {
        padding-block: 0.75rem !important;
    }

    .cart-qty-input {
        max-width: 70px;
    }
}