.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;
}