.ajaxcart__qty {
    display: flex;
    align-items: center;
    gap: 5px; /* Add spacing between buttons and input */
}

.ajaxcart__qty-num {
    width: 50px; /* Set a fixed width for the input box */
    text-align: center; /* Center align the number */
}

.ajaxcart__qty-adjust {
    background: none; /* Remove background for cleaner design */
    border: none; /* Remove default button border */
    /*padding: 14px; !* Add padding for better clickable area *!*/
    font-size: 16px; /* Adjust font size */
    cursor: pointer;
}
.quantity-selector {
    display: flex; /* Use flexbox to align elements horizontally */
    justify-content: space-between; /* Space out elements */
    align-items: center; /* Vertically center the buttons and input */
}
.ajaxcart__remove-btn {
    background-color: transparent;
    border: none;
    color: #ff0000;
    cursor: pointer;
    font-size: 14px;
    /*margin-top: 10px;*/
}

.ajaxcart__remove-btn:hover {
    color: #cc0000;
}

.cart__checkout{
    border-radius: 0;
}
