.cart-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.product-img {
    max-width: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-summary {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-summary .total-price {
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-checkout {
    background-color: #333;
    color: white;
    border-radius: 25px;
}

.btn-checkout:hover {
    background-color: #444;
}

.cart-summary .btn {
    width: 100%;
    padding: 12px;
}

.cart-summary .btn:disabled {
    background-color: #ddd;
}
body {
    background: #0b0f17;
    color: #e6eefc;
}

.container, .row, .col-md-8, .col-md-4, .navbar, footer {
    position: relative;
    z-index: 2;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,140,255,0.10), transparent 45%),
                radial-gradient(circle at 80% 30%, rgba(0,255,200,0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5 {
    color: #ffffff !important;
}

p, span, li {
    color: #d7e3ff !important;
}

/* CART ITEMS AREA */
#cart-items {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 15px;
    min-height: 150px;
}

/* SUMMARY BOX */
.cart-summary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 20px;
}

.cart-summary h5 {
    color: #ffffff !important;
    margin-bottom: 15px;
}

.cart-summary li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* TOTAL */
.total-price {
    font-weight: 700;
    color: #00d4ff !important;
}

/* BUTTON */
.btn-checkout {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #2f6bff, #00d4ff) !important;
    border: none;
    color: #fff !important;
    font-weight: 600;
    border-radius: 10px;
}

.btn-checkout:disabled {
    opacity: 0.4;
}

/* NAVBAR */
.navbar {
    background: rgba(10, 14, 25, 0.92) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* FOOTER */
footer {
    background: #070a12 !important;
}

/* CART EMPTY STATE (if no items) */
#cart-items:empty::before {
    content: "Your cart is empty";
    display: block;
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.5);
}

/* MOBILE */
@media (max-width: 768px) {
    .cart-summary {
        margin-top: 20px;
    }
}