.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    height: 100%;
}

.qty-btn {
    background: #6528f7;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    user-select: none;
    width: 50%;
    padding: 15px;
}

.qty-btn:hover {
    background-color: #5511f8;
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 1rem;
}

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

.qty-input[type=number] {
    -moz-appearance: textfield;
}

.quantity-wrapper .plus {
    margin-left: 0% !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.quantity-wrapper .minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.elementor-add-to-cart .single_add_to_cart_button {
    margin-bottom: 16px !important;
}