.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.qty-btn {

    background: #f8bbd0;
    padding: 5px 10px;
    border: 1px solid black     ;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
    color: #333;

}

.qty-btn:hover {
    background: rgb(253, 144, 206);
}

.qty-input {
    width: 50px;
    text-align: center;
    font-size: 16px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    appearance: textfield;
    -moz-appearance: textfield;
    text-align: center;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

