/* Chrome, Safari, Edge için */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox için */
.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Genel stil */
.qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    width: 120px;
}

.qty-input {
    text-align: center;
    border: none;
    width: 50px;
    font-size: 14px;
    outline: none;
	height:40px;
	color:#000;
	font-weight:500;
}

.qty-btn {
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    user-select: none;
    transition: background 0.2s;
}
