.qty-item {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 12px 0;
}

.qty-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.qty-input {
    width: 60px;
    height: 38px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
}

/* Remove number arrows (modern look) */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input[type=number] {
    -moz-appearance: textfield;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #f7f7f7;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: #eee;
}

.qty-btn:active {
    background: #ddd;
}
