.qty-wrapper {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px !important;
}

.qty-wrapper button,
.qty-wrapper input.qty {
    border: 1px solid #E1E1E1;
    margin: 0;
}

.qty-wrapper button {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-wrapper button:hover {
    background: black;
    color: white;
    cursor: pointer;
     border: 1px solid black;
}

/* Quitar borde duplicado */
.qty-wrapper button:first-child {
    border-right: 0 !important;
    border-radius: 4px 0 0 4px;
}

.qty-wrapper input.qty {
    width: 50px;
    text-align: center;
    border-left: 0;
    border-right: 0;
}

.qty-wrapper button:last-child {
    border-left: 0 !important;
    border-radius: 0 4px 4px 0;
}


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

.qty-wrapper input.qty {
    -moz-appearance: textfield;
}