.quantity {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wp--preset--color--lightgrey);
    border-radius: 20px;
    overflow: hidden;
    width: 148px;
    height: 40px;
    font-family: 'DM Sans';
    font-size: 14px;
    font-weight: 700;
}

.quantity button {
    background-color: var(--wp--preset--color--white);
    border: none;
    padding: 0 10px;
    cursor: pointer;
    font-size: 18px;
}

.quantity button:hover {
    background-color: var(--wp--preset--color--white);
}

.quantity input[type="number"] {
    border: none;
    text-align: center;
    width: 40px !important;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
    margin-left: 40px !important;
    font-weight: 700;
}

.quantity input[type="number"]::-webkit-inner-spin-button, 
.quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-text{
    position: absolute;
    left: 50px;
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 500;
    color: var(--wp--preset--color--black);
}