
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th {
    background: #f5f5f5;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.cart-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.cart-product-name {
    color: #333;
    text-decoration: none;
}

.cart-product-name:hover {
    color: #007bff;
}

.cart-price {
    font-weight: bold;
}

.cart-quantity-input {
    width: 60px;
    padding: 5px;
    text-align: center;
}

.cart-item-total {
    font-weight: bold;
    color: #ffba4c;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
}

.cart-remove-btn:hover {
    color: #c82333;
}

.cart-total-label {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
}

.cart-total-price {
    font-size: 24px;
    font-weight: bold;
    color: #ffba4c;
}

.cart-actions {
    text-align: right;
    padding-top: 20px;
}

.button-clear {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
}

.button-checkout {
    background: #ffba4c;
    color: white;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
   
    align-items: center;
}

.button-clear:hover {
    background: #5a6268;
}

.button-checkout:hover {
    background: #218838;
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 5px;
}

.cart-empty p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.cart-empty .button {
    background: #ffba4c;
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 3px;
}

.cart-empty .button:hover {
    background: #ffba4c;
}

.cart-link {
    margin-left:20px ;
    position: relative;
    display: inline-block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.cart-counter {
    
    position: absolute;
    top: 0;
    right: -17;
    background: #807c7c;
    color: rgb(0, 0, 0);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    text-align: center;
}

