/* CSS */
.tbo-cart-shopping-cart {
    font-family: Arial, sans-serif;
    background: #f6f6f6;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tbo-cart-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tbo-cart-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.tbo-cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.tbo-cart-buttons {
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tbo-cart-delete-btn, .tbo-cart-like-btn {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

.tbo-cart-image img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.tbo-cart-description {
    flex-grow: 1;
}

.tbo-cart-quantity {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.tbo-cart-plus-btn, .tbo-cart-minus-btn {
    background: #eee;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.tbo-cart-total-price {
    font-size: 18px;
    color: #333;
}
