.cart-page {
    max-width: 1000px;
    min-height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Inter", sans-serif;
    color: #333;
}

.cart-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2a5d8f;
    margin-bottom: 30px;
}

.cart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cart-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #052146;
}

.cart-item-meta {
    font-size: 0.95rem;
    color: #555;
}

.cart-item-actions {
    display: flex;
    gap: 10px;
}

.qty-btn,
.remove-btn {
    border: none;
    background: #2a5d8f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.qty-btn:hover,
.remove-btn:hover {
    background: #99CCFF;
    color: #052146;
    transform: translateY(-2px);
}

.cart-footer {
    text-align: right;
    margin-top: 20px;
}

.checkout-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2a5d8f;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background-color: #99CCFF;
    color: #052146;
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 650px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cart-footer {
        text-align: center;
    }
}
